/* ================================================================
   landing-v2.css  —  WonderWP  •  Customer-Facing Marketing
   Design: Clean SaaS • Indigo+Emerald • Modern Typography
   ================================================================ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    /* Colors */
    --navy:        #0F172A;
    --navy-2:      #1E293B;
    --indigo:      #4F46E5;
    --indigo-2:    #6366F1;
    --indigo-3:    #818CF8;
    --indigo-bg:   #EEF2FF;
    --emerald:     #10B981;
    --emerald-bg:  #ECFDF5;
    --amber:       #F59E0B;
    --rose:        #EF4444;
    --white:       #FFFFFF;
    --bg:          #FAFBFF;
    --bg-2:        #F1F5F9;
    --border:      #E2E8F0;
    --border-2:    #CBD5E1;
    --ink:         #0F172A;
    --ink-2:       #334155;
    --muted:       #64748B;
    --muted-2:     #94A3B8;

    /* Gradients */
    --grad-hero:     linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #8B5CF6 100%);
    --grad-subtle:   linear-gradient(180deg, #FAFBFF 0%, #F1F5F9 100%);
    --grad-emerald:  linear-gradient(135deg, #059669, #10B981);
    --grad-card:     linear-gradient(145deg, #ffffff 0%, #f8faff 100%);

    /* Effects */
    --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md:   0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
    --shadow-lg:   0 20px 60px rgba(15,23,42,.12), 0 8px 24px rgba(15,23,42,.06);
    --shadow-hero: 0 32px 80px rgba(79,70,229,.28);
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 999px;

    /* typography */
    --font-head:  'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body:  'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

    /* spacing */
    --section-gap: 96px;
    --container:   1160px;
    --nav-h:       72px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }


/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--navy); color: var(--white); }
.section--indigo { background: var(--indigo-bg); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: var(--indigo-bg);
    color: var(--indigo);
}
.tag--emerald { background: var(--emerald-bg); color: #059669; }
.tag--amber { background: #FFFBEB; color: #D97706; }

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--ink);
}
.section-heading--white { color: var(--white); }
.section-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 580px;
}
.section-sub--white { color: rgba(255,255,255,.75); }

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all .18s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn--primary {
    background: var(--grad-hero);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(79,70,229,.35);
}
.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(79,70,229,.45);
}
.btn--secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--border-2);
    box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
    border-color: var(--indigo-3);
    color: var(--indigo);
    background: var(--indigo-bg);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--outline {
    background: transparent;
    color: var(--indigo);
    border: 1.5px solid var(--indigo);
}
.btn--outline:hover { background: var(--indigo-bg); }
.btn--sm { font-size: 13.5px; padding: 8px 18px; }
.btn--lg { font-size: 16px; padding: 15px 32px; }


/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.v2-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(250,251,255,.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.v2-nav.is-scrolled {
    box-shadow: 0 4px 20px rgba(15,23,42,.07);
}

.v2-nav__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.v2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.v2-logo__icon {
    width: 36px;
    height: 36px;
    background: var(--grad-hero);
    border-radius: 9px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.v2-logo__icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; }
.v2-logo__text {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
}
.v2-logo__text span { color: var(--indigo); }

/* Desktop nav links */
.v2-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.v2-nav__links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    transition: color .14s, background .14s;
}
.v2-nav__links a:hover { color: var(--ink); background: var(--bg-2); }
.v2-nav__links a.active { color: var(--indigo); background: var(--indigo-bg); }

/* Nav actions */
.v2-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* Hamburger */
.v2-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
}
.v2-nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .2s;
}

/* Mobile menu */
.v2-nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}
.v2-nav__mobile.is-open { display: flex; }
.v2-nav__mobile a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: background .12s;
}
.v2-nav__mobile a:hover { background: var(--bg-2); }
.v2-nav__mobile .btn { margin-top: 8px; width: 100%; }

/* Locale switcher */
.locale-menu {
    position: relative;
}

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

.locale-menu__trigger {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 156px;
    padding: 7px 10px 7px 8px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.96));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: var(--ink);
    cursor: pointer;
    user-select: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.locale-menu__trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(99, 102, 241, 0.28);
}

.locale-menu__trigger:focus-visible {
    outline: 3px solid rgba(99, 102, 241, 0.18);
    outline-offset: 2px;
}

.locale-menu__trigger-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.locale-menu__label {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.locale-menu__chevron {
    font-size: 11px;
    color: var(--muted);
    transition: transform 0.18s ease, color 0.18s ease;
}

.locale-menu[open] .locale-menu__chevron {
    transform: rotate(180deg);
    color: var(--ink);
}

.locale-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: grid;
    gap: 6px;
    z-index: 30;
}

.locale-menu__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--ink);
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.locale-menu__item:hover {
    background: rgba(79, 70, 229, 0.08);
    transform: translateX(1px);
}

.locale-menu__item.is-active {
    background: rgba(79, 70, 229, 0.12);
}

.locale-menu__item-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.locale-menu__item-label {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
}

.locale-menu__item-meta {
    margin-top: 2px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.locale-menu__check {
    margin-left: auto;
    font-size: 15px;
    color: var(--indigo);
}

.locale-menu__flag {
    position: relative;
    width: 22px;
    height: 16px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 4px 10px rgba(15, 23, 42, 0.12);
    background: #fff;
}

.locale-menu__flag--en {
    background: linear-gradient(180deg, #b22234 0 14.28%, #ffffff 14.28% 28.56%, #b22234 28.56% 42.84%, #ffffff 42.84% 57.12%, #b22234 57.12% 71.4%, #ffffff 71.4% 85.68%, #b22234 85.68% 100%);
}

.locale-menu__flag--en::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 58%;
    background: #3c3b6e;
}

.locale-menu__flag--id {
    background: linear-gradient(180deg, #ce1126 0 50%, #ffffff 50% 100%);
}

.locale-menu__flag--zh-cn {
    background: #de2910;
}

.locale-menu__flag--zh-cn::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffde00;
}

.locale-menu__flag--zh-cn::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: #ffde00;
    box-shadow: 3px 3px 0 0 #ffde00, 1px 7px 0 0 #ffde00, -3px 9px 0 0 #ffde00;
}

.locale-menu--compact {
    width: 100%;
    margin-top: 14px;
}

.locale-menu--compact .locale-menu__trigger {
    width: 100%;
    min-width: 0;
}

.locale-menu--compact .locale-menu__panel {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
}

.v2-nav__mobile .locale-menu__item {
    padding: 10px 12px;
}


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.v2-hero {
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Decorative background grid */
.v2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
    pointer-events: none;
}

/* Glow blobs */
.v2-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.v2-hero__glow--a {
    width: 500px; height: 500px;
    background: rgba(79,70,229,.12);
    top: -100px; right: -100px;
}
.v2-hero__glow--b {
    width: 400px; height: 400px;
    background: rgba(16,185,129,.08);
    bottom: -80px; left: -80px;
}

.v2-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.v2-hero__copy { max-width: 560px; }

.v2-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--indigo);
    background: var(--indigo-bg);
    border: 1px solid rgba(79,70,229,.2);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    margin-bottom: 24px;
}
.v2-hero__eyebrow::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--indigo-2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

.v2-hero__h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 22px;
}
.v2-hero__h1 em {
    font-style: normal;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-hero__sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.v2-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.v2-hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.v2-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500;
}
.v2-hero__trust-item i { color: var(--emerald); font-size: 16px; }

/* Dashboard mockup (right side) */
.v2-hero__visual {
    position: relative;
}

.v2-dash-frame {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hero);
    position: relative;
}
.v2-dash-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--grad-hero);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: .25;
}

