/* Styles spécifiques à index.html — externalisés depuis le <style> inline */
        :root {
            --navy: #0B1F4A;
            --navy-deep: #08183A;
            --navy-mid: #102B63;
            --accent: #F4B740;
            --accent-light: #F8CC6E;
            --accent-pale: #FEF6E4;
            --blue-saas: #1E5EFF;
            --cyan-tech: #18C5D8;
            --teal: #18C5D8;
            --teal-light: #D4F5FA;
            --green-perf: #16C784;
            --white: #ffffff;
            --off-white: #F5F7FB;
            --gray-100: #F5F7FB;
            --gray-200: #DCE3F0;
            --gray-400: #9ba3b8;
            --gray-600: #667085;
            --gray-900: #1A1F36;
            --font-display: 'Poppins', 'Montserrat', sans-serif;
            --font-body: 'Inter', 'Open Sans', sans-serif;
            --font-arabic: 'IBM Plex Sans Arabic', 'Inter', sans-serif;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
            --radius-xl: 40px;
            --shadow-sm: 0 2px 12px rgba(11,31,74,0.07);
            --shadow-md: 0 8px 32px rgba(11,31,74,0.12);
            --shadow-lg: 0 20px 60px rgba(11,31,74,0.18);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── TYPOGRAPHY ── */
        h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
        [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: var(--font-body); }

        .section-label {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 99px;
            background: rgba(244,183,64,0.14);
            border: 1px solid rgba(244,183,64,0.5);
            color: #A96D00;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label--light {
            background: rgba(244,183,64,0.12);
            border-color: rgba(244,183,64,0.42);
            color: var(--gold);
        }

        .section-title {
            font-size: clamp(1.55rem, 2.6vw, 2rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        .section-title--light { color: var(--white); }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--gray-600);
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.45;
        }

        .section-subtitle--light { color: rgba(255,255,255,0.55); }

        .text-center { text-align: center; }
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        .section { padding: 80px 0; }

        [dir="rtl"] body { font-family: var(--font-arabic); }

        .hero h1.hero-tagline {
            font-family: var(--font-display);
            font-size: clamp(0.9rem, 1.6vw, 1.05rem);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 16px;
        }

        /* ── HEADER ── */
        .header {
            background: var(--navy-deep);
            border-bottom: none;
            box-shadow: none;
            transition: background .3s ease, box-shadow .3s ease;
        }

        .header.scrolled { box-shadow: var(--shadow-sm); }
        .header.header-light {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);}
        .header .logo-img--light { filter: none; }
        .header.header-light .logo-img--light { display: none; }
        .header.header-light .logo-img--dark  { display: block; }
        
        /* ── LANGUAGE DROPDOWN ── */
        .lang-dropdown {
            position: relative;
            display: inline-block;
        }

        .lang-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.85);
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 99px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .lang-dropdown-trigger:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
            color: var(--white);
        }

        .lang-globe-icon {
            opacity: 0.8;
            transition: opacity 0.2s ease;
            stroke: currentColor;
            display: block;
        }

        .lang-chevron-icon {
            opacity: 0.6;
            transition: transform 0.2s ease, opacity 0.2s ease;
            stroke: currentColor;
            display: block;
        }

        .lang-dropdown.is-open .lang-chevron-icon {
            transform: rotate(180deg);
            opacity: 0.9;
        }

        .lang-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: rgba(11, 31, 74, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            min-width: 140px;
            padding: 6px;
            margin: 0;
            list-style: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.95);
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease, visibility 0.15s ease;
            z-index: 1010;
        }

        .lang-dropdown.is-open .lang-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .lang-dropdown-item {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .lang-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
        }

        .lang-dropdown-item.active {
            background: var(--blue-saas);
            color: var(--white);
            font-weight: 600;
        }

        /* RTL support for dropdown menu alignment */
        [dir="rtl"] .lang-dropdown-menu {
            right: auto;
            left: 0;
        }
        [dir="rtl"] .lang-dropdown-item {
            text-align: right;
        }

        /* Light Header Variant Style overrides */
        .header.header-light .lang-dropdown-trigger {
            background: var(--gray-100);
            border-color: var(--gray-200);
            color: var(--gray-600);
        }

        .header.header-light .lang-dropdown-trigger:hover {
            background: var(--gray-200);
            color: var(--gray-900);
        }

        .header.header-light .lang-dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            border-color: var(--gray-200);
            box-shadow: 0 10px 30px rgba(11, 31, 74, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .header.header-light .lang-dropdown-item {
            color: var(--gray-600);
        }

        .header.header-light .lang-dropdown-item:hover {
            background: var(--gray-100);
            color: var(--gray-900);
        }

        .header.header-light .lang-dropdown-item.active {
            background: var(--blue-saas);
            color: var(--white);
        }

        /* ── HERO ── */
        .hero {
            min-height: 88vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--navy-deep);
            padding-top: 70px;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-glow {
             display: none;
        }

        .hero-glow-2 {
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244,183,64,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .hero h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero-desc {
            font-size: 0.95rem;
            color: #c0c0c7;
            line-height: 1.35;
            max-width: 1200px;
            margin: 12px auto;
            margin-bottom: 20px;
        }

        .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1E5EFF;
            color: #FFFFFF;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #1a52e0;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(30,94,255,0.38);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.07);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: 99px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.25s;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.3);
        }

        .hero-trust-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.55);
        }

        .trust-item svg {
            color: var(--teal);
            flex-shrink: 0;
        }

        .hero-visual {
            position: relative;
        }

        .hero-card-stack {
            position: relative;
        }

        .hero-main-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 32px;
            backdrop-filter: blur(20px);
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .hero-card-title {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
        }

        .live-badge {
            background: rgba(24,197,216,0.2);
            border: 1px solid rgba(24,197,216,0.5);
            color: var(--cyan-tech);
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 99px;
            letter-spacing: .08em;
        }

        .hero-pill-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .feature-pill {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.7);
            font-size: 11px;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 99px;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 12px 18px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: float 4s ease-in-out infinite;
        }

        .floating-card.top-right {
            top: -24px;
            right: -24px;
            animation-delay: 0s;
        }

        .floating-card.bottom-left {
            bottom: -24px;
            left: -24px;
            animation-delay: 2s;
        }

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

        .fc-icon {
            width: 36px; height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .fc-icon.green { background: #d1fae5; }
        .fc-icon.amber { background: #fef3c7; }

        .fc-label { font-size: 11px; color: var(--gray-600); }
        .fc-value { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--gray-900); }

        /* ── BUSINESS TYPES ── */
        .business-types { background: var(--off-white); }

        /* ── FEATURES ── */
        .features { background: var(--white); }

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

        .feature-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            padding: 28px;
            transition: border-color 0.2s ease;
        }

        .feature-card:hover {
            border-color: var(--blue-saas);
        }

        .feature-icon-wrap {
            width: 44px; height: 44px;
            border-radius: var(--radius-sm);
            background: var(--off-white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-icon-wrap svg { color: var(--blue-saas); }

        .feature-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.65;
        }

        /* ── AI SECTION ── */
        .ai-section {
            background: var(--navy-deep);
            position: relative;
            overflow: hidden;
        }

        .ai-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
            linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
        }

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

        .ai-label {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--cyan-tech);
            margin-bottom: 12px;
        }

        .ai-title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .ai-title span { color: var(--cyan-tech); }

        .ai-desc {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin-bottom: 36px;
        }

        .ai-features-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

        .ai-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
        }

        .ai-check {
            width: 22px; height: 22px;
            border-radius: 50%;
            background: rgba(24,197,216,0.2);
            border: 1px solid rgba(24,197,216,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .ai-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            padding: 36px;
            backdrop-filter: blur(20px);
        }

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

        .nadipilot-logo {
            width: 48px; height: 48px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--teal), var(--navy-mid));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nadipilot-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
        }

        .nadipilot-tag {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
            letter-spacing: .05em;
        }

        .chat-bubble {
            border-radius: var(--radius-md);
            padding: 14px 18px;
            margin-bottom: 12px;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .chat-bubble.user {
            background: rgba(244,183,64,0.15);
            border: 1px solid rgba(244,183,64,0.25);
            color: rgba(255,255,255,0.8);
            margin-right: 20px;
        }

        .chat-bubble.bot {
            background: rgba(24,197,216,0.12);
            border: 1px solid rgba(24,197,216,0.25);
            color: rgba(255,255,255,0.8);
            margin-left: 20px;
        }

        .chat-typing {
            display: flex;
            gap: 4px;
            padding: 4px 0;
        }

        .chat-typing span {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(24,197,216,0.6);
            animation: typing 1.2s infinite;
        }

        .chat-typing span:nth-child(2) { animation-delay: .2s; }
        .chat-typing span:nth-child(3) { animation-delay: .4s; }

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

        /* ── BENEFITS ── */
        .benefits { background: var(--white); }

        /* ── PLANS ── */
        .plans { background: var(--off-white); }

        .billing-toggle-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 48px;
            width: 100%;
            flex-wrap: wrap;
        }

        .billing-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
            transition: color 0.2s;
        }

        .billing-label.active { color: var(--navy); }

        .billing-discount-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #d1fae5;
            color: #065f46;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 99px;
            opacity: 0;
            transform: translateY(4px);
            transition: all 0.3s ease;
        }

        .billing-discount-badge.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .toggle-switch {
            position: relative;
            width: 48px;
            height: 26px;
            cursor: pointer;
        }

        .toggle-switch input { opacity: 0; width: 0; height: 0; }

        .toggle-track {
            position: absolute;
            inset: 0;
            background: var(--gray-200);
            border-radius: 99px;
            transition: background 0.3s;
        }

        .toggle-switch input:checked + .toggle-track { background: var(--navy); }

        .toggle-thumb {
            position: absolute;
            top: 3px; left: 3px;
            width: 20px; height: 20px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 1px 4px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .toggle-switch input:checked ~ .toggle-thumb { transform: translateX(22px); }

        .plan-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--navy-deep);
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 800;
            padding: 4px 16px;
            border-radius: 99px;
            letter-spacing: .06em;
            white-space: nowrap;
        }

        .plan-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .plan-tagline {
            font-size: 0.82rem;
            color: var(--gray-400);
            margin-bottom: 20px;
        }

        .plan-price-block {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--gray-200);
        }

        .plan-price-row {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .plan-price-amount {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }

        .plan-price-currency {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-600);
            margin-right: 2px;
        }

        .plan-price-period {
            font-size: 0.8rem;
            color: var(--gray-400);
            margin-left: 2px;
        }

        .plan-annual-note {
            font-size: 0.78rem;
            color: var(--gray-400);
            margin-top: 5px;
            min-height: 18px;
            transition: all 0.2s;
        }

        .plan-annual-note .saving {
            color: #16C784;
            font-weight: 700;
        }

        .plan-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .plan-metric {
            background: var(--gray-100);
            border-radius: var(--radius-sm);
            padding: 10px 12px;
            text-align: center;
        }

        .plan-metric-value {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--navy);
            display: block;
        }

        .plan-metric-label {
            font-size: 10px;
            color: var(--gray-400);
            font-weight: 500;
            margin-top: 2px;
            display: block;
        }

        .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.875rem;
            color: var(--gray-600);
        }

        .check-icon {
            width: 18px; height: 18px;
            border-radius: 50%;
            background: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check-icon svg { color: var(--teal); }

        .plan-cta {
            display: block;
            text-align: center;
            padding: 13px;
            border-radius: 99px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.25s;
        }

        .plan-cta.outline {
            border: 1.5px solid var(--navy);
            color: var(--navy);
        }

        .plan-cta.outline:hover { background: var(--navy); color: var(--white); }

        .plan-cta.filled {
            background: var(--accent);
            color: var(--navy-deep);
        }

        .plan-cta.filled:hover { background: var(--accent-light); }

        .plan-price {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--gray-200);
        }

        /* ── DEPLOYMENT ── */
        .deployment { background: var(--white); }

        .deployment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .deploy-card {
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 40px;
            transition: all 0.3s;
        }

        .deploy-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }

        .deploy-icon {
            width: 60px; height: 60px;
            border-radius: var(--radius-md);
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .deploy-icon svg { color: var(--navy); }

        .deploy-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .deploy-card p {
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .deploy-tag {
            display: inline-block;
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 99px;
            margin: 3px;
        }

        /* ── CITIES (see css/cities-marquee.css) ── */
        .cities-section { background: var(--off-white); }

        /* ── FAQ ── */
        .faq-section { background: var(--off-white); }

        .faq-container { max-width: 780px; margin: 0 auto; }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item.open { border-color: var(--navy); }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
        }

        .faq-question span:first-child {
            font-size: 0.925rem;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.5;
        }

        .faq-toggle {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .faq-item.open .faq-toggle svg { color: var(--white); }
        .faq-toggle svg { color: var(--navy); transition: color 0.3s; }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 720px;
        }

        .faq-answer-content {
            padding: 0 24px 20px;
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.7;
            border-top: 1px solid var(--gray-200);
            padding-top: 16px;
        }

        /* ── FINAL CTA ── */
        .final-cta {
            background: var(--navy-deep);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before { display: none; }

        .final-cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .final-cta h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .final-cta p {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 48px;
        }

        .cta-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .cta-card {
            background: rgba(255,255,255,0.06);
            border: 1.5px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-decoration: none;
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .cta-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--blue-saas);
            box-shadow: 0 14px 36px rgba(8,24,58,0.45);
            transform: translateY(-3px);
        }

        .cta-card-icon {
            width: 48px; height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-card-label {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
            letter-spacing: .06em;
            font-weight: 600;
        }

        .cta-card-value {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--navy-deep);
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 64px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: minmax(200px, 1.25fr) minmax(320px, 2.5fr) minmax(200px, 1fr);
            gap: 40px;
            margin-bottom: 48px;
            align-items: start;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px 24px;
        }

        .footer-links--cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 14px;
        }

        .footer-links--cols a { font-size: 0.8125rem; }

        .footer-locale-summary {
            list-style: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.45);
            transition: color 0.2s;
        }

        .footer-locale-summary::-webkit-details-marker { display: none; }

        .footer-locale-chevron { transition: transform 0.25s ease; }
        .footer-locale-details[open] .footer-locale-chevron { transform: rotate(180deg); }
        .footer-locale-details .footer-links--cols { margin-top: 12px; }

        .footer-logo {
            display: inline-block;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .footer-logo-img {
            height: 52px;
            width: auto;
            display: block;
            filter: brightness(0) invert(1);
        }

        .footer-logo span { display: none; }

        .footer-description {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-langs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .footer-lang-tag {
            background: rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.5);
            font-size: 11px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 99px;
        }

        .footer-section h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            letter-spacing: .06em;
            margin-bottom: 20px;
        }

        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

        .footer-links a {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--accent-light); }

        .footer-contact { display: flex; flex-direction: column; gap: 14px; }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-icon {
            width: 36px; height: 36px;
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg { color: var(--accent); }

        .contact-info { display: flex; flex-direction: column; }

        .contact-info h5 {
            font-size: 10px;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
            letter-spacing: .06em;
            margin-bottom: 2px;
        }

        .contact-info a {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-info a:hover { color: var(--accent-light); }

        .cta-card-value,
        .contact-info a { direction: ltr; unicode-bidi: embed; }

        .footer-consent-trigger {
            background: none;
            border: none;
            color: var(--accent);
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
            font-size: inherit;
            padding: 0;
            font-family: inherit;
        }
        .footer-consent-trigger:hover { color: var(--accent-light); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.35);
        }

        .footer-bottom a { color: var(--accent); text-decoration: none; font-weight: 600; }

        /* ── WHATSAPP FLOAT ── */
        .wa-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 900;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #25d366;
            color: var(--white);
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 12px 20px 12px 14px;
            border-radius: 99px;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: all 0.3s;
            animation: wa-pulse 3s infinite;
        }

        .wa-float:hover {
            animation: none;
        }

        @keyframes wa-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
        }

        /* ── ANIMATIONS ── */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; gap: 40px; }
            .hero-visual { display: none; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .pricing-layout { grid-template-columns: 1fr; max-width: 520px; }
            .ai-inner { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-nav { grid-template-columns: 1fr; gap: 24px; }
            .footer-links--cols { grid-template-columns: 1fr; }
            .deployment-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }

            .screenshot-two-col { grid-template-columns: 1fr !important; gap: 40px !important; }
        }

        @media (max-width: 600px) {
            .section { padding: 64px 0; }
            .features-grid { grid-template-columns: 1fr; }
            .hero-cta-row { flex-direction: column; }
        }

        .btn-primary,
        .nav-trial-btn,
        .mobile-nav-cta,
        .plan-detail-cta,
        .billing-pill-btn { box-shadow: none; }

        .btn-primary:hover,
        .nav-trial-btn:hover,
        .mobile-nav-cta:hover,
        .plan-detail-cta:hover,
        .billing-pill-btn:hover { box-shadow: none; transform: none; }

        .btn-primary:active,
        .nav-trial-btn:active,
        .mobile-nav-cta:active,
        .plan-detail-cta:active,
        .billing-pill-btn:active {
            box-shadow: 0 2px 8px rgba(8,24,58,0.25);
            transform: translateY(0);
        }

        .btn-primary:active,
        .nav-trial-btn:active,
        .mobile-nav-cta:active { background: #1647c0; }

        .wa-float { box-shadow: none; animation: none; }
        .wa-float:hover { box-shadow: none; transform: none; }
        .wa-float:active {
            box-shadow: 0 2px 12px rgba(4, 11, 27, 0.25);
            transform: translateY(0);
        }

        .hero-tagline { color: #fff; }

        .hero-title-fixed { display: block; color: #fff; }

        .hero-rotate { display: block; position: relative; height: 1.2em; overflow: hidden; }
        .hero-rotate-item {
            position: absolute; left: 0; top: 0; width: 100%;
            white-space: nowrap; color: #fff;
            opacity: 0; transform: translateY(110%);
            animation: heroRotate 7.5s infinite;
        }
        .hero-rotate-item:nth-child(2) { animation-delay: 2.5s; }
        .hero-rotate-item:nth-child(3) { animation-delay: 5s; }

        /* Hero rotating headline: 3 items cycled by heroRotate (~2.5s each) */
        @keyframes heroRotate {
            0%   { opacity: 0; transform: translateY(110%); }
            6%   { opacity: 1; transform: translateY(0); }
            28%  { opacity: 1; transform: translateY(0); }
            34%  { opacity: 0; transform: translateY(-110%); }
            100% { opacity: 0; transform: translateY(-110%); }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-rotate-item { animation: none; }
            .hero-rotate-item:nth-child(1) { opacity: 1; transform: none; }
        }

        .hero .hero-title { font-size: clamp(1.6rem, 4vw, 2.6rem); }
        .hero-rotate { height: 1em; }
        .hero-rotate-item { line-height: 1em; }
        .hero-title-fixed { font-size: 0.9em; }

        .stats-strip {
            background: #fff;
            border: none;
            padding: 18px 0;
            overflow: hidden;
        }
        .stats-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
        .stats-marquee-track {
            display: flex;
            width: max-content;
            animation: statsMarquee 42s linear infinite;
        }
        .stats-marquee-item {
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-600);
            white-space: nowrap;
            margin-right: 64px;
            position: relative;
        }
        .stats-marquee-item::after {
            content: "";
            position: absolute;
            right: -34px;
            top: 50%;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--blue-saas);
            transform: translateY(-50%);
            opacity: 0.55;
        }
        @keyframes statsMarquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .stats-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
        }

        .hero-cta-row .btn-secondary {
            background: #fff;
            color: var(--navy);
            border-color: #fff;
        }
        .hero-cta-row .btn-secondary:hover {
            background: var(--off-white);
            color: var(--navy);
            border-color: var(--off-white);
        }
        .hero-cta-row .btn-secondary::after {
            content: "";
            width: 16px; height: 16px;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
            transition: transform 0.2s;
        }
        .hero-cta-row .btn-secondary:hover::after { transform: translateY(2px); }

        .pp-accordion {
            --pp-col: 240px;
            --pp-gap: 56px;
            --pp-pad: 24px;
            display: grid;
            grid-template-columns: var(--pp-col) 1fr;
            column-gap: var(--pp-gap);
            position: relative;
            align-items: start;
            max-width: var(--container-max);
            margin: 44px auto 0;
            padding-inline: var(--pp-pad);
            min-height: 280px;
        }

        .pp-panel {
            grid-column: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
            text-align: left;
            padding: 14px 0;
            border: none;
            border-bottom: 1px solid var(--gray-200);
            border-radius: 0;
            background: none;
            font-family: inherit;
            cursor: pointer;
        }
        .pp-panel:last-of-type { border-bottom: none; }

        .pp-bar {
            order: 2;
            position: relative;
            height: 3px;
            margin-top: 10px;
            background: var(--gray-200);
            border-radius: 99px;
            overflow: hidden;
            display: none;
        }
        .pp-panel.is-active .pp-bar { display: block; }
        .pp-bar-fill { display: block; height: 100%; width: 0; background: var(--blue-saas); }
        .pp-panel.is-active .pp-bar-fill { animation: ppFill var(--dur, 6s) linear forwards; }
        @keyframes ppFill { from { width: 0; } to { width: 100%; } }

        .pp-pains { display: none; }
        .pp-panel.is-active .pp-pains {
            display: block;
            position: absolute;
            top: 6px;
            inset-inline-start: calc(var(--pp-pad) + var(--pp-col) + var(--pp-gap));
            inset-inline-end: var(--pp-pad);
        }

        .pp-accordion .pp-pain {
            display: flex;
            align-items: flex-start;
            gap: 1px;
            margin-bottom: 18px;
            font-family: var(--font-body);
            font-size: 1.1rem;
            line-height: 1.5;
            color: var(--gray-900);
            opacity: 0;
            transform: translateY(6px);
            animation: ppPainIn .45s ease forwards;
        }
        .pp-panel.is-active .pp-pain:nth-child(1) { animation-delay: .15s; }
        .pp-panel.is-active .pp-pain:nth-child(2) { animation-delay: .55s; }
        .pp-panel.is-active .pp-pain:nth-child(3) { animation-delay: .95s; }

        .pp-accordion .pp-pain::before {
            content: "";
            flex: 0 0 auto;
            width: 40px; height: 28px;
            margin-top: .08em;
            background: var(--blue-saas, --blue-saas);
            -webkit-mask: url("../img/screenshots/arrow.svg") no-repeat center / contain;
            mask: url("../img/screenshots/arrow.svg") no-repeat center / contain;
        }

        @media (max-width: 760px) {
            .pp-accordion { display: block; min-height: 0; margin-top: 32px; }
            .pp-panel.is-active .pp-pains {
                position: static;
                margin-top: 14px;
                inset-inline-start: auto;
                inset-inline-end: auto;
            }
            .pp-panel.is-active .pp-name { font-size: 1.3rem; }
        }

        @media (prefers-reduced-motion: reduce) {
            .pp-panel.is-active .pp-bar-fill { animation: none; width: 100%; }
            .pp-accordion .pp-pain { animation: none; opacity: 1; transform: none; }
        }

        .impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
        .impact-stat { text-align: center; }
        .impact-num {
            display: block;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2.6rem, 6vw, 4rem);
            line-height: 1;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--blue-saas), var(--cyan-tech));
            -webkit-background-clip: text; background-clip: text; color: transparent;
        }
        .impact-label { display: block; margin-top: 10px; font-size: 1rem; font-weight: 600; color: var(--navy); }
        .impact-source { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--gray-600); }
        @media (max-width: 760px) { .impact-grid { grid-template-columns: 1fr; gap: 36px; } }

        .plan-detail-header > div:first-child { flex: 1; min-width: 0; }

        .deployment { background: var(--navy-deep); }
        .deployment .deploy-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
        .deployment .deploy-card:hover { border-color: var(--blue-saas); box-shadow: 0 14px 36px rgba(8,24,58,0.45); }
        .deployment .deploy-icon { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
        .deployment .deploy-card h3 { color: #fff; }
        .deployment .deploy-card p { color: rgba(255,255,255,0.7); }
        .deployment .deploy-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); }

        .cities-section { background: var(--navy-deep); }
        .cities-wall { display: flex; gap: 36px; align-items: stretch; }
        .cities-wall-left { flex: 0 0 240px; display: flex; flex-direction: column; }
        .cities-wall-left .section-label { align-self: flex-start; }
        .cities-wall-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
        .cities-wall-link { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--cyan-tech); text-decoration: none; }
        /* Cities wall: 6-col grid + 3D perspective; linked cities glow, others muted */
        .cities-wall-grid { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; perspective: 1000px; }
        .city-card { position: relative; min-height: 64px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); color: rgba(255,255,255,0.85); font-size: 0.85rem; text-decoration: none; transition: transform .3s ease, background .2s, border-color .2s; }
        .city-card.has-page { cursor: pointer; }
        .city-card.has-page { border-color: rgba(30,94,255,0.5); }
        .city-card.has-page:hover { background: rgba(30,94,255,0.10); border-color: var(--blue-saas); color: #fff; }
        .city-plus { position: absolute; top: 6px; right: 6px; width: 18px; height: 18px; border-radius: 50%; background: rgba(30,94,255,0.15); color: var(--blue-saas); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; line-height: 1; }
        @media (max-width: 900px) { .cities-wall { flex-direction: column; } .cities-wall-grid { grid-template-columns: repeat(3, 1fr); width: 100%; } }
        @media (max-width: 520px) { .cities-wall-grid { grid-template-columns: repeat(2, 1fr); } }
        .cities-section .cities-wall-title { color: #fff; }

        .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 36px; }
        .hero-content { max-width: 760px; width: 100%; }
        .hero-cta-row { justify-content: center; align-items: center; }
        .hero-visual { display: block; width: 100%; max-width: 760px; margin: 0 auto; }

        #vs-erp .compare-cards { max-width: 860px; margin: 8px auto 0; }
        #vs-erp .compare-metrics { grid-template-columns: 1fr; gap: 0; }
        #vs-erp .compare-metric { display: grid; grid-template-columns: 130px 1fr; align-items: center; background: none; border-radius: 0; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
        #vs-erp .compare-metric:last-child { border-bottom: none; }
        #vs-erp .compare-metric-label { margin-bottom: 0; font-size: 0.85rem; color: var(--gray-600); }
        #vs-erp .compare-metric-value { font-size: 0.92rem; padding-left: 22px; border-left: 1px solid var(--gray-200); }

        .pp-accordion .pp-pain { display: block; position: relative; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); padding: 11px 12px 11px 42px; margin-bottom: 8px; color: #fff; font-size: 0.88rem; line-height: 1.45; }
        .pp-accordion .pp-pain:last-child { margin-bottom: 0; }
        .pp-accordion .pp-pain::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); -webkit-mask: url("../img/screenshots/arrow.svg") no-repeat center / contain; mask: url("../img/screenshots/arrow.svg") no-repeat center / contain; }
        .pp-panel.is-active .pp-name { font-size: 1.2rem; }
        .pp-panel:not(.is-active) .pp-name { font-size: 0.95rem; }

        .pp-accordion .pp-pain { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-900); }
        .pp-accordion .pp-pain::before { background: var(--blue-saas); width: 26px; height: 20px; }

        .faq-item.open { border-color: var(--blue-saas); }
        .faq-item.open .faq-toggle { background: var(--blue-saas); transform: none; }

        /* Pricing type scale */
        #plans {
            --phi: 1.618;
            --fs-meta:  0.809rem;
            --fs-body:  1rem;
            --fs-sub:   1.272rem;
            --fs-name:  1.618rem;
            --fs-price: 2.618rem;
            --lh: 1.45;
        }
        #plans .plan-detail, #plans .plan-detail * { line-height: var(--lh); }
        #plans .container { max-width: 1280px; }

        #plans .pricing-layout { display: block; max-width: none; }
        /* Plan comparison: 4 detail panels side-by-side (-> 2 cols <=991px -> 1 col <=699px) */
        #plans .plan-detail-panel { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
        #plans .plan-detail { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; box-shadow: var(--shadow-sm); padding: 24px 24px; transition: transform 0.2s, box-shadow 0.2s; }
        #plans .plan-detail:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        #plans .plan-detail.is-active { border: 2px solid var(--blue-saas); padding: 23px 23px; }

        #plans .plan-detail-header { display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 10px; min-height: 40px; background: transparent; padding: 0; border: none; box-shadow: none; }
        #plans .plan-detail-header h3 { margin: 0; font-family: var(--font-display); font-size: var(--fs-name); font-weight: 700; color: var(--gray-900); }
        #plans .plan-picker-badge { flex: none; white-space: nowrap; padding: 2px 8px; border-radius: 99px; background: rgba(244,183,64,0.16); border: 1px solid rgba(244,183,64,0.55); color: #7A5200; font-size: 0.62rem; font-weight: 600; }
        #plans .plan-detail-tagline { margin: 4px 0 0; min-height: calc(2em * 1.35); line-height: 1.35; font-size: var(--fs-meta); color: var(--gray-600); }

        #plans .plan-detail-price-tag { display: block; margin: 14px 0 0; min-height: 78px; width: auto; max-width: none; padding: 0; background: transparent; border: none; border-radius: 0; box-shadow: none; overflow: visible; text-align: start; }
        #plans .plan-price-old { display: none; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); text-decoration: line-through; }
        #plans.is-annual .plan-price-old { display: block; }
        #plans .plan-price-row { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; }
        #plans .plan-price-amount { font-family: var(--font-display); font-size: var(--fs-name); line-height: 1.15; font-weight: 700; color: var(--gray-900); }
        #plans .plan-price-currency { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); }
        #plans .plan-price-meta { display: flex; flex-direction: column; justify-content: center; align-self: center; white-space: nowrap; font-size: 0.65rem; line-height: 1.15; color: var(--gray-900); }
        #plans .plan-price-period { font-weight: 700; }
        #plans .plan-price-terms { display: none; font-weight: 400; color: var(--gray-600); }
        #plans .plan-price-terms--monthly { display: block; }
        #plans.is-annual .plan-price-terms--monthly { display: none; }
        #plans.is-annual .plan-price-terms--annual { display: block; }
        #plans .plan-annual-note { display: none; margin: 0; font-size: var(--fs-meta); font-weight: 600; color: #12B76A; }
        #plans.is-annual .plan-annual-note { display: block; }

        #plans .plan-price-tag--custom { display: flex; align-items: center; gap: 14px; }
        #plans .plan-price-icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-saas), var(--cyan-tech)); color: #fff; }
        #plans .plan-price-custom { font-family: var(--font-display); font-size: var(--fs-sub); font-weight: 700; color: var(--gray-900); }

        #plans .plan-includes { margin: 4px 0 0; min-height: calc(2em * var(--lh)); font-size: var(--fs-meta); color: var(--gray-900); }

        #plans .plan-detail-cta { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; margin: 14px 0 0; padding: 11px 18px; border-radius: 10px; background: #fff; border: 1px solid var(--gray-200); color: var(--gray-900); font-size: var(--fs-meta); font-weight: 600; box-shadow: none; transition: background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s; }
        #plans .plan-detail-cta:hover { border-color: var(--blue-saas); color: var(--blue-saas); transform: none; box-shadow: none; }
        #plans #plan-detail-pro .plan-detail-cta { background: var(--blue-saas); border-color: var(--blue-saas); color: #fff; }
        #plans #plan-detail-business .plan-detail-cta { background: var(--navy); border-color: var(--navy); color: #fff; }
        #plans #plan-detail-pro .plan-detail-cta:hover, #plans #plan-detail-business .plan-detail-cta:hover { filter: brightness(1.12); color: #fff; }

        #plans .plan-detail-features-title { margin: 18px 0 0; min-height: 0; font-family: var(--font-display); font-size: var(--fs-body); font-weight: 700; color: var(--gray-900); }

        #plans .plan-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 0 0; }
        #plans .plan-metric { background: rgba(30,94,255,0.07); border: none; border-radius: 12px; padding: 14px 8px; text-align: center; }
        #plans .plan-metric-value { display: block; font-family: var(--font-display); font-size: var(--fs-sub); font-weight: 700; color: var(--gray-900); }
        #plans .plan-metric-label { display: block; margin-top: 2px; font-size: var(--fs-meta); color: var(--gray-900); }

        #plans .plan-features { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
        #plans .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-meta); color: var(--gray-900); }
        #plans .plan-features .check-icon { flex: none; width: 16px; height: 16px; margin-top: 4px; background: transparent; border-radius: 0; color: var(--blue-saas); display: inline-flex; align-items: center; justify-content: center; }
        #plans .plan-features .check-icon svg { width: 14px; height: 14px; stroke: var(--blue-saas); }

        #plans .billing-pill { padding: 5px; }
        #plans .billing-pill-btn { padding: 12px 30px; font-size: var(--fs-body); }
        #plans .billing-pill-btn.active { background: var(--blue-saas); color: #fff; }
        #plans .billing-pill-badge { display: inline-block; margin-inline-start: 8px; padding: 3px 10px; border-radius: 99px; background: rgba(30,94,255,0.10); color: var(--blue-saas); font-size: 0.72rem; font-weight: 600; white-space: nowrap; vertical-align: middle; }
        #plans .billing-pill, #plans .billing-pill-btn { white-space: nowrap; }
        #plans .billing-pill-wrap { overflow: visible; }
        #plans .billing-pill-btn.active .billing-pill-badge { background: rgba(255,255,255,0.22); color: #fff; }

        @media (max-width: 1199px) { #plans .plan-detail { padding: 22px 18px; } #plans .plan-detail.is-active { padding: 21px 17px; } #plans .plan-price-amount { font-size: 2.1rem; } #plans .plan-price-row { flex-wrap: wrap; } }
        @media (max-width: 1099px) { #plans .plan-detail-panel { grid-template-columns: 1fr 1fr; gap: 20px; } }
        @media (max-width: 699px) { #plans .plan-detail-panel { grid-template-columns: 1fr; gap: 16px; } #plans .billing-pill-btn { padding: 10px 16px; } }

        .hero-tagline { margin-bottom: 10px; }
        .hero-title { line-height: 1.1; margin-bottom: 12px; }
        .hero-screenshot { max-width: 620px; margin-left: auto; margin-right: auto; }
        .hero-cta-row { margin-bottom: 0; }
        .hero-inner { gap: 20px; padding: 72px 0 32px; }
        .hero { min-height: 0; }

        @keyframes heroEnter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
        .hero-tagline, .hero-title, .hero-desc, .hero-cta-row, .hero-visual { animation: heroEnter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
        .hero-tagline    { animation-delay: 0.05s; }
        .hero-title      { animation-delay: 0.19s; }
        .hero-desc       { animation-delay: 0.33s; }
        .hero-cta-row    { animation-delay: 0.47s; }
        .hero-visual     { animation-delay: 0.61s; }
        @media (prefers-reduced-motion: reduce) {
            .hero-tagline, .hero-title, .hero-desc, .hero-cta-row, .hero-visual { animation: none; }
        }

        #business-types .pp-split { display: grid; grid-template-columns: 2fr 3fr; padding: 0; border: none; width: min(1092px, calc(100% - 48px)); margin: 8px auto 0; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow-md); min-height: 0; }
        /* Pain-points layout */
        #business-types .pp-split-nav { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 34px 32px; background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid)); text-align: start; }
        #business-types .pp-split-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-tech); margin-bottom: 12px; }
        #business-types .pp-split .pp-panel { display: block; width: 100%; text-align: start; background: none; border: none; margin: 0; padding: 9px 0; cursor: pointer; outline: none; box-shadow: none; border-radius: 0; }
        #business-types .pp-split .pp-panel:focus-visible { outline: 2px solid var(--cyan-tech); outline-offset: 2px; border-radius: 6px; }
        #business-types .pp-split .pp-name { display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.5); transition: color 0.2s; }
        #business-types .pp-split .pp-panel:hover .pp-name { color: rgba(255,255,255,0.8); }
        #business-types .pp-split .pp-panel.is-active .pp-name { color: #fff; font-size: 1.3rem; font-weight: 700; }
        #business-types .pp-split .pp-bar { display: none; margin-top: 8px; height: 3px; width: 100%; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; }
        #business-types .pp-split .pp-panel.is-active .pp-bar { display: block; }
        #business-types .pp-split .pp-bar-fill { background: linear-gradient(90deg, var(--blue-saas), var(--cyan-tech)); }
        #business-types .pp-split-sub { margin: auto 0 0; padding-top: 18px; font-size: 0.85rem; line-height: 1.45; color: rgba(255,255,255,0.55); }
        #business-types .pp-split-body { padding: 30px 44px; }
        #business-types .pp-split-body .pp-pains { display: none; }
        #business-types .pp-split-body .pp-pains.is-active { display: block; counter-reset: pain; }
        #business-types .pp-split-body .pp-pain { display: flex; gap: 14px; align-items: flex-start; padding: 19px 0; margin: 0; border: none; border-bottom: 1px solid var(--gray-200); border-radius: 0; background: none; font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; line-height: 1.55; color: var(--gray-900); }
        #business-types .pp-split-body .pp-pain:last-child { border-bottom: none; }
        #business-types .pp-split-body .pp-pain::before { content: ""; position: static; display: block; flex: none; width: 16px; height: calc(0.95rem * 1.55); margin: 0; background: var(--blue-saas); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6 18 18 M18 6 6 18' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 11px 11px; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6 18 18 M18 6 6 18' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 11px 11px; }
        @keyframes ppPainIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        #business-types .pp-split-body .pp-pains.is-active .pp-pain { animation: ppPainIn 0.5s ease both; }
        #business-types .pp-split-body .pp-pains.is-active .pp-pain:nth-child(1) { animation-delay: 0.06s; }
        #business-types .pp-split-body .pp-pains.is-active .pp-pain:nth-child(2) { animation-delay: 0.16s; }
        #business-types .pp-split-body .pp-pains.is-active .pp-pain:nth-child(3) { animation-delay: 0.26s; }
        @media (max-width: 860px) {
            #business-types .pp-split { grid-template-columns: 1fr; }
            #business-types .pp-split-nav { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 2px 18px; padding: 20px 22px; }
            #business-types .pp-split .pp-panel { width: auto; }
            #business-types .pp-split .pp-panel.is-active .pp-name { font-size: 1.05rem; }
            #business-types .pp-split-label { width: 100%; margin-bottom: 4px; }
            #business-types .pp-split-sub { display: none; }
            #business-types .pp-split-body { padding: 6px 22px 14px; }
        }
        @media (prefers-reduced-motion: reduce) {
            #business-types .pp-split-body .pp-pains.is-active .pp-pain { animation: none; }
        }

        #features .container { display: block; }
        #features .features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 8px; }
        #features .feature-card { display: flex; flex-direction: column; margin: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
        #features .feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        #features .feature-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
        #features .feature-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
        #features .feature-icon-wrap { flex: none; background: linear-gradient(135deg, var(--blue-saas), var(--cyan-tech)); border: none; color: #fff; }
        #features .feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 16px 0 8px; }
        #features .feature-card p { font-size: 0.875rem; line-height: 1.55; margin: 0; }
        #features .feature-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
        #features .feature-head .feature-icon-wrap { margin-bottom: 0; }
        #features .feature-head h3 { margin: 0; min-height: 44px; display: grid; align-items: center; }
        #features .feature-media { margin-top: auto; padding-top: 20px; }
        #features .feature-media img { display: block; width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--gray-200); }
        #features .feature-card:nth-child(1) .feature-media img { max-height: 330px; object-fit: cover; object-position: top; }
        #features .feature-card:nth-child(2) .feature-media img { max-height: 300px; object-fit: cover; object-position: top; }

        /* Bento card 6 (Security): full-width horizontal band, icon + text on navy gradient */
        #features .feature-card:nth-child(6) { grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); border: none; }
        #features .feature-card:nth-child(6) .feature-icon-wrap { background: rgba(255,255,255,0.10); color: var(--cyan-tech); }
        #features .feature-card:nth-child(6) h3 { color: #fff; }
        #features .feature-card:nth-child(6) p { color: rgba(255,255,255,0.65); }
        @media (max-width: 1023px) {
            #features .features-grid { grid-template-columns: 1fr 1fr; }
            #features .feature-card:nth-child(1), #features .feature-card:nth-child(2) { grid-column: 1 / -1; grid-row: auto; }
            #features .feature-card:nth-child(6) { grid-column: 1 / -1; }
        }
        @media (max-width: 660px) {
            #features .features-grid { grid-template-columns: 1fr; gap: 14px; }
        }

        #features .feature-icon-wrap svg { color: #fff; stroke: #fff; }
        #features .feature-card:nth-child(5) { grid-column: auto; grid-row: auto; }
        #features .text-center { position: sticky; top: 69px; z-index: 30; flex: none; margin: 0 0 6px; padding: 12px 0 10px; text-align: center; background: var(--white); }

        .deployment .deploy-icon { background: rgba(255,255,255,0.10); border: none; }
        .deployment .deploy-icon svg { color: #fff; stroke: #fff; }

        #ai-section .ai-card { position: relative; border: 1px solid transparent; border-radius: var(--radius-lg); background-image: linear-gradient(var(--navy-mid), var(--navy-mid)), linear-gradient(135deg, var(--blue-saas), var(--cyan-tech), var(--blue-saas)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 0 42px rgba(24,197,216,0.14); animation: aiGlow 4.5s ease-in-out infinite; }
        @keyframes aiGlow { 0%, 100% { box-shadow: 0 0 34px rgba(24,197,216,0.10); } 50% { box-shadow: 0 0 54px rgba(24,197,216,0.22); } }
        #ai-section .nadi-frame-bar { display: flex; gap: 6px; align-items: center; height: 30px; padding: 0 12px; background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.08); }
        #ai-section .nadi-frame-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.22); }
        #ai-section .nadi-tab-active { background: linear-gradient(135deg, var(--blue-saas), var(--cyan-tech)) !important; color: #fff !important; box-shadow: 0 4px 14px rgba(24,197,216,0.35); }
        #ai-section .nadi-tab:not(.nadi-tab-active):hover { background: rgba(255,255,255,0.12) !important; }
        @media (prefers-reduced-motion: reduce) { #ai-section .ai-card { animation: none; } }

        #ai-section .ai-check { width: 16px; height: 16px; border-radius: 0; background: transparent; border: none; flex: none; margin-top: 3px; color: var(--blue-saas); display: inline-flex; align-items: center; justify-content: center; }
        #ai-section .ai-check svg { width: 14px; height: 14px; stroke: var(--blue-saas); }

        #ai-section .ai-desc { text-align: justify; }

        .cities-section .city-card { transform: none !important; }
        .cities-section .city-card.has-page { background: rgba(24,197,216,0.07); border-color: rgba(24,197,216,0.42); color: #fff; }
        .cities-section .city-card.has-page:hover { transform: translateY(-2px) !important; }
        .cities-section .city-card:not(.has-page) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.38); font-size: 0.8rem; cursor: default; }

        .cities-section .city-plus { display: inline-flex; align-items: center; justify-content: center; color: var(--cyan-tech); transition: transform 0.25s ease, background 0.2s, color 0.2s; }
        .cities-section .city-card.has-page:hover { border-color: var(--blue-saas); background: rgba(30,94,255,0.12); }
        .cities-section .city-card.has-page:hover .city-plus { transform: rotate(-45deg); background: var(--blue-saas); color: #fff; }
        [dir="rtl"] .cities-section .city-plus svg { transform: scaleX(-1); }
        [dir="rtl"] .cities-section .city-card.has-page:hover .city-plus { transform: rotate(45deg); }
        @media (prefers-reduced-motion: reduce) { .cities-section .city-plus { transition: none; } }

        .hero-rotate { height: 1.28em; }
        .hero-rotate-item { line-height: 1.28em; }

        @media (max-width: 700px) { .hero-desc br { display: none; } }

        .cities-wall-left { text-align: start; }
        .cities-wall-title { margin-bottom: 10px; }
        .cities-wall-sub { margin-bottom: 12px; text-align: justify; }
        .cities-wall-link { margin-top: auto; }

        .deployment { position: relative; overflow: hidden; }
        .deployment::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
        .deployment .container { position: relative; z-index: 1; }

        .footer .footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; }
        .footer .footer-nav { flex: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
        .footer-social-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; row-gap: 12px; gap: 20px; }
        .footer-social-row::before, .footer-social-row::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.14); }
        .footer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.75); transition: border-color 0.2s, color 0.2s, transform 0.2s; }
        .footer-social-icon:hover { border-color: var(--blue-saas); color: var(--blue-saas); transform: translateY(-2px); }
        .footer-social-icon:active { border-color: #1647c0; color: #1647c0; }
        .footer-social-icon svg { width: 16px; height: 16px; }
        .footer-info--center { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 560px; margin: 0 auto 4px; }
        .footer-info--center .footer-langs { justify-content: center; }
        .footer .footer-bottom { text-align: center; }
        @media (max-width: 900px) {
            .footer .footer-grid { flex-direction: column; gap: 30px; }
            .footer .footer-nav { grid-template-columns: 1fr 1fr; gap: 26px; }
        }

        .footer-info--center .footer-logo-img { height: 84px; width: auto; transform: scale(1.80); transform-origin: center; }

        .footer { padding: 40px 0 22px; }
        .footer .footer-grid { gap: 40px; }
        .footer .footer-links { gap: 7px; }
        .footer .footer-links a { line-height: 1.4; }
        .footer .footer-nav-col h4, .footer .footer-section h4 { margin-bottom: 12px; }
        .footer-social-row { margin: 26px 0 20px; }
        .footer-info--center .footer-logo { margin: 0 0 8px; }
        .footer-info--center .footer-signature { margin: 0 0 8px; }
        .footer-info--center .footer-description { margin-bottom: 10px; line-height: 1.5; }
        .footer .footer