:root {
            --white: #FFFFFF;
            --cream: #FDFCFB;
            --cream-dark: #F8F6F3;
            --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;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #A37B4C;
            --bronze-400: #A5B4FC;
            --bronze-300: #D4B483;
            
            --blue-500: #3B82F6;
            --blue-600: #2563EB;
            --blue-700: #1D4ED8;
            
            --emerald-500: #10B981;
            --emerald-600: #059669;
            
            --dark-bg: #1a1f2e;
            --dark-bg-deep: #141820;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        *, *::before, *::after {
            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;
            -moz-osx-font-smoothing: grayscale;
        }

        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 ease;
        }

        .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;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .logo-mark svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .logo sup {
            font-size: 11px;
            font-weight: 500;
            color: var(--bronze-500);
            margin-left: 2px;
        }

        .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);
        }

        .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 ease;
        }

        .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(99,102,241, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--gray-800);
            border: 1px solid var(--gray-200);
        }

        .btn-secondary:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }

        .btn-ghost {
            color: var(--gray-600);
            padding: 10px 16px;
        }

        .btn-ghost:hover {
            color: var(--gray-900);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 60px 0 80px;
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, var(--cream-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(99,102,241, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--blue-600);
            margin-bottom: 24px;
        }

        .hero-badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 12px;
            height: 12px;
            color: white;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--gray-900);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

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

        /* Hero Mockup */
        .hero-mockup {
            position: relative;
        }

        .mockup-container {
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-deep) 100%);
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25),
                        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

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

        .mockup-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mockup-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mockup-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .mockup-status-dot {
            width: 8px;
            height: 8px;
            background: var(--emerald-500);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .mockup-badge {
            padding: 4px 10px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #60A5FA;
        }

        .mockup-dots {
            display: flex;
            gap: 8px;
        }

        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mockup-dot.red { background: #EF4444; }
        .mockup-dot.yellow { background: #F59E0B; }
        .mockup-dot.green { background: #10B981; }

        .mockup-body {
            padding: 24px;
        }

        /* CRM Sync Animation */
        .crm-sync-visual {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            margin-bottom: 24px;
        }

        .crm-source {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
        }

        .crm-source-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .crm-source-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-400));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .crm-source-icon svg {
            width: 16px;
            height: 16px;
            color: white;
        }

        .crm-source-title {
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .crm-source-subtitle {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
        }

        .crm-source-content {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .sync-arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .sync-arrow-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
            position: relative;
        }

        .sync-arrow-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left: 6px solid var(--blue-500);
        }

        .sync-pulse {
            width: 8px;
            height: 8px;
            background: var(--blue-500);
            border-radius: 50%;
            animation: syncPulse 1.5s ease-in-out infinite;
        }

        @keyframes syncPulse {
            0%, 100% { transform: translateX(-30px); opacity: 0; }
            50% { transform: translateX(30px); opacity: 1; }
        }

        .crm-destination {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 16px;
        }

        .crm-destination-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Contact Card */
        .contact-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 20px;
        }

        .contact-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: white;
        }

        .contact-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: white;
            margin-bottom: 2px;
        }

        .contact-info p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .contact-status {
            margin-left: auto;
            padding: 4px 10px;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #34D399;
        }

        .contact-fields {
            display: grid;
            gap: 12px;
        }

        .contact-field {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-field-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .contact-field-value {
            font-size: 13px;
            color: white;
            font-weight: 500;
        }

        .contact-field-value.highlight {
            color: #34D399;
        }

        .contact-summary {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-summary-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .contact-summary-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            background: rgba(255, 255, 255, 0.03);
            padding: 12px;
            border-radius: 8px;
        }

        .lead-score {
            margin-top: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .lead-score-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            min-width: 70px;
        }

        .lead-score-bar {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .lead-score-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--blue-500), var(--emerald-500));
            border-radius: 4px;
            transition: width 1s ease;
        }

        .lead-score-value {
            font-size: 14px;
            font-weight: 700;
            color: white;
            min-width: 50px;
            text-align: right;
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 120px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 64px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--bronze-600);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 18px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.1);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--blue-600);
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            margin-top: 64px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -24px;
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-500), transparent);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin: 0 auto 24px;
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto;
        }

        /* ===== INTEGRATIONS ===== */
        .integrations {
            padding: 120px 0;
            background: var(--white);
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .integration-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .integration-card:hover {
            border-color: var(--blue-300);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

        .integration-logo {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .integration-logo svg {
            width: 32px;
            height: 32px;
        }

        .integration-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
        }

        /* ===== USE CASES ===== */
        .use-cases {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-deep) 100%);
        }

        .use-cases .section-label {
            color: var(--bronze-400);
        }

        .use-cases .section-title {
            color: white;
        }

        .use-cases .section-description {
            color: rgba(255, 255, 255, 0.6);
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 64px;
        }

        .use-case-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .use-case-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-4px);
        }

        .use-case-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .use-case-icon svg {
            width: 32px;
            height: 32px;
            color: #60A5FA;
        }

        .use-case-title {
            font-size: 22px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
        }

        .use-case-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .use-case-benefits {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .use-case-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .use-case-benefit svg {
            width: 18px;
            height: 18px;
            color: #34D399;
        }

        /* ===== STATS ===== */
        .stats {
            padding: 80px 0;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
        }

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

        .stat-value {
            font-size: 48px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-value span {
            color: var(--blue-600);
        }

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

        /* ===== CTA ===== */
        .cta {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
            text-align: center;
        }

        .cta-title {
            font-size: 44px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .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: 80px 0 40px;
            background: var(--gray-900);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 64px;
        }

        .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: 12px;
        }

        .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);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .step:not(:last-child)::after {
                display: none;
            }

            .integrations-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .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;
}