.v2-dash-topbar {
    background: var(--navy);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.v2-dash-dots { display: flex; gap: 6px; }
.v2-dash-dots span {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.v2-dash-dots span:nth-child(1) { background: #FF5F57; }
.v2-dash-dots span:nth-child(2) { background: #FFBD2E; }
.v2-dash-dots span:nth-child(3) { background: #28CA41; }
.v2-dash-title {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    font-family: var(--font-mono);
    flex: 1;
    text-align: center;
}

.v2-dash-body { padding: 16px; }

.v2-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.v2-dash-stat {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
}
.v2-dash-stat__label { font-size: 10.5px; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.v2-dash-stat__value { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--ink); }
.v2-dash-stat__delta {
    font-size: 11px;
    font-weight: 600;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.v2-dash-sites {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
}
.v2-dash-site-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
}
.v2-dash-site-row:last-child { border-bottom: none; }
.v2-dash-site-row__name { font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.v2-dash-site-row__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.v2-dash-site-row__dot--warn { background: var(--amber); }
.v2-dash-site-row__meta { color: var(--muted); font-size: 11px; }
.v2-dash-badge {
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: var(--emerald-bg);
    color: #059669;
}
.v2-dash-badge--warn { background: #FFFBEB; color: #D97706; }

.v2-dash-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.v2-dash-action-btn {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    transition: all .15s;
}
.v2-dash-action-btn i { display: block; font-size: 18px; color: var(--indigo-2); margin-bottom: 4px; }
.v2-dash-action-btn:hover { background: var(--indigo-bg); color: var(--indigo); border-color: var(--indigo-3); }

/* Floating cards */
.v2-hero__badge-float {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatY 3s ease-in-out infinite alternate;
}
.v2-hero__badge-float--a { bottom: -16px; left: -24px; animation-duration: 3.2s; }
.v2-hero__badge-float--b { top: 24px; right: -20px; animation-duration: 2.8s; }
.v2-hero__badge-float i { font-size: 18px; color: var(--indigo); }
.v2-hero__badge-float .check { color: var(--emerald); }
@keyframes floatY {
    from { transform: translateY(0px); }
    to   { transform: translateY(-8px); }
}


/* ══════════════════════════════════════════════════════════════
   LOGOS / TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.v2-logos {
    padding: 24px 0 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.v2-logos__label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 20px;
}
.v2-logos__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.v2-logo-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-2);
    filter: grayscale(1);
    opacity: .65;
    transition: all .18s;
}
.v2-logo-chip:hover { filter: grayscale(0); opacity: 1; color: var(--ink); }
.v2-logo-chip i { font-size: 20px; }


/* ══════════════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════════════ */
.v2-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.v2-feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.v2-feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-hero);
    opacity: 0;
    transition: opacity .2s;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.v2-feat-card:hover {
    border-color: var(--indigo-3);
    box-shadow: 0 12px 40px rgba(79,70,229,.1);
    transform: translateY(-2px);
}
.v2-feat-card:hover::before { opacity: 1; }

.v2-feat-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--indigo-bg);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--indigo);
    transition: background .2s, color .2s;
}
.v2-feat-card:hover .v2-feat-card__icon { background: var(--indigo); color: var(--white); }

.v2-feat-card__title {
    font-family: var(--font-head);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.v2-feat-card__text { font-size: 14.5px; color: var(--muted); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.v2-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}
.v2-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-2) 50%, var(--indigo-3) 100%);
    z-index: 0;
}

.v2-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.v2-step__num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--grad-hero);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(79,70,229,.3);
    position: relative;
    z-index: 2;
}
.v2-step__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.v2-step__text { font-size: 14.5px; color: var(--muted); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════
   FEATURE HIGHLIGHTS (alternating)
   ══════════════════════════════════════════════════════════════ */
.v2-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--border);
}
.v2-highlight:first-child { border-top: none; }
.v2-highlight--reverse .v2-highlight__visual { order: -1; }

.v2-highlight__text { }
.v2-highlight__text .tag { margin-bottom: 18px; }
.v2-highlight__title {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.25;
}
.v2-highlight__desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.v2-highlight__bullets { font-size: 14.5px; color: var(--ink-2); display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.v2-highlight__bullets li { display: flex; align-items: flex-start; gap: 10px; }
.v2-highlight__bullets li::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--emerald-bg);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l2.5 2.5L10 3' stroke='%2310B981' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.v2-highlight__visual {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: stretch;
}
.v2-hl-mock {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-hl-mock__bar {
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}
.v2-hl-mock__bar i { font-size: 15px; color: var(--indigo-2); }
.v2-hl-mock__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;
}
.v2-hl-mock__tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.v2-hl-mock__tile-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.v2-hl-mock__tile-value { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--ink); }
.v2-hl-mock__tile-sub { font-size: 12px; font-weight: 600; color: var(--emerald); display: flex; align-items: center; gap: 3px; }
.v2-hl-mock__list { display: flex; flex-direction: column; gap: 6px; }
.v2-hl-mock__list-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}
.v2-hl-mock__list-name { font-weight: 600; color: var(--ink); }
.v2-hl-mock__list-tag {
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    background: var(--indigo-bg);
    color: var(--indigo);
}
.v2-hl-mock__list-tag--ok { background: var(--emerald-bg); color: #059669; }


/* ══════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════ */
.v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 56px;
}
.v2-stat {
    background: var(--white);
    padding: 36px 32px;
    text-align: center;
}
.v2-stat__value {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -.04em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.v2-stat__label { font-size: 14px; color: var(--muted); font-weight: 500; }


/* ══════════════════════════════════════════════════════════════
   PRICING SECTION (on home page: teaser cards)
   ══════════════════════════════════════════════════════════════ */
.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    align-items: start;
}

.v2-plan {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: box-shadow .2s, border-color .2s;
}
.v2-plan:hover { box-shadow: var(--shadow-md); border-color: var(--indigo-3); }

