/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
   :root {
    /* Brand Colors */
    --navy-dark: #0A1628;
    --navy-medium: #0F2034;
    --navy-light: #1A2D4A;
    --lime-primary: #7CB518;
    --lime-light: #9ACD32;
    --lime-glow: rgba(124, 181, 24, 0.3);
    --lime-subtle: rgba(124, 181, 24, 0.1);
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray-medium: #6B7280;
    --gray-dark: #374151;
    
    /* Semantic */
    --text-primary: #FFFFFF;
    --text-dark: #0A1628;
    --text-muted: #9CA3AF;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-main);
    
    /* Geometry */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.24);
    --shadow-lime: 0 8px 32px rgba(124, 181, 24, 0.3);
    --shadow-lime-lg: 0 16px 48px rgba(124, 181, 24, 0.4);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--lime-primary);
    border-radius: 4px;
    opacity: 0.7;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lime-light);
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.hidden { display: none; }
.text-center { text-align: center; }

@media (min-width: 768px) {
    .md-flex { display: flex; }
    .md-hidden { display: none; }
    .md-block { display: block; }
    .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .lg-flex { display: flex; }
    .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--lime-primary), var(--lime-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-medium);
    font-size: 1.125rem;
    max-width: 600px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lime-primary), var(--lime-light));
    color: var(--navy-dark);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-lime);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lime-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 181, 24, 0.2);
    transition: all var(--transition-base);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lime-primary), var(--lime-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--lime-primary);
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav { display: flex; }
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--lime-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile menu open state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.mobile-nav .nav-link:hover {
    color: var(--lime-primary);
}

.mobile-nav .btn {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .mobile-nav { display: none; }
}

/* =========================================
   HERO - INTERACTIVE DEMO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--navy-medium) 0%, var(--navy-dark) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 181, 24, 0.15);
    border: 1px solid rgba(124, 181, 24, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--lime-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge-text {
    color: var(--lime-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Demo Container */
.demo-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/4;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 80px rgba(124, 181, 24, 0.2);
    border: 2px solid rgba(124, 181, 24, 0.3);
    background: var(--navy-medium);
}

@media (min-width: 768px) {
    .demo-container {
        max-width: 500px;
        aspect-ratio: 4/5;
    }
}

.image-wrapper {
    position: absolute;
    inset: 0;
    cursor: none;
}

.img-clean {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#dirtyCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    touch-action: none;
}

/* Instructions Overlay */
.instructions-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(4px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.instructions-overlay.hidden {
    opacity: 0;
}

.instructions-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.instructions-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    animation: pulse-text 2s ease-in-out infinite;
}

/* Show different instructions for mobile/desktop */
.instructions-desktop {
    display: block;
}

.instructions-mobile {
    display: none;
}

@media (max-width: 767px) {
    .instructions-desktop {
        display: none;
    }
    .instructions-mobile {
        display: block;
    }
    .instructions-text {
        font-size: 1rem;
    }

    /* Hero mobile adjustments */
    .hero-content {
        padding: 1rem;
    }

    .hero-text {
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-badge-text {
        font-size: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Demo container mobile */
    .demo-container {
        max-width: 100%;
        aspect-ratio: 3/4;
        border-radius: var(--radius-md);
    }

    .progress-container {
        bottom: 12px;
        height: 8px;
    }
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 10px;
    background: rgba(10, 22, 40, 0.8);
    border-radius: var(--radius-full);
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(124, 181, 24, 0.3);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--lime-primary), var(--lime-light));
    box-shadow: 0 0 15px var(--lime-glow);
    transition: width 0.1s linear;
    border-radius: var(--radius-full);
}

/* Drone Cursor */
#droneCursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 160px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
    transition: transform 0.06s ease-out;
}

@media (min-width: 768px) {
    #droneCursor { width: 180px; }
}

.drone-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 30px 25px rgba(10, 22, 40, 0.5));
    position: relative;
    z-index: 2;
}

/* Water System */
.water-system {
    position: absolute;
    top: 90%;
    left: 68%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
}

#droneCursor.spraying .water-system {
    opacity: 1;
}

.water-stream {
    width: 25px;
    height: 120px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 40%,
        rgba(255, 255, 255, 0.5) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    filter: blur(2px);
    transform-origin: top center;
    clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
    animation: jetBlast 0.05s infinite alternate;
}

@keyframes jetBlast {
    0% { transform: scaleX(1); opacity: 0.85; }
    100% { transform: scaleX(1.2); opacity: 1; }
}

.water-splash {
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 60px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: translateX(-50%);
    filter: blur(4px);
    opacity: 1;
    animation: splashAnim 0.1s infinite;
}

@keyframes splashAnim {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.4); }
}

