/* =========================================
   CAYMA REFRIGERACIÓN Y ELECTRICIDAD
   Premium Design System
   ========================================= */

:root {
    /* Colors */
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    
    --primary-blue: #0ea5e9;
    --primary-blue-glow: rgba(14, 165, 233, 0.4);
    
    --primary-orange: #ffffff;
    --primary-orange-glow: rgba(255, 255, 255, 0.2);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent-wa: var(--primary-blue);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-padding: 2rem;
    --section-spacing: 6rem;
    
    /* Effects */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-blue-glow);
    background: linear-gradient(135deg, #3b82f6, var(--primary-blue));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================
   Navbar
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-slogan {
    font-size: 0.65rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 600;
    opacity: 0.8;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-left: 2px;
    box-shadow: 0 0 10px var(--primary-blue-glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.close-menu {
    display: none;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-title span:first-of-type {
    color: var(--primary-blue);
    text-shadow: 0 0 20px var(--primary-blue-glow);
}

.hero-title span:last-of-type {
    color: var(--text-main);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--glass-border);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 2rem;
    group: hover;
    border: 1px solid var(--glass-border);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.refrigeration-bg {
    background-image: url('../assets/images/refrigeration_1777986163000.png');
}

.electricity-bg {
    background-image: url('../assets/images/electricity_1777986177607.png');
}

.service-card:hover .service-bg {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.frost-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(14, 165, 233, 0.2) 100%);
}

.electric-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.icon-blue {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-blue);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.icon-orange {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-size: 0.9375rem;
}

.service-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.icon-orange ~ .service-list svg {
    color: var(--primary-orange);
}

/* Other Services */
.other-services {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.other-services-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.other-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.other-service-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.other-service-item svg {
    color: var(--primary-blue);
}

.other-service-item span {
    font-weight: 500;
    font-size: 1rem;
}

.other-services-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .other-services {
        padding: 2rem 1.5rem;
    }
    .other-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .other-service-item {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* =========================================
   Features
   ========================================= */
.features {
    background-color: var(--bg-card);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    border: 1px solid var(--glass-border);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.features-image {
    position: relative;
    height: 500px;
}

.composite-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-front, .img-back {
    position: absolute;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-front {
    width: 70%;
    height: 70%;
    bottom: 0;
    left: 0;
    background-image: url('../assets/images/refrigeration_1777986163000.png');
    z-index: 2;
    border: 4px solid var(--bg-card);
}

.img-back {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    background-image: url('../assets/images/electricity_1777986177607.png');
    z-index: 1;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 30px var(--primary-blue-glow);
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, var(--primary-blue), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

/* =========================================
   Contact
   ========================================= */
.contact-container {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    text-align: left;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.contact-method.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-method.whatsapp svg {
    color: var(--accent-wa);
    width: 32px;
    height: 32px;
}

.contact-method.phone {
    border-color: rgba(14, 165, 233, 0.3);
}

.contact-method.phone svg {
    color: var(--primary-blue);
    width: 32px;
    height: 32px;
}

.contact-method span {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-method strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-main);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #000;
    padding-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer h3 {
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer ul li {
    color: var(--text-muted);
}

.footer ul a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================
   Floating WhatsApp
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--accent-wa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-blue-glow);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--primary-blue-glow);
}

/* =========================================
   Animations & Utilities
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .services-grid, .features-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    
    .nav.active {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--text-main);
        cursor: pointer;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .nav-cta {
        display: flex;
        margin-top: 2rem;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero::after {
        background: linear-gradient(to right, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.85) 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-image {
        height: 400px;
    }
}

/* =========================================
   New Sections (Added for High Conversion)
   ========================================= */

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.bg-card { background-color: var(--bg-card); }

/* Buttons & WhatsApp */
.btn-wa {
    background: var(--accent-wa);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-blue-glow);
}
.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-blue-glow);
    background: #0284c7;
}
.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}
.micro-trust {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 500;
}
.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
}
.icon-orange ~ .service-cta {
    color: var(--primary-orange);
}
.service-cta:hover {
    text-decoration: underline;
}

/* Trust Bar */
.trust-bar {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}
.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9375rem;
}
.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Urgency Block */
.urgency-container {
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(2,6,23,0));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urgency-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ef4444; /* red accent */
}
.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}
.urgency-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}
.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    z-index: -1;
}
.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    box-shadow: 0 0 20px var(--primary-blue-glow);
}
.step-icon svg {
    width: 28px;
    height: 28px;
}
.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.step-line {
    flex: 0.5;
    height: 2px;
    background: var(--glass-border);
    margin-top: 32px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.review-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.stars {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}
.review-author strong {
    display: block;
    color: var(--text-main);
    font-size: 0.9375rem;
}
.review-author span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--glass-border);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
}
.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-blue);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (max-width: 992px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .trust-item {
        font-size: 0.875rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    .step-line {
        display: none;
    }
    
    .urgency-container {
        padding: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
}