.v2-plan--popular {
    border-color: var(--indigo);
    background: linear-gradient(180deg, #fafaff 0%, var(--white) 100%);
    box-shadow: 0 8px 32px rgba(79,70,229,.15);
}
.v2-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-hero);
    color: var(--white);
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: .04em;
}
.v2-plan__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.v2-plan__name { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.v2-plan__desc { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

.v2-plan__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.v2-plan__price-amount {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink);
}
.v2-plan__price-currency { font-size: 22px; font-weight: 700; color: var(--muted); align-self: flex-start; margin-top: 10px; }
.v2-plan__price-period { font-size: 14px; color: var(--muted); }

.v2-plan__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; font-size: 14px; }
.v2-plan__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-2);
}
.v2-plan__feature i { color: var(--emerald); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.v2-plan__feature--faded { color: var(--muted-2); }
.v2-plan__feature--faded i { color: var(--border-2); }

.v2-plan .btn { width: 100%; }


/* Full pricing page ─────────────────────────────── */
.v2-pricing-hero { padding: calc(var(--nav-h) + 64px) 0 64px; text-align: center; background: var(--bg); }
.v2-pricing-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -.03em; margin: 16px 0 20px; }
.v2-pricing-hero p { max-width: 540px; margin: 0 auto 0; font-size: 17px; color: var(--muted); line-height: 1.7; }

.v2-pricing-all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

/* Comparison table */
.v2-compare { margin-top: 80px; }
.v2-compare h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 32px; color: var(--ink); }
.v2-compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.v2-compare-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    background: var(--bg-2);
    border-bottom: 2px solid var(--border);
}
.v2-compare-table th:first-child { width: 40%; }
.v2-compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--ink-2); }
.v2-compare-table td:not(:first-child) { text-align: center; font-weight: 500; }
.v2-compare-table tr:nth-child(even) td { background: var(--bg); }
.v2-compare-table td .bi-check-lg { color: var(--emerald); font-size: 16px; }
.v2-compare-table td .bi-dash { color: var(--border-2); font-size: 16px; }
.v2-compare-table .cat-row td { font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); padding-top: 18px; }


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.v2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.v2-testi {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v2-testi__stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.v2-testi__text { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; font-style: italic; flex: 1; }
.v2-testi__author { display: flex; align-items: center; gap: 12px; }
.v2-testi__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-hero);
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.v2-testi__name { font-size: 14px; font-weight: 700; color: var(--ink); }
.v2-testi__role { font-size: 12.5px; color: var(--muted); }


/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.v2-faq { max-width: 720px; margin: 56px auto 0; }
.v2-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--white);
}
.v2-faq-item__q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: color .14s;
}
.v2-faq-item__q:hover { color: var(--indigo); }
.v2-faq-item__q i { flex-shrink: 0; font-size: 18px; color: var(--muted); transition: transform .2s; }
.v2-faq-item.is-open .v2-faq-item__q i { transform: rotate(180deg); color: var(--indigo); }
.v2-faq-item__a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}
.v2-faq-item.is-open .v2-faq-item__a { display: block; }


/* ══════════════════════════════════════════════════════════════
   FINAL CTA BAND
   ══════════════════════════════════════════════════════════════ */
.v2-cta-band {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 24px;
}
.v2-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(79,70,229,.35), transparent 70%);
    pointer-events: none;
}
.v2-cta-band h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.v2-cta-band p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; position: relative; }
.v2-cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }


/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.v2-about-hero { padding: calc(var(--nav-h) + 80px) 0 80px; text-align: center; }
.v2-about-hero h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; max-width: 700px; margin: 18px auto 22px; }
.v2-about-hero p { font-size: 18px; color: var(--muted); line-height: 1.75; max-width: 580px; margin: 0 auto; }

.v2-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.v2-value {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--white);
    text-align: center;
    transition: box-shadow .18s;
}
.v2-value:hover { box-shadow: var(--shadow-md); }
.v2-value__icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--indigo-bg);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--indigo);
}
.v2-value__title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.v2-value__text { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.v2-story {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 72px;
    align-items: center;
}
.v2-story__text h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px; }
.v2-story__text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.v2-story__visual {
    background: linear-gradient(145deg, var(--indigo-bg), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v2-story-stat { padding: 16px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); }
.v2-story-stat__n { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--indigo); letter-spacing: -.04em; }
.v2-story-stat__l { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* Team */
.v2-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.v2-team-card { text-align: center; }
.v2-team-card__avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--grad-hero);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(79,70,229,.25);
}
.v2-team-card__name { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.v2-team-card__role { font-size: 13px; color: var(--muted); }

.v2-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.v2-platform-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.v2-platform-card__icon {
    width: 44px;
    height: 44px;
    background: var(--indigo-bg);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--indigo);
    flex-shrink: 0;
}

