:root {
            --white: #FFFFFF;
            --cream: #FDFCFB;
            --cream-dark: #F8F6F3;
            --gray-100: #F2F2F4;
            --gray-200: #ECECEF;
            --gray-300: #DDDDE2;
            --gray-400: #9A9AA2;
            --gray-500: #6E6E78;
            --gray-600: #4A4A54;
            --gray-700: #3A3A44;
            --gray-800: #2A2A32;
            --gray-900: #1E1E24;
            --bronze-700: #4F46E5;
            --bronze-600: #312E81;
            --bronze-500: #4338CA;
            --bronze-400: #A5B4FC;
            --bronze-300: #6366F1;
            --emerald-500: #10B981;
            --emerald-600: #059669;
            --blue-500: #4F46E5;
            --blue-600: #4338CA;
            --purple-500: #6366F1;
            --pink-500: #4F46E5;
            --red-500: #EF4444;
            --amber-500: #4338CA;
            --dark-bg: #0C0D12;
            --dark-bg-secondary: #12141B;
            --dark-card: #1A1D27;
            --dark-border: rgba(255, 255, 255, 0.08);
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-sans); font-size: 16px; 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: 16px 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s;
        }
        .header.scrolled { padding: 12px 0; box-shadow: 0 4px 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: 22px; font-weight: 600; color: var(--gray-900); }
        .logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--bronze-700), var(--bronze-400)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; }
        .logo sup { font-size: 11px; font-weight: 500; color: var(--bronze-500); }
        .nav { display: flex; align-items: center; gap: 8px; }
        .nav-link { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: 8px; transition: all 0.2s; }
        .nav-link:hover { color: var(--gray-900); background: rgba(0,0,0,0.04); }
        .nav-link.active { color: var(--bronze-600); }
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 10px; transition: all 0.3s; }
        .btn-primary { background: transparent; color: #1E1E24; border: 1.5px solid #1E1E24; box-shadow: none; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30, 30, 36, 0.10); }
        .btn-secondary { background: var(--white); color: var(--gray-800); border: 1px solid var(--gray-200); }
        .btn-secondary:hover { border-color: var(--gray-300); background: var(--gray-50); }
        .btn-ghost { color: var(--gray-600); padding: 10px 16px; }
        .btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
        .btn-outline-light:hover { background: rgba(255,255,255,0.1); }

        /* Hero */
        .hero {
            padding: 140px 0 100px;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(99,102,241,0.12) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 60%, rgba(99,102,241,0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99,102,241,0.12);
            border: 1px solid rgba(99,102,241,0.25);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: var(--bronze-300);
            margin-bottom: 24px;
            letter-spacing: 0.05em;
        }
        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }
        .hero-title span {
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-description {
            font-size: 19px;
            color: rgba(255,255,255,0.65);
            margin-bottom: 40px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .hero-buttons { display: flex; justify-content: center; gap: 16px; }

        /* Sections */
        .section { padding: 100px 0; }
        .section-dark { background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%); }
        .section-cream { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--bronze-600);
            margin-bottom: 16px;
        }
        .section-dark .section-label { color: var(--bronze-400); }
        .section-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .section-dark .section-title { color: white; }
        .section-description { font-size: 18px; color: var(--gray-500); line-height: 1.7; }
        .section-dark .section-description { color: rgba(255,255,255,0.6); }

        /* Mockup */
        .mockup {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
        }
        .mockup-header {
            display: flex;
            align-items: center;
            padding: 14px 18px;
            background: rgba(255,255,255,0.03);
            border-bottom: 1px solid var(--dark-border);
        }
        .mockup-dots { display: flex; gap: 8px; }
        .mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
        .mockup-dot.red { background: #FF5F57; }
        .mockup-dot.yellow { background: #4F46E5; }
        .mockup-dot.green { background: #28CA41; }
        .mockup-title { flex: 1; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
        .mockup-actions { display: flex; gap: 8px; }
        .mockup-action {
            padding: 6px 12px;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--dark-border);
            border-radius: 6px;
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .mockup-action svg { width: 14px; height: 14px; }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 28px;
        }
        .stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--dark-border);
            border-radius: 14px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }
        .stat-card.bronze::before { background: linear-gradient(90deg, var(--bronze-600), var(--bronze-400)); }
        .stat-card.green::before { background: linear-gradient(90deg, var(--emerald-600), var(--emerald-500)); }
        .stat-card.blue::before { background: linear-gradient(90deg, var(--blue-600), var(--blue-500)); }
        .stat-card.purple::before { background: linear-gradient(90deg, #7C3AED, var(--purple-500)); }
        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }
        .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .stat-icon svg { width: 22px; height: 22px; }
        .stat-icon.bronze { background: rgba(99,102,241,0.15); }
        .stat-icon.bronze svg { stroke: var(--bronze-400); }
        .stat-icon.green { background: rgba(16,185,129,0.15); }
        .stat-icon.green svg { stroke: var(--emerald-500); }
        .stat-icon.blue { background: rgba(59,130,246,0.15); }
        .stat-icon.blue svg { stroke: var(--blue-500); }
        .stat-icon.purple { background: rgba(168,85,247,0.15); }
        .stat-icon.purple svg { stroke: var(--purple-500); }
        .stat-trend {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        .stat-trend.up { background: rgba(16,185,129,0.15); color: var(--emerald-500); }
        .stat-trend.down { background: rgba(239,68,68,0.15); color: var(--red-500); }
        .stat-trend svg { width: 14px; height: 14px; }
        .stat-value { font-size: 36px; font-weight: 700; color: white; margin-bottom: 4px; }
        .stat-label { font-size: 14px; color: rgba(255,255,255,0.5); }

        /* Chart Container */
        .chart-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .chart-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--dark-border);
            border-radius: 14px;
            padding: 24px;
        }
        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        .chart-title { font-size: 16px; font-weight: 600; color: white; }
        .chart-tabs { display: flex; gap: 4px; }
        .chart-tab {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            background: transparent;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .chart-tab:hover { color: rgba(255,255,255,0.8); }
        .chart-tab.active { background: rgba(255,255,255,0.1); color: white; }

        /* Line Chart */
        .line-chart {
            height: 240px;
            position: relative;
            display: flex;
            align-items: flex-end;
            gap: 2px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--dark-border);
        }
        .line-chart-grid {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 30px;
        }
        .line-chart-grid-line {
            height: 1px;
            background: var(--dark-border);
            position: relative;
        }
        .line-chart-grid-line span {
            position: absolute;
            left: -40px;
            top: -8px;
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            font-family: var(--font-mono);
        }
        .line-chart-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }
        .line-chart-bar:hover { opacity: 0.8; }
        .line-chart-bar.bronze { background: linear-gradient(180deg, var(--bronze-400), var(--bronze-600)); }
        .line-chart-bar.green { background: linear-gradient(180deg, #34D399, var(--emerald-600)); }
        .line-chart-bar::after {
            content: attr(data-label);
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            color: rgba(255,255,255,0.4);
            white-space: nowrap;
        }
        .chart-legend {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 20px;
        }
        .chart-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.6);
        }
        .chart-legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
        }

        /* Donut Chart */
        .donut-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .donut-chart {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: conic-gradient(
                var(--bronze-500) 0deg 158deg,
                #6366F1 158deg 252deg,
                #6366F1 252deg 313deg,
                #6366F1 313deg 360deg
            );
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 24px;
        }
        .donut-chart::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--dark-card);
            border-radius: 50%;
        }
        .donut-center {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .donut-value { font-size: 28px; font-weight: 700; color: white; }
        .donut-label { font-size: 12px; color: rgba(255,255,255,0.5); }
        .donut-legend {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .donut-legend-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
        }
        .donut-legend-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .donut-legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
        }
        .donut-legend-name { font-size: 13px; color: rgba(255,255,255,0.8); }
        .donut-legend-value { font-size: 13px; font-weight: 600; color: white; }

        /* Metrics Cards */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .metric-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s;
        }
        .metric-card:hover {
            border-color: var(--bronze-400);
            box-shadow: 0 12px 40px rgba(30, 30, 36, 0.03);
            transform: translateY(-4px);
        }
        .metric-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .metric-icon svg { width: 28px; height: 28px; }
        .metric-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
        .metric-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
        .metric-examples {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .metric-example {
            padding: 6px 12px;
            background: var(--gray-100);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-600);
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .feature-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            gap: 20px;
        }
        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(99,102,241,0.15);
        }
        .feature-icon svg { width: 26px; height: 26px; stroke: var(--bronze-400); }
        .feature-content h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
        .feature-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

        /* Table */
        .table-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--dark-border);
            border-radius: 14px;
            overflow: hidden;
        }
        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--dark-border);
        }
        .table-title { font-size: 16px; font-weight: 600; color: white; }
        .table-actions { display: flex; gap: 8px; }
        .table-action {
            padding: 8px 14px;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--dark-border);
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .table-action svg { width: 16px; height: 16px; }
        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr 100px;
            gap: 16px;
            padding: 16px 24px;
            border-bottom: 1px solid var(--dark-border);
            align-items: center;
        }
        .table-row:last-child { border-bottom: none; }
        .table-row.header {
            background: rgba(255,255,255,0.02);
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .table-row:not(.header):hover { background: rgba(255,255,255,0.02); }
        .table-cell { font-size: 14px; color: rgba(255,255,255,0.8); }
        .table-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .table-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: white;
        }
        .table-avatar.voice { background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); }
        .table-avatar.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
        .table-avatar.social { background: #E1306C; }
        .table-name { font-weight: 500; color: white; }
        .table-time { font-size: 12px; color: rgba(255,255,255,0.4); }
        .table-badge {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        .table-badge.positive { background: rgba(16,185,129,0.15); color: var(--emerald-500); }
        .table-badge.neutral { background: rgba(156,163,175,0.15); color: var(--gray-400); }
        .table-badge.negative { background: rgba(239,68,68,0.15); color: var(--red-500); }
        .table-score {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .table-score-bar {
            flex: 1;
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
        }
        .table-score-fill {
            height: 100%;
            border-radius: 3px;
        }
        .table-score-fill.high { background: var(--emerald-500); }
        .table-score-fill.medium { background: var(--amber-500); }
        .table-score-fill.low { background: var(--red-500); }
        .table-view {
            padding: 6px 12px;
            background: rgba(255,255,255,0.06);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            text-align: center;
        }
        .table-view:hover { background: rgba(255,255,255,0.1); }

        /* Export Section */
        .export-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .export-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        .export-card:hover {
            border-color: var(--bronze-400);
            box-shadow: 0 12px 40px rgba(30, 30, 36, 0.03);
            transform: translateY(-4px);
        }
        .export-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        .export-icon svg { width: 32px; height: 32px; }
        .export-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
        .export-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

        /* AI Insights */
        .insights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .insight-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            padding: 28px;
        }
        .insight-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }
        .insight-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .insight-icon svg { width: 24px; height: 24px; }
        .insight-title { font-size: 16px; font-weight: 600; color: white; }
        .insight-items { display: flex; flex-direction: column; gap: 14px; }
        .insight-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
        }
        .insight-bullet {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }
        .insight-bullet.bronze { background: var(--bronze-400); }
        .insight-bullet.green { background: var(--emerald-500); }
        .insight-bullet.blue { background: #6366F1; }
        .insight-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

        /* CTA */
        .cta { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); text-align: center; }
        .cta-title { font-size: 44px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
        .cta-description { font-size: 18px; color: var(--gray-500); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
        .cta-buttons { display: flex; justify-content: center; gap: 16px; }

        /* Footer */
        .footer { padding: 64px 0 32px; background: var(--gray-900); }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; margin-bottom: 48px; }
        .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 280px; }
        .footer-col h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 14px; }
        .footer-link { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
        .footer-link:hover { color: white; }
        .footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
        .footer-copyright { font-size: 14px; color: rgba(255,255,255,0.4); }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .chart-grid { grid-template-columns: 1fr; }
            .feature-grid { grid-template-columns: 1fr; }
            .metrics-grid { grid-template-columns: 1fr; }
            .insights-grid { grid-template-columns: 1fr; }
            .export-grid { grid-template-columns: 1fr; }
            .table-row { grid-template-columns: 2fr 1fr 1fr 80px; }
            .table-row .table-cell:nth-child(3),
            .table-row .table-cell:nth-child(4) { display: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav { display: none; }
            .hero-title { font-size: 36px; }
            .section-title { font-size: 28px; }
            .stats-grid { grid-template-columns: 1fr; }
            .table-row { grid-template-columns: 2fr 1fr 60px; }
            .table-row .table-cell:nth-child(2) { display: none; }
            .footer-grid { grid-template-columns: 1fr; 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;
}
