:root {
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --wa-900: #075E54;
            --wa-800: #128C7E;
            --wa-700: #1FAF6E;
            --wa-600: #25D366;
            --wa-500: #34E076;
            --wa-400: #5EE89A;
            --wa-300: #98F5C4;
            --wa-200: #C4FAE0;
            --wa-100: #E8FDF2;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-400: #A5B4FC;
            
            --blue: #3B82F6;
            --violet: #7C3AED;
            --cyan: #06B6D4;
            --amber: #F59E0B;
            --emerald: #10B981;
            --rose: #F43F5E;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Source Serif 4', Georgia, serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-sans); font-size: 15px; line-height: 1.6; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        /* HEADER */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }
        .header.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; }
        
        .logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; color: var(--gray-900); }
        .logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900)); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
        .logo-mark svg { width: 18px; height: 18px; color: white; }
        .logo sup { font-size: 10px; font-weight: 500; color: var(--bronze-600); margin-left: 2px; }

        .nav { display: flex; align-items: center; gap: 4px; }
        .nav-item { position: relative; }
        .nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: 6px; transition: all 0.2s; }
        .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        .nav-link.active { color: var(--wa-600); }

        .header-actions { display: flex; align-items: center; gap: 12px; }
        .mobile-menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; color: var(--gray-600); }
        .mobile-menu-toggle svg { width: 24px; height: 24px; }

        /* BUTTONS */
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 500; border-radius: 8px; transition: all 0.2s ease; }
        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-lg { padding: 14px 28px; font-size: 15px; }
        .btn-primary { background: var(--wa-600); color: white; }
        .btn-primary:hover { background: var(--wa-700); transform: translateY(-1px); }
        .btn-ghost { color: var(--gray-600); }
        .btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
        .btn-outline-light { color: white; border: 1px solid rgba(255,255,255,0.3); background: transparent; }
        .btn-outline-light:hover { background: rgba(255,255,255,0.1); }
        .btn-icon { width: 16px; height: 16px; transition: transform 0.2s; }
        .btn:hover .btn-icon { transform: translateX(3px); }

        /* HERO SECTION */
        .hero-wa {
            padding: 140px 0 100px;
            background: linear-gradient(180deg, #0f1f1c 0%, #0c1613 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-wa::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 211, 102, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 60% 60% at 20% 80%, rgba(37, 211, 102, 0.04) 0%, transparent 50%);
        }

        /* Subtle grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
        }

        .hero-wa-content {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .hero-wa-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 70px;
        }

        .hero-pill-wa {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.2);
            color: var(--wa-300);
            font-size: 13px;
            margin-bottom: 28px;
        }

        .pill-dot-wa {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--wa-400), var(--wa-600));
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
        }

        .pill-divider-wa {
            width: 10px;
            height: 1px;
            background: rgba(255,255,255,0.18);
        }

        .hero-wa-title {
            font-size: 56px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--white);
            margin-bottom: 24px;
        }

        .hero-wa-title .gradient {
            background: linear-gradient(135deg, var(--wa-200), var(--wa-400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-wa-subtitle {
            font-family: var(--font-serif);
            font-size: 20px;
            line-height: 1.7;
            color: var(--gray-400);
            margin-bottom: 40px;
        }

        .hero-wa-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .hero-wa-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 32px;
        }

        .hero-wa-metric {
            padding: 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            text-align: left;
        }

        .hero-wa-metric .label {
            font-size: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .hero-wa-metric .value {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
        }

        .hero-wa-metric .value span {
            color: var(--wa-300);
            font-size: 14px;
            font-weight: 600;
        }

        /* ==========================================
           NEW CLEAN SHOWCASE MOCKUP
           ========================================== */
        .wa-showcase {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 70px;
        }

        .showcase-container {
            display: grid;
            grid-template-columns: 1fr 220px 1fr;
            gap: 32px;
            align-items: center;
        }

        /* Left & Right Columns */
        .showcase-column {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .showcase-column.left {
            align-items: flex-end;
        }

        .showcase-column.right {
            align-items: flex-start;
        }

        .column-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .column-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,0.2);
        }

        .showcase-column.left .column-label {
            flex-direction: row-reverse;
        }

        /* Message Cards */
        .msg-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 18px 20px;
            width: 100%;
            max-width: 320px;
            transition: all 0.3s ease;
            opacity: 0;
            animation: cardFadeIn 0.5s ease forwards;
        }

        .msg-card:nth-child(2) { animation-delay: 0.1s; }
        .msg-card:nth-child(3) { animation-delay: 0.2s; }
        .msg-card:nth-child(4) { animation-delay: 0.3s; }

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

        .msg-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(37, 211, 102, 0.2);
            transform: translateY(-2px);
        }

        .msg-card.ai-response {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
            border-color: rgba(37, 211, 102, 0.15);
        }

        .msg-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .msg-card-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: white;
        }

        .msg-card-avatar.customer { 
            background: linear-gradient(135deg, #374151, #1F2937); 
        }
        .msg-card-avatar.wa { 
            background: linear-gradient(135deg, var(--wa-600), var(--wa-800)); 
        }
        .msg-card-avatar.template { background: var(--amber); }
        .msg-card-avatar.broadcast { background: var(--cyan); }
        .msg-card-avatar.media { background: var(--violet); }

        .msg-card-avatar svg { width: 18px; height: 18px; }

        .msg-card-meta {
            flex: 1;
        }

        .msg-card-type {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-300);
            margin-bottom: 2px;
        }

        .msg-card-source {
            font-size: 11px;
            color: var(--gray-500);
        }

        .msg-card-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 6px;
            background: rgba(37, 211, 102, 0.15);
            color: var(--wa-400);
            border: 1px solid rgba(37, 211, 102, 0.2);
        }

        .msg-card-text {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }

        .msg-card.ai-response .msg-card-text {
            color: var(--wa-200);
        }

        .msg-card-buttons {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .msg-card-btn {
            flex: 1;
            padding: 8px 12px;
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.2);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            color: var(--wa-300);
            text-align: center;
        }

        /* Center - WhatsApp Agent */
        .wa-core {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .wa-avatar {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--wa-600), var(--wa-800));
            border-radius: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 
                0 0 0 1px rgba(37, 211, 102, 0.3),
                0 24px 60px rgba(37, 211, 102, 0.25),
                0 0 80px rgba(37, 211, 102, 0.15);
        }

        .wa-avatar::before {
            content: '';
            position: absolute;
            inset: -20px;
            border: 1px solid rgba(37, 211, 102, 0.15);
            border-radius: 50px;
            animation: pulse-ring 3s ease-in-out infinite;
        }

        .wa-avatar::after {
            content: '';
            position: absolute;
            inset: -40px;
            border: 1px solid rgba(37, 211, 102, 0.08);
            border-radius: 64px;
            animation: pulse-ring 3s ease-in-out infinite 0.5s;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.03); opacity: 0.5; }
        }

        .wa-avatar svg {
            width: 60px;
            height: 60px;
            color: white;
        }

        .wa-info {
            margin-top: 28px;
            text-align: center;
        }

        .wa-name {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .wa-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--wa-400);
            padding: 6px 14px;
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.2);
            border-radius: 100px;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: var(--wa-400);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            padding: 24px 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--wa-400);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* Responsive for showcase */
        @media (max-width: 1024px) {
            .showcase-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .showcase-column.left,
            .showcase-column.right {
                align-items: center;
            }

            .wa-core {
                order: -1;
            }

            .msg-card {
                max-width: 100%;
            }

            .stats-bar {
                flex-wrap: wrap;
                gap: 24px;
            }

            .hero-wa-metrics { grid-template-columns: repeat(2, 1fr); }
            .hero-wa-title { font-size: 42px; }
        }

        @media (max-width: 768px) {
            .stats-bar {
                flex-direction: column;
                gap: 20px;
                padding: 24px;
            }

            .hero-wa-metrics { grid-template-columns: 1fr; }
            .hero-wa-title { font-size: 34px; }
            .hero-wa-subtitle { font-size: 16px; }
        }

        /* FEATURES SECTION */
        .features-section { padding: 120px 0; background: var(--white); }
        .section-header { text-align: center; max-width: 650px; margin: 0 auto 64px; }
        .section-eyebrow { font-size: 12px; font-weight: 600; color: var(--wa-800); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
        .section-title { font-size: 44px; font-weight: 600; line-height: 1.15; letter-spacing: -0.03em; color: var(--gray-900); margin-bottom: 20px; }
        .section-subtitle { font-family: var(--font-serif); font-size: 18px; line-height: 1.7; color: var(--gray-500); }

        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .feature-card { background: var(--gray-50); border-radius: 20px; padding: 32px; border: 1px solid var(--gray-100); transition: all 0.3s ease; }
        .feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: rgba(37, 211, 102, 0.3); }
        .feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .feature-icon svg { width: 28px; height: 28px; }
        .feature-icon.templates { background: rgba(37, 211, 102, 0.12); color: var(--wa-600); }
        .feature-icon.broadcast { background: rgba(6, 182, 212, 0.12); color: var(--cyan); }
        .feature-icon.media { background: rgba(139, 92, 246, 0.12); color: var(--violet); }
        .feature-icon.buttons { background: rgba(251, 146, 60, 0.12); color: var(--amber); }
        .feature-icon.automation { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
        .feature-icon.analytics { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
        .feature-stat { font-size: 32px; font-weight: 700; color: var(--wa-600); margin-bottom: 8px; }
        .feature-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 12px; }
        .feature-desc { font-size: 14px; line-height: 1.6; color: var(--gray-500); }

        /* TEMPLATES SECTION */
        .templates-section { padding: 120px 0; background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); }
        .templates-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .templates-text h2 { font-size: 40px; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 24px; }
        .templates-text p { font-family: var(--font-serif); font-size: 18px; line-height: 1.7; color: var(--gray-500); margin-bottom: 32px; }
        .template-types { display: flex; flex-direction: column; gap: 16px; }
        .template-type { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: white; border-radius: 12px; border: 1px solid var(--gray-100); transition: all 0.2s; }
        .template-type:hover { border-color: var(--wa-400); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1); }
        .template-type-icon { width: 44px; height: 44px; background: rgba(37, 211, 102, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--wa-600); }
        .template-type-icon svg { width: 22px; height: 22px; }
        .template-type-content h4 { font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
        .template-type-content p { font-size: 13px; color: var(--gray-500); margin: 0; }

        /* Template Preview */
        .template-preview { background: white; border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); overflow: hidden; border: 1px solid var(--gray-100); }
        .template-preview-header { padding: 16px 20px; background: var(--wa-900); display: flex; align-items: center; gap: 12px; }
        .template-preview-avatar { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .template-preview-avatar svg { width: 20px; height: 20px; color: white; }
        .template-preview-info h4 { font-size: 14px; font-weight: 600; color: white; }
        .template-preview-info span { font-size: 12px; color: rgba(255,255,255,0.7); }
        .template-preview-body { padding: 20px; background: #E5DDD5; min-height: 300px; }
        .preview-msg { max-width: 280px; margin-bottom: 12px; }
        .preview-msg.incoming { background: white; border-radius: 0 12px 12px 12px; padding: 12px 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
        .preview-msg.outgoing { background: #DCF8C6; border-radius: 12px 0 12px 12px; padding: 12px 14px; margin-left: auto; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
        .preview-msg p { font-size: 14px; color: var(--gray-800); line-height: 1.5; margin: 0; }
        .preview-msg .time { font-size: 11px; color: var(--gray-400); text-align: right; margin-top: 4px; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
        .preview-msg .time svg { width: 16px; height: 16px; color: #53BDEB; }
        .preview-buttons { display: flex; flex-direction: column; gap: 1px; margin-top: 8px; border-top: 1px solid rgba(0,0,0,0.1); }
        .preview-btn { padding: 10px; text-align: center; font-size: 14px; font-weight: 500; color: #00A5F4; background: white; }

        /* AUTOMATION SECTION */
        .automation-section { padding: 120px 0; background: var(--gray-950); }
        .automation-section .section-eyebrow { color: var(--wa-400); }
        .automation-section .section-title { color: white; }
        .automation-section .section-subtitle { color: var(--gray-400); }
        .automation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .automation-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 32px; transition: all 0.3s ease; }
        .automation-card:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(37, 211, 102, 0.3); transform: translateY(-4px); }
        .automation-icon { width: 56px; height: 56px; background: rgba(37, 211, 102, 0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--wa-400); }
        .automation-icon svg { width: 28px; height: 28px; }
        .automation-card h3 { font-size: 20px; font-weight: 600; color: white; margin-bottom: 12px; }
        .automation-card p { font-size: 14px; line-height: 1.6; color: var(--gray-400); margin-bottom: 20px; }
        .automation-stats { display: flex; gap: 24px; }
        .automation-stat-value { font-size: 24px; font-weight: 700; color: var(--wa-400); }
        .automation-stat-label { font-size: 12px; color: var(--gray-500); }

        /* CTA SECTION */
        .cta-section { padding: 120px 0; background: linear-gradient(180deg, var(--gray-50) 0%, var(--wa-100) 100%); }
        .cta-card { background: linear-gradient(135deg, var(--wa-900), var(--wa-800)); border-radius: 32px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
        .cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(52, 224, 118, 0.2) 0%, transparent 50%); }
        .cta-content { position: relative; z-index: 1; }
        .cta-title { font-size: 44px; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: white; margin-bottom: 20px; }
        .cta-subtitle { font-family: var(--font-serif); font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); max-width: 500px; margin: 0 auto 40px; }
        .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; }
        .cta-buttons .btn-primary { background: white; color: var(--wa-800); }
        .cta-buttons .btn-primary:hover { background: var(--gray-100); }

        /* FOOTER */
        .footer { padding: 80px 0 40px; background: var(--gray-950); }
        .footer .logo { color: white; }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; margin-bottom: 60px; }
        .footer-brand p { font-family: var(--font-serif); font-size: 14px; line-height: 1.7; color: var(--gray-400); margin-top: 16px; max-width: 280px; }
        .footer-column h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 20px; 
            white-space: nowrap;
        }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-link { font-size: 14px; color: var(--gray-400); transition: color 0.2s; }
        .footer-link:hover { color: var(--white); }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
        .footer-copyright { font-size: 13px; color: var(--gray-500); }
        .footer-social { display: flex; gap: 16px; }
        .social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--gray-400); }
        .social-link:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }
        .social-link svg { width: 18px; height: 18px; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .templates-content, .automation-grid { grid-template-columns: 1fr; gap: 48px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .hero-wa { padding: 100px 0 60px; }
            .features-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 32px; }
            .templates-text h2 { font-size: 32px; }
            .cta-card { padding: 48px 24px; }
            .cta-title { font-size: 32px; }
            .cta-buttons { flex-direction: column; width: 100%; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