.v2-platform-card__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.v2-platform-card__text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.v2-contact-hero { padding: calc(var(--nav-h) + 64px) 0 0; text-align: center; }
.v2-contact-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -.03em; margin: 16px 0 18px; }
.v2-contact-hero p { font-size: 17px; color: var(--muted); margin-bottom: 0; }

.v2-contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
    margin-top: 60px;
}

.v2-contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.v2-contact-form h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 28px; }
.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-form-group { margin-bottom: 20px; }
.v2-form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.v2-form-group label span { color: var(--rose); }
.v2-form-group input,
.v2-form-group select,
.v2-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
.v2-form-group input:focus,
.v2-form-group select:focus,
.v2-form-group textarea:focus {
    border-color: var(--indigo);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.v2-form-group textarea { resize: vertical; min-height: 130px; }

.v2-contact-info { display: flex; flex-direction: column; gap: 20px; }
.v2-contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.v2-contact-card__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--indigo-bg);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--indigo);
}
.v2-contact-card__title { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.v2-contact-card__text { font-size: 14px; color: var(--muted); line-height: 1.55; }
.v2-contact-card__text a { color: var(--indigo); text-decoration: underline; }

.v2-contact-socials {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.v2-contact-socials__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.v2-contact-socials__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.v2-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 64px 0 36px;
    margin-top: var(--section-gap);
}
.v2-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 32px;
}
.v2-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.v2-footer__logo-icon {
    width: 32px; height: 32px;
    background: var(--grad-hero);
    border-radius: 8px;
    display: grid;
    place-items: center;
}
.v2-footer__logo-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; }
.v2-footer__logo-text { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); }
.v2-footer__logo-text span { color: var(--indigo-3); }
.v2-footer__tagline { font-size: 13.5px; line-height: 1.65; margin-bottom: 20px; }
.v2-footer__socials { display: flex; gap: 10px; }
.v2-footer__social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    transition: all .15s;
}
.v2-footer__social:hover { background: rgba(255,255,255,.1); color: var(--white); }
.v2-footer__col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.v2-footer__col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
    transition: color .13s;
}
.v2-footer__col a:hover { color: var(--white); }
.v2-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.v2-footer__copy { font-size: 13px; color: rgba(255,255,255,.4); }
.v2-footer__legal { display: flex; gap: 20px; }
.v2-footer__legal a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .13s; }
.v2-footer__legal a:hover { color: rgba(255,255,255,.75); }