/* =========================================
   COMPLETION MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: linear-gradient(145deg, var(--white), var(--gray-light));
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-xl), 0 0 60px var(--lime-glow);
    border-top: 5px solid var(--lime-primary);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.modal-close:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--lime-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: var(--lime-primary);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--gray-medium);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.offer-box {
    background: var(--lime-subtle);
    border: 2px dashed var(--lime-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.offer-discount {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--lime-primary);
    line-height: 1;
}

.offer-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-top: 0.5rem;
}

.offer-code {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.modal-cta {
    width: 100%;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--navy-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(124, 181, 24, 0.2);
    border-bottom: 1px solid rgba(124, 181, 24, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(124, 181, 24, 0.05);
    border: 1px solid rgba(124, 181, 24, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(124, 181, 24, 0.1);
    transform: translateY(-4px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    color: var(--lime-primary);
}

.trust-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* =========================================
   SECTIONS BASE
   ========================================= */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-dark {
    background: var(--navy-dark);
    color: var(--white);
}

.section-light {
    background: var(--gray-light);
}

/* =========================================
   BENTO GRID - SERVICES
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }
}

.bento-card {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.bento-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: var(--lime-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: var(--lime-primary);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.bento-desc {
    color: var(--gray-medium);
    font-size: 0.875rem;
    flex-grow: 1;
}

.bento-stat {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lime-primary);
}

/* Grid spans */
@media (min-width: 768px) {
    .span-col-2 { grid-column: span 2; }
    .span-row-2 { grid-row: span 2; }
}

/* Featured card */
.bento-featured {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    color: var(--white);
}

.bento-featured .bento-title {
    color: var(--white);
}

.bento-featured .bento-desc {
    color: rgba(255, 255, 255, 0.7);
}

.bento-featured .bento-icon {
    background: rgba(124, 181, 24, 0.2);
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(124, 181, 24, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.process-card:hover {
    background: rgba(124, 181, 24, 0.1);
    transform: translateY(-8px);
}

.process-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lime-primary), var(--lime-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin: 0 auto 1.5rem;
}

.process-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 32px;
    height: 32px;
    color: var(--lime-primary);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* =========================================
   METRICS SECTION
   ========================================= */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-item {
    text-align: center;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .metric-item:not(:last-child) {
        border-right: 1px solid rgba(10, 22, 40, 0.1);
    }
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-value span {
    color: var(--lime-primary);
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-medium);
}

.metric-sublabel {
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin-top: 0.25rem;
}

/* =========================================
   BEFORE/AFTER GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-before,
.gallery-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.gallery-before {
    z-index: 2;
}

.gallery-after {
    z-index: 1;
}

.gallery-card:hover .gallery-before {
    opacity: 0;
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--navy-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-label {
    background: var(--lime-primary);
    color: var(--navy-dark);
}

.gallery-card:hover .gallery-label::before {
    content: 'DESPUES';
}

.gallery-card .gallery-label::before {
    content: 'ANTES';
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 181, 24, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(124, 181, 24, 0.08);
    border-color: rgba(124, 181, 24, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 181, 24, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--lime-primary);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================
   COVERAGE SECTION
   ========================================= */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr 1fr;
    }
}

.coverage-map {
    position: relative;
    background: rgba(124, 181, 24, 0.05);
    border: 1px solid rgba(124, 181, 24, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.coverage-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 181, 24, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.location-item:hover {
    background: rgba(124, 181, 24, 0.1);
}

.location-item.primary {
    border-color: var(--lime-primary);
    background: rgba(124, 181, 24, 0.1);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--lime-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 20px;
    height: 20px;
    color: var(--lime-primary);
}

.location-info {
    flex-grow: 1;
}

.location-name {
    font-weight: 700;
    font-size: 1rem;
}

.location-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.location-badge {
    background: var(--lime-primary);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.location-badge.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 181, 24, 0.2);
}

.cta-contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--lime-primary);
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--lime-primary);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(124, 181, 24, 0.2);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--lime-primary);
    color: var(--navy-dark);
    border-color: var(--lime-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--lime-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lime-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--lime-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* =========================================
   MOBILE RESPONSIVE ENHANCEMENTS
   ========================================= */
@media (max-width: 767px) {
    /* Reduce section padding on mobile */
    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Trust bar mobile */
    .trust-bar {
        padding: 2rem 0;
    }

    .trust-item {
        padding: 1rem;
    }

    .trust-icon {
        margin-bottom: 0.5rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    /* Bento cards mobile */
    .bento-card-inner {
        padding: 1.25rem;
    }

    .bento-title {
        font-size: 1.125rem;
    }

    /* Process cards mobile */
    .process-card {
        padding: 1.5rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .process-title {
        font-size: 1.125rem;
    }

    /* Metrics mobile */
    .metric-item {
        padding: 1.5rem 0.75rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    /* Benefits mobile */
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1rem;
    }

    /* Coverage mobile */
    .coverage-map {
        padding: 2rem;
        min-height: 200px;
    }

    .location-item {
        padding: 1rem;
    }

    .location-name {
        font-size: 0.9rem;
    }

    /* CTA mobile */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-contact-items {
        gap: 1rem;
        flex-direction: column;
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    /* Modal mobile */
    .modal-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .offer-discount {
        font-size: 2.5rem;
    }

    /* Gallery mobile */
    .gallery-card {
        aspect-ratio: 4/3;
    }

    /* Buttons mobile - better touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    .btn-sm {
        min-height: 40px;
        padding: 0.625rem 1rem;
    }

    .btn-lg {
        min-height: 52px;
    }
}