.v2-footer .locale-menu__trigger {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.v2-footer .locale-menu__trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.v2-footer .locale-menu__label {
    color: var(--white);
}

.v2-footer .locale-menu__chevron,
.v2-footer .locale-menu__item-meta {
    color: rgba(255, 255, 255, 0.55);
}

.v2-footer .locale-menu__panel {
    top: auto;
    bottom: calc(100% + 12px);
    background: rgba(11, 18, 32, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.v2-footer .locale-menu__item {
    color: rgba(255, 255, 255, 0.82);
}

.v2-footer .locale-menu__item:hover,
.v2-footer .locale-menu__item.is-active {
    background: rgba(255, 255, 255, 0.08);
}

/* Badge on nav */
.v2-nav__badge {
    background: var(--indigo-bg);
    color: var(--indigo);
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    letter-spacing: .04em;
}


/* ══════════════════════════════════════════════════════════════
   PAGE INTERNAL HERO STRIPE (for inner pages)
   ══════════════════════════════════════════════════════════════ */
.v2-page-hero {
    padding: calc(var(--nav-h) + 64px) 0 60px;
    background: linear-gradient(180deg, var(--indigo-bg) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.v2-page-hero h1 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin: 14px 0 18px; }
.v2-page-hero p { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }


/* ══════════════════════════════════════════════════════════════
   NOTICE BANNER
   ══════════════════════════════════════════════════════════════ */
.v2-notice {
    background: linear-gradient(90deg, var(--indigo), var(--indigo-2));
    color: var(--white);
    text-align: center;
    padding: 11px 24px;
    font-size: 13.5px;
    font-weight: 500;
}
.v2-notice a { color: rgba(255,255,255,.85); text-decoration: underline; }
.v2-notice a:hover { color: var(--white); }


/* ══════════════════════════════════════════════════════════════
   ALERTS / FLASH MESSAGES
   ══════════════════════════════════════════════════════════════ */
.v2-alert { padding: 14px 18px; border-radius: var(--radius-md); font-size: 14.5px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.v2-alert--success { background: var(--emerald-bg); color: #065F46; border: 1px solid #A7F3D0; }
.v2-alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.v2-alert i { font-size: 17px; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .v2-features { grid-template-columns: repeat(2, 1fr); }
    .v2-stats { grid-template-columns: repeat(2, 1fr); }
    .v2-values { grid-template-columns: repeat(2, 1fr); }
    .v2-platform-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-team { grid-template-columns: repeat(2, 1fr); }
    .v2-footer__grid { grid-template-columns: 1fr 1fr; }
    .v2-pricing-all { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    :root { --section-gap: 64px; }
    .v2-hero__inner { grid-template-columns: 1fr; }
    .v2-hero__visual { display: none; }
    .v2-steps { grid-template-columns: 1fr; }
    .v2-steps::before { display: none; }
    .v2-highlight { grid-template-columns: 1fr; gap: 32px; }
    .v2-highlight--reverse .v2-highlight__visual { order: 0; }
    .v2-highlight__visual { display: none; }
    .v2-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .v2-testimonials { grid-template-columns: 1fr; }
    .v2-story { grid-template-columns: 1fr; }
    .v2-contact-layout { grid-template-columns: 1fr; }
    .v2-platform-grid { grid-template-columns: 1fr; }
    .v2-nav__links { display: none; }
    .v2-nav__burger { display: flex; }
    .v2-nav__actions .btn:not(.btn--primary) { display: none; }
    .v2-nav__actions .locale-menu__trigger { min-width: 0; }
    .v2-nav__actions .locale-menu__label {
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .v2-cta-band { padding: 48px 32px; margin: 0; }
}

@media (max-width: 680px) {
    :root { --section-gap: 48px; }
    .v2-features { grid-template-columns: 1fr; }
    .v2-stats { grid-template-columns: repeat(2, 1fr); }
    .v2-pricing-all { grid-template-columns: 1fr; }
    .v2-values { grid-template-columns: 1fr; }
    .v2-team { grid-template-columns: repeat(2, 1fr); }
    .v2-footer__grid { grid-template-columns: 1fr; }
    .v2-form-row { grid-template-columns: 1fr; }
    .v2-compare-table { font-size: 13px; }
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.theme-toggle-btn:hover {
    background: var(--bg-2);
    border-color: var(--border-2);
    transform: translateY(-1px);
}

.theme-toggle-btn__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

html[data-bs-theme='dark'] {
    --bg: #081121;
    --bg-2: #101b31;
    --border: #22314d;
    --border-2: #33466a;
    --ink: #e5eefc;
    --ink-2: #c8d5eb;
    --muted: #9fb0ca;
    --muted-2: #6e82a3;
    --indigo-bg: rgba(99, 102, 241, 0.16);
    color-scheme: dark;
}

html[data-bs-theme='dark'] body {
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.22), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(16, 185, 129, 0.14), transparent 24%),
        linear-gradient(180deg, #081121 0%, #091425 52%, #07101f 100%);
    color: var(--ink);
}

html[data-bs-theme='dark'] .v2-nav,
html[data-bs-theme='dark'] .v2-nav__mobile,
html[data-bs-theme='dark'] .locale-menu__trigger,
html[data-bs-theme='dark'] .locale-menu__panel,
html[data-bs-theme='dark'] .theme-toggle-btn,
html[data-bs-theme='dark'] .btn--secondary,
html[data-bs-theme='dark'] .legal-body,
html[data-bs-theme='dark'] .notice,
html[data-bs-theme='dark'] .v2-contact-card,
html[data-bs-theme='dark'] .v2-form-group input,
html[data-bs-theme='dark'] .v2-form-group select,
html[data-bs-theme='dark'] .v2-form-group textarea {
    background: rgba(10, 18, 34, 0.88);
    color: var(--ink);
    border-color: var(--border);
}

html[data-bs-theme='dark'] .v2-nav {
    border-bottom-color: var(--border);
}

html[data-bs-theme='dark'] .v2-nav.is-scrolled {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

html[data-bs-theme='dark'] .locale-menu__trigger:hover {
    background: rgba(14, 24, 43, 0.96);
}

html[data-bs-theme='dark'] .locale-menu__item:hover,
html[data-bs-theme='dark'] .locale-menu__item.is-active {
    background: rgba(99, 102, 241, 0.18);
}

html[data-bs-theme='dark'] .locale-menu__item-meta,
html[data-bs-theme='dark'] .locale-menu__chevron {
    color: var(--muted);
}

html[data-bs-theme='dark'] .v2-nav__links a:hover,
html[data-bs-theme='dark'] .v2-nav__links a.active {
    background: rgba(99, 102, 241, 0.16);
}

html[data-bs-theme='dark'] .btn--secondary:hover,
html[data-bs-theme='dark'] .theme-toggle-btn:hover {
    background: rgba(99, 102, 241, 0.16);
    color: #dbeafe;
    border-color: rgba(129, 140, 248, 0.4);
}

html[data-bs-theme='dark'] .btn--ghost {
    color: var(--ink);
    border-color: rgba(159, 176, 202, 0.34);
}

html[data-bs-theme='dark'] .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(159, 176, 202, 0.56);
}

html[data-bs-theme='dark'] .v2-nav__burger span {
    background: var(--ink);
}

html[data-bs-theme='dark'] .v2-footer {
    background: #060d19;
}

html[data-bs-theme='dark'] .v2-hero::before {
    background-image:
        linear-gradient(rgba(129, 140, 248, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 140, 248, 0.08) 1px, transparent 1px);
}

html[data-bs-theme='dark'] .v2-dash-frame,
html[data-bs-theme='dark'] .v2-hero__badge-float,
html[data-bs-theme='dark'] .v2-logos,
html[data-bs-theme='dark'] .v2-feat-card,
html[data-bs-theme='dark'] .v2-highlight__visual,
html[data-bs-theme='dark'] .v2-hl-mock__bar,
html[data-bs-theme='dark'] .v2-hl-mock__tile,
html[data-bs-theme='dark'] .v2-hl-mock__list-item,
html[data-bs-theme='dark'] .v2-stat,
html[data-bs-theme='dark'] .v2-plan,
html[data-bs-theme='dark'] .v2-testi,
html[data-bs-theme='dark'] .v2-faq-item,
html[data-bs-theme='dark'] .v2-value,
html[data-bs-theme='dark'] .v2-story-stat,
html[data-bs-theme='dark'] .v2-platform-card,
html[data-bs-theme='dark'] .v2-contact-form {
    background: linear-gradient(180deg, rgba(13, 23, 42, 0.96) 0%, rgba(10, 18, 34, 0.98) 100%);
    border-color: var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme='dark'] .v2-dash-frame::before {
    opacity: 0.38;
}

html[data-bs-theme='dark'] .v2-dash-topbar {
    background: #050b16;
}

html[data-bs-theme='dark'] .v2-dash-stat,
html[data-bs-theme='dark'] .v2-dash-action-btn,
html[data-bs-theme='dark'] .v2-dash-sites {
    background: rgba(17, 27, 46, 0.94);
    border-color: #2a3a59;
}

html[data-bs-theme='dark'] .v2-dash-site-row {
    background: rgba(11, 19, 35, 0.88);
    border-bottom-color: #243652;
}

html[data-bs-theme='dark'] .v2-dash-site-row__name,
html[data-bs-theme='dark'] .v2-dash-stat__value,
html[data-bs-theme='dark'] .v2-dash-action-btn {
    color: var(--ink);
}

html[data-bs-theme='dark'] .v2-dash-stat__label,
html[data-bs-theme='dark'] .v2-dash-title,
html[data-bs-theme='dark'] .v2-dash-action-btn i,
html[data-bs-theme='dark'] .v2-dash-site-row__meta,
html[data-bs-theme='dark'] .v2-logo-chip,
html[data-bs-theme='dark'] .section-sub,
html[data-bs-theme='dark'] .v2-feat-card__text,
html[data-bs-theme='dark'] .v2-highlight__desc,
html[data-bs-theme='dark'] .v2-stat__label,
html[data-bs-theme='dark'] .v2-plan__label,
html[data-bs-theme='dark'] .v2-plan__desc,
html[data-bs-theme='dark'] .v2-plan__price-currency,
html[data-bs-theme='dark'] .v2-plan__price-period,
html[data-bs-theme='dark'] .v2-testi__role,
html[data-bs-theme='dark'] .v2-faq-item__a,
html[data-bs-theme='dark'] .v2-story__text p,
html[data-bs-theme='dark'] .v2-story-stat__l,
html[data-bs-theme='dark'] .v2-value__text,
html[data-bs-theme='dark'] .v2-team-card__role,
html[data-bs-theme='dark'] .v2-platform-card__text,
html[data-bs-theme='dark'] .v2-contact-card__text,
html[data-bs-theme='dark'] .v2-contact-socials__label,
html[data-bs-theme='dark'] .v2-about-hero p,
html[data-bs-theme='dark'] .v2-contact-hero p {
    color: var(--muted);
}

html[data-bs-theme='dark'] .v2-hero__badge-float,
html[data-bs-theme='dark'] .v2-logos__label,
html[data-bs-theme='dark'] .v2-hl-mock__tile-label,
html[data-bs-theme='dark'] .v2-plan__feature--faded,
html[data-bs-theme='dark'] .v2-dash-title {
    color: var(--muted-2);
}

html[data-bs-theme='dark'] .v2-logo-chip:hover {
    color: var(--ink);
}

html[data-bs-theme='dark'] .v2-feat-card:hover,
html[data-bs-theme='dark'] .v2-plan:hover,
html[data-bs-theme='dark'] .v2-testi:hover {
    border-color: rgba(129, 140, 248, 0.48);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

html[data-bs-theme='dark'] .v2-feat-card__title,
html[data-bs-theme='dark'] .v2-highlight__title,
html[data-bs-theme='dark'] .v2-hl-mock__tile-value,
html[data-bs-theme='dark'] .v2-hl-mock__list-name,
html[data-bs-theme='dark'] .v2-plan__name,
html[data-bs-theme='dark'] .v2-plan__price-amount,
html[data-bs-theme='dark'] .v2-testi__name,
html[data-bs-theme='dark'] .v2-faq-item__q,
html[data-bs-theme='dark'] .section-heading,
html[data-bs-theme='dark'] .v2-story__text h2,
html[data-bs-theme='dark'] .v2-value__title,
html[data-bs-theme='dark'] .v2-platform-card__title,
html[data-bs-theme='dark'] .v2-contact-form h2,
html[data-bs-theme='dark'] .v2-contact-card__title,
html[data-bs-theme='dark'] .v2-about-hero h1,
html[data-bs-theme='dark'] .v2-contact-hero h1 {
    color: var(--ink);
}

html[data-bs-theme='dark'] .v2-story__visual,
html[data-bs-theme='dark'] .v2-contact-card {
    background: linear-gradient(180deg, rgba(15, 24, 43, 0.96) 0%, rgba(11, 19, 35, 0.98) 100%);
    border-color: #2b3b58;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

html[data-bs-theme='dark'] .v2-platform-card__icon,
html[data-bs-theme='dark'] .v2-value__icon,
html[data-bs-theme='dark'] .v2-contact-card__icon {
    background: rgba(99, 102, 241, 0.16);
    color: #a5b4fc;
}

html[data-bs-theme='dark'] .v2-contact-card__text a,
html[data-bs-theme='dark'] .v2-contact-form a,
html[data-bs-theme='dark'] .v2-faq-item__a a {
    color: #a5b4fc;
}

html[data-bs-theme='dark'] .v2-form-group label {
    color: var(--ink-2);
}

html[data-bs-theme='dark'] .v2-contact-socials {
    border-top-color: #22314d;
}

html[data-bs-theme='dark'] .v2-highlight {
    border-top-color: #21314c;
}

html[data-bs-theme='dark'] .v2-highlight__bullets,
html[data-bs-theme='dark'] .v2-plan__feature,
html[data-bs-theme='dark'] .v2-testi__text {
    color: var(--ink-2);
}

html[data-bs-theme='dark'] .v2-hl-mock__bar,
html[data-bs-theme='dark'] .v2-hl-mock__tile,
html[data-bs-theme='dark'] .v2-hl-mock__list-item {
    background: rgba(15, 24, 43, 0.92);
    border-color: #2c3d5d;
}

html[data-bs-theme='dark'] .v2-hl-mock__list-tag {
    background: rgba(99, 102, 241, 0.18);
    color: #c7d2fe;
}

html[data-bs-theme='dark'] .v2-hl-mock__list-tag--ok,
html[data-bs-theme='dark'] .v2-dash-badge {
    background: rgba(16, 185, 129, 0.14);
    color: #6ee7b7;
}

html[data-bs-theme='dark'] .v2-dash-badge--warn {
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
}

html[data-bs-theme='dark'] .v2-stats {
    background: #1d2b44;
    border-color: #22314d;
}

html[data-bs-theme='dark'] .v2-plan--popular {
    background: linear-gradient(180deg, rgba(29, 39, 72, 0.96) 0%, rgba(10, 18, 34, 0.98) 100%);
    border-color: rgba(129, 140, 248, 0.62);
    box-shadow: 0 18px 48px rgba(60, 72, 140, 0.32);
}

html[data-bs-theme='dark'] .v2-plan__price {
    border-bottom-color: #22314d;
}

html[data-bs-theme='dark'] .v2-plan__feature--faded i {
    color: #536985;
}

html[data-bs-theme='dark'] .v2-faq-item__q i {
    color: var(--muted-2);
}

html[data-bs-theme='dark'] .v2-faq-item__q:hover,
html[data-bs-theme='dark'] .v2-faq-item.is-open .v2-faq-item__q i {
    color: #c7d2fe;
}

html[data-bs-theme='dark'] .v2-faq-item__a {
    border-top-color: #22314d;
}

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

    .theme-toggle-btn {
        padding: 10px;
    }
}
