/* ================================================
   Partnerwise Landing — Exact replica of reference
   Sky-blue hero · white navbar · cycling word
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
    --ocean:     #d3d9db;
    --ink:       #0F172A;
    --ink-2:     #1E293B;
    --gray-600:  #4B5563;
    --gray-400:  #9CA3AF;
    --border:    #E5E7EB;
    --white:     #FFFFFF;
    --blue:      #2563EB;
    --radius:    8px;
    --pill:      9999px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Page enter overlay ─────────────────────────── */
#pt {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 9999; pointer-events: none;
    opacity: 1; transition: opacity 0.35s ease;
}
#pt.pt-hidden { opacity: 0; }

/* ─────────────────────────────────────────────────
   NAVBAR  — white background, always visible
───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 8px;
}
.nav__logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--ink); background: #F9FAFB; }
.nav__auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav__login {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--pill);
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, background 0.15s;
}
.nav__login:hover { background: #F9FAFB; border-color: #D1D5DB; }
.nav__signup {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: var(--pill);
    background: transparent;
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, background 0.15s;
}
.nav__signup:hover { background: #F9FAFB; border-color: #D1D5DB; }

/* ─────────────────────────────────────────────────
   HERO  — map full-width, content fades in from left
───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 72px;
    background: var(--ocean);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Left content pane — gradient fades right-to-transparent so map bleeds through */
.hero__content {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 60%;
    padding: 88px 64px 88px max(64px, calc((100vw - 1200px) / 2 + 40px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* left: opaque white → right: ocean colour → fully transparent edge */
    background: linear-gradient(
        to right,
        #ffffff        0%,
        #ffffff       66%,
        rgba(211,217,219,0.88) 80%,
        rgba(211,217,219,0.30) 93%,
        rgba(211,217,219,0.0) 100%
    );
}

/* Badge pill — hidden */
.hero__badge {
    display: none;
}

/* Glassy eyebrow */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    width: fit-content;
    background: rgba(255,255,255,0.48);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(220,225,235,0.55);
    border-radius: 9999px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.75);
    letter-spacing: 0.01em;
}

/* Headline */
.hero__h1 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 14px;
}

/* Animated marker highlight */
.hero__highlight {
    position: relative;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 7px;
}
.hero__highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blue);
    border-radius: 7px;
    clip-path: inset(0 100% 0 0 round 7px);
    animation: highlight-grow 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
    z-index: -1;
}
@keyframes highlight-grow {
    to { clip-path: inset(0 0% 0 0 round 7px); }
}

/* Sub heading */
.hero__sub {
    font-size: 15px;
    line-height: 1.65;
    color: #4B5563;
    margin-bottom: 28px;
    max-width: 480px;
    font-weight: 400;
}

/* Subtext (legacy) */
.hero__lead {
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 28px;
    font-weight: 400;
}

/* Hero search bar */
.hero__searchbar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--pill);
    box-shadow: 0 4px 24px rgba(0,0,0,0.14);
    border: 1px solid var(--border);
    overflow: visible;
    margin-bottom: 32px;
    max-width: 540px;
    position: relative;
}
.hero__sb-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    flex: 1;
    position: relative;
    min-width: 0;
}
.hero__sb-field input,
.hero__sb-field select {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    width: 100%;
    padding: 22px 0;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
}
.hero__sb-field select {
    color: var(--gray-400);
}
.hero__sb-field select { cursor: pointer; }
.hero__sb-field input::placeholder { color: var(--gray-400); }
.hero__sb-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
}
.hero__sb-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--ink);
    border: none;
    padding: 10px 20px 10px 18px;
    border-radius: var(--pill);
    margin: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    font-family: inherit;
}
.hero__sb-btn:hover { background: var(--ink-2); }

/* Country autocomplete dropdown */
.hero__sb-country-drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    z-index: 300;
    display: none;
    overflow: hidden;
}
.hero__sb-country-drop.open { display: block; }
.hero__sb-country-drop li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.1s;
}
.hero__sb-country-drop li:hover { background: #F8FAFC; }

/* Keep btn-dark and btn-hero-outline for CTA section */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--ink);
    text-decoration: none;
    padding: 11px 24px;
    border-radius: var(--pill);
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap;
}
.btn-dark:hover { background: #1a2744; transform: translateY(-1px); }
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: transparent;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: var(--pill);
    border: 1.5px solid rgba(255,255,255,0.55);
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    white-space: nowrap;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-1px);
}

/* Checkmark trust list */
.hero__checks {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
    max-width: 540px;
}
.hero__checks li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}
.hero__check-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(219,234,254,0.38);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

/* Pill for selected search values */
.hero__sb-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #EFF6FF;
    color: #1D4ED8;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 5px 3px 10px;
    border-radius: var(--pill);
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
}
.hero__sb-pill > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero__sb-pill-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    border: none;
    background: rgba(29,78,216,0.12);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    color: #1D4ED8;
    flex-shrink: 0;
    transition: background 0.15s;
    font-family: inherit;
}
.hero__sb-pill-clear:hover { background: rgba(29,78,216,0.22); }

/* Map pane — full width, sits behind the fading content overlay */
.hero__map-side {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
}
#heroMap {
    width: 100%;
    height: 100%;
}

/* Landing page hover card */
#landingHoverCard {
    position: fixed;
    z-index: 9000;
    display: none;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    width: 260px;
    overflow: hidden;
    font-family: 'Inter', 'Satoshi', sans-serif;
}
.lhc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 8px;
    border-bottom: 1px solid var(--border);
}
.lhc-flag {
    width: 28px; height: 19px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.lhc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.lhc-rows {
    padding: 8px 14px;
}
.lhc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 12px;
}
.lhc-row span { color: var(--gray-400); }
.lhc-row b { color: var(--ink); font-weight: 600; }
.lhc-footer {
    border-top: 1px solid var(--border);
    padding: 8px 14px;
}
.lhc-footer a {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}
.lhc-footer a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────
   TRUSTED BAR
───────────────────────────────────────────────── */
.trusted-bar {
    background: var(--white);
    padding: 28px 32px;
    text-align: center;
}
.trusted-bar__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.trusted-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trusted-bar__logos span {
    font-size: 15px;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-style: italic;
}

/* ─────────────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────────────── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}
.section-heading {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1) calc(var(--i,0) * 80ms),
                transform 0.55s cubic-bezier(0.22,1,0.36,1) calc(var(--i,0) * 80ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────
   VALUE STRIP
───────────────────────────────────────────────── */
.value-strip {
    display: none;
}
.value-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #EFF6FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.value-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.value-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────── */
.hiw {
    background: var(--white);
    padding: 96px 32px;
}
.hiw__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hiw__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 52px;
    justify-content: center;
}
.hiw__step {
    flex: 1;
    max-width: 240px;
    text-align: left;
    padding: 0 8px;
}
.hiw__step-num {
    font-size: 36px;
    font-weight: 900;
    color: #E5E7EB;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
}
.hiw__step-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.hiw__step-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}
.hiw__connector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 16px;
    color: #D1D5DB;
    flex-shrink: 0;
}
.hiw__connector-line {
    height: 1px;
    width: 32px;
    background: #E5E7EB;
}

/* ─────────────────────────────────────────────────
   METRICS BAR
───────────────────────────────────────────────── */
.metrics-bar {
    background: #F1F5F9;
    padding: 52px 32px;
}
.metrics-bar__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.metric-stat {
    text-align: center;
    padding: 0 48px;
}
.metric-stat__num {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.metric-stat__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.metric-stat__div {
    width: 1px;
    height: 40px;
    background: #D1D5DB;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   FEATURES — accordion
───────────────────────────────────────────────── */
.features-grid {
    background: #F8FAFC;
    padding: 96px 32px;
}
.features-grid__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.acc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}
.acc-features__left { display: flex; flex-direction: column; gap: 2px; }
.acc-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}
.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.acc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    transition: color 0.15s;
}
.acc-item.is-open .acc-title { color: var(--ink); }
.acc-chevron {
    color: #9CA3AF;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.acc-item.is-open .acc-chevron { transform: rotate(180deg); color: var(--ink); }
.acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-inner p {
    padding: 0 0 16px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}
.acc-features__right { position: sticky; top: 90px; }
.acc-visual {
    display: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e3e4e8;
    box-shadow: rgba(17,26,74,0.05) 0px 0px 0px 1px, rgba(0,0,0,0.08) 0px 1px 4px 0px;
    min-height: 420px;
    flex-direction: column;
}
.acc-visual.is-active { display: flex; }

/* Feature visual internals — Column-inspired */

/* Consistent panel header */
.fv-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #e3e4e8;
    flex-shrink: 0;
}
.fv-head__label { font-size: 12px; font-weight: 700; color: var(--ink); }
.fv-head__pill {
    font-size: 11px; font-weight: 600;
    background: #EFF6FF; color: var(--blue);
    padding: 3px 8px; border-radius: 9999px;
}
.fv-head__status { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 9999px; }
.fv-status--up { background: #F0FDF4; color: #16A34A; }

/* Leaflet mini-map (fv-1) */
.fv-map-mini { height: 200px; flex-shrink: 0; z-index: 0; }

/* Map zone with dot-grid (fv-1) */
.fv-map-zone { position: relative; flex-shrink: 0; }
.fv-dotgrid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image: radial-gradient(circle, #c7cad0 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.5;
}
.fv-map-img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* Shared row list */
.fv-rows { flex: 1; display: flex; flex-direction: column; }
.fv-row {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    border-bottom: 1px solid #f6f6f8;
}
.fv-row:last-child { border-bottom: none; }
.fv-row__rank { font-size: 10px; font-weight: 700; color: #9CA3AF; width: 20px; flex-shrink: 0; letter-spacing: 0.04em; }
.fv-row__flag { font-size: 15px; flex-shrink: 0; }
.fv-flag-img { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.fv-row__name { flex: 1; font-size: 13px; font-weight: 500; color: var(--ink); }
.fv-row__bar { flex: 1; max-width: 72px; height: 4px; background: #F1F5F9; border-radius: 2px; overflow: hidden; }
.fv-row__bar span { display: block; height: 100%; background: var(--blue); border-radius: 2px; }
.fv-row__val { font-size: 12px; font-weight: 700; color: var(--ink); width: 24px; text-align: right; }

/* Rankings table (fv-2) */
.fv-table { flex: 1; display: flex; flex-direction: column; }
.fv-table__head {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    background: #f6f6f8; border-bottom: 1px solid #e3e4e8;
}
.fv-th { font-size: 10px; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.08em; }
.fv-th--rank { width: 20px; flex-shrink: 0; }
.fv-th--country { flex: 1; }
.fv-th--right { margin-left: auto; }
.fv-table__body { flex: 1; }
.fv-tr { display: flex; align-items: center; gap: 10px; padding: 11px 20px; border-bottom: 1px solid #f6f6f8; }
.fv-tr:last-child { border-bottom: none; }
.fv-td { font-size: 13px; color: var(--ink); }
.fv-td--rank { font-size: 10px; font-weight: 700; color: #9CA3AF; width: 20px; flex-shrink: 0; }
.fv-td--country { display: flex; align-items: center; gap: 8px; flex: 1; font-weight: 500; }
.fv-flag { font-size: 15px; }
.fv-td--bar { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Country comparison (fv-3) */
.fv-cmp-cols { flex: 1; display: flex; gap: 10px; padding: 20px; }
.fv-cmp-col {
    flex: 1; border: 1px solid #e3e4e8; border-radius: 8px;
    overflow: hidden; display: flex; flex-direction: column; position: relative;
}
.fv-cmp-col--win { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.fv-cmp-win-badge {
    background: var(--blue); color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 3px 0; text-align: center;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.fv-cmp-country {
    background: #f6f6f8; text-align: center;
    padding: 12px 8px 8px;
    border-bottom: 1px solid #e3e4e8; line-height: 1.4;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.fv-cmp-flag { width: 32px; height: 21px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.fv-cmp-country span { font-size: 12px; font-weight: 600; color: var(--ink); display: block; }
.fv-cmp-cell {
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 6px; border-bottom: 1px solid #f6f6f8; flex: 1;
}
.fv-cmp-cell:last-child { border-bottom: none; }
.fv-cmp-metric { font-size: 9px; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.fv-cmp-cell > span:last-child { font-size: 13px; font-weight: 600; color: var(--ink); }
.fv-cmp-col--win .fv-cmp-cell > span:last-child { color: var(--blue); }

/* Market profile (fv-4) */
.fv-profile { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.fv-profile__hdr {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px; border-bottom: 1px solid #e3e4e8;
}
.fv-profile__flag { font-size: 30px; line-height: 1; }
.fv-profile__flag-img { width: 40px; height: 27px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.fv-profile__name { font-size: 15px; font-weight: 700; color: var(--ink); }
.fv-profile__sub { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.fv-profile__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.fv-metric { background: #f6f6f8; border-radius: 8px; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.fv-metric__label { font-size: 11px; color: #9CA3AF; font-weight: 500; }
.fv-metric__val { font-size: 14px; font-weight: 700; color: var(--ink); }
.fv-up { color: #16A34A; font-size: 11px; }

/* Shortlist (fv-5) */
.fv-sl { flex: 1; display: flex; flex-direction: column; }
.fv-sl__row { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-bottom: 1px solid #f6f6f8; }
.fv-sl__row:last-child { border-bottom: none; }
.fv-sl__flag { font-size: 15px; flex-shrink: 0; }
.fv-sl__name { flex: 1; font-size: 13px; font-weight: 500; color: var(--ink); }
.fv-sl__score { font-size: 12px; font-weight: 700; color: var(--ink); }
.fv-export {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600; color: #4B5563;
    background: #f6f6f8; border: 1px solid #e3e4e8;
    padding: 5px 10px; border-radius: 6px; cursor: pointer; font-family: inherit;
}
.fv-hint { font-size: 11px; color: #9CA3AF; padding: 12px 20px; border-top: 1px solid #f6f6f8; }

/* Data sources (fv-6) */
.fv-sources { flex: 1; display: flex; flex-direction: column; }
.fv-source { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid #f6f6f8; }
.fv-source:last-child { border-bottom: none; }
.fv-src-badge {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; color: white; flex-shrink: 0;
}
.fv-src-badge--wb  { background: #0058a3; }
.fv-src-badge--itc { background: #c0392b; }
.fv-src-badge--gt  { background: #4285F4; }
.fv-src-info { flex: 1; }
.fv-src-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.fv-src-desc { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.fv-src-url { font-size: 10px; color: #9CA3AF; margin-top: 2px; }
.fv-src-tag {
    font-size: 10px; font-weight: 600; color: #6B7280;
    background: #f6f6f8; border: 1px solid #e3e4e8;
    padding: 2px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   SECTORS — expand-collapse carousel
───────────────────────────────────────────────── */
.sectors {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}
.sectors__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    margin-bottom: 36px;
}

/* Carousel track */
.sectors__carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px max(32px, calc((100vw - 1100px) / 2 + 32px)) 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
}
.sectors__carousel::-webkit-scrollbar { display: none; }

/* Card base — strip state */
.sector-card {
    flex: 0 0 80px;          /* strip width — must match JS STRIP_W */
    height: 300px;
    border-radius: 14px;
    background: #EEF2F7;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        flex-basis 0.52s cubic-bezier(0.4, 0, 0.2, 1),
        background  0.3s ease,
        border-color 0.3s ease,
        box-shadow  0.3s ease;
}
.sector-card:hover:not(.sector-card--active) {
    background: #E2E8F0;
    border-color: #CBD5E1;
}

/* Card — active/expanded state */
.sector-card--active {
    flex: 0 0 560px;         /* expanded width — must match JS ACTIVE_W */
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 12px 36px rgba(37,99,235,0.28);
    cursor: default;
}

/* ── Strip view (inactive) ── */
.sector-card__strip {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 22px;
    opacity: 1;
    transition: opacity 0.18s ease;
}
.sector-card--active .sector-card__strip {
    opacity: 0;
    pointer-events: none;
}
.sector-strip__num {
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.06em;
}
.sector-strip__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    overflow: hidden;
    max-height: 200px;
    text-overflow: ellipsis;
}

/* ── Expanded (full) view ── */
.sector-card__full {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease 0.22s;
}
.sector-card--active .sector-card__full {
    opacity: 1;
    pointer-events: auto;
}

/* Left column */
.sector-card__left {
    flex: 1;
    min-width: 0;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sector-card__hdr {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sector-active__num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.sector-active__sep {
    width: 1.5px;
    height: 18px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    flex-shrink: 0;
}
.sector-active__title {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sector-active__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    flex: 1;
}
.sector-card__btns {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.sector-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.16);
    border: none;
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    white-space: nowrap;
}
.sector-nav-btn:hover { background: rgba(255,255,255,0.28); }

/* Right column — icon box */
.sector-card__right {
    width: 190px;
    flex-shrink: 0;
    padding: 24px 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-icon-box {
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-icon-big {
    font-size: 72px;
    line-height: 1;
    color: #fff;
    display: block;
}

/* ─────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────── */
.pricing {
    background: #F8FAFC;
    padding: 96px 32px;
}
.pricing__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.pricing__sub {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 52px;
}
.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}
.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}
.price-card--featured {
    border-color: var(--ink);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    position: relative;
}
.price-card__badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--ink); color: var(--white);
    padding: 4px 14px; border-radius: var(--pill);
    white-space: nowrap;
}
.price-card__header { margin-bottom: 20px; }
.price-card__plan { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.price-card__price { display: flex; align-items: baseline; gap: 2px; margin-top: 8px; }
.price-amount { font-size: 38px; font-weight: 900; color: var(--ink); letter-spacing: -0.04em; }
.price-period { font-size: 14px; color: var(--gray-400); }
.price-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.price-card__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--ink);
}
.price-card__feat-off { color: var(--gray-400); }
.btn-price {
    width: 100%;
    padding: 11px 0;
    border-radius: var(--pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s, transform 0.15s;
}
.btn-price--primary { background: var(--ink); color: var(--white); }
.btn-price--primary:hover { background: var(--ink-2); }
.btn-price--outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink);
}
.btn-price--outline:hover { background: #F8FAFC; }

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq {
    background: #F8FAFC;
    padding: 96px 32px;
}
.faq__inner {
    max-width: 720px;
    margin: 0 auto;
}
.faq__list { margin-top: 48px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    transition: color 0.15s;
}
.faq__trigger:hover { color: var(--blue); }
.faq__chevron {
    flex-shrink: 0;
    color: #9CA3AF;
    transition: transform 0.25s;
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); color: var(--ink); }
.faq__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__body-inner { overflow: hidden; }
.faq__body-inner p {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 640px;
}

/* ─────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────── */
.final-cta {
    background: #0D1B4B;
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/map.svg') center/cover no-repeat;
    opacity: 0.10;
    z-index: 0;
}
.final-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.final-cta__inner h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.final-cta__inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
    background: #0D1B4B;
    padding: 40px 32px;
}
.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__brand {
    display: flex;
    align-items: center;
}
.footer__logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    /* invert to white for dark footer */
    filter: brightness(0) invert(1);
    opacity: 0.75;
}
.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.15s;
}
.footer__links a:hover { color: rgba(255,255,255,0.85); }
.footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero__content { width: 100%; padding: 72px 32px; }
    .hero__map-side { display: none; }
    .hero__searchbar { max-width: 100%; }
    .value-strip__inner { grid-template-columns: 1fr; gap: 28px; }
    .acc-features { grid-template-columns: 1fr; }
    .acc-features__right { display: none; }
    .pricing__cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .hiw__steps { flex-direction: column; align-items: flex-start; }
    .hiw__connector { transform: rotate(90deg); margin: 4px 0; }
    .nav__links { display: none; }
    .metrics-bar__inner { flex-wrap: wrap; gap: 32px; }
    .metric-stat__div { display: none; }
}

/* ─────────────────────────────────────────────────
   NAV — waitlist button
───────────────────────────────────────────────── */
.nav__waitlist {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: var(--pill);
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.nav__waitlist:hover {
    background: var(--ink-2);
    border-color: var(--ink-2);
}

/* ─────────────────────────────────────────────────
   WAITLIST MODAL
───────────────────────────────────────────────── */
.wl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.wl-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.wl-modal {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.22s ease;
    overflow: hidden;
}
.wl-overlay.open .wl-modal {
    transform: translateY(0) scale(1);
}
.wl-body, .wl-success {
    padding: 36px 32px 32px;
}
.wl-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: background 0.12s, color 0.12s;
    z-index: 1;
}
.wl-close:hover { background: #F3F4F6; color: var(--ink); }

.wl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.wl-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
}
.wl-sub {
    font-size: 13.5px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}
.wl-form { display: flex; flex-direction: column; gap: 14px; }
.wl-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wl-field { display: flex; flex-direction: column; gap: 5px; }
.wl-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
}
.wl-label-opt {
    font-weight: 400;
    color: var(--gray-400);
}
.wl-req { color: #EF4444; }
.wl-input {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--ink);
    background: white;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.wl-input::placeholder { color: var(--gray-400); }
.wl-input:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.wl-input--err { border-color: #EF4444 !important; }
.wl-textarea { resize: vertical; min-height: 72px; }
.wl-err {
    font-size: 11.5px;
    color: #EF4444;
    display: none;
}
.wl-submit {
    width: 100%;
    padding: 11px;
    border-radius: var(--pill);
    background: var(--ink);
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}
.wl-submit:hover:not(:disabled) { background: var(--ink-2); }
.wl-submit:active:not(:disabled) { transform: scale(0.99); }
.wl-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.wl-submit--outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
}
.wl-submit--outline:hover { background: #F9FAFB; }
.wl-spinner {
    animation: wlSpin 0.7s linear infinite;
}
@keyframes wlSpin { to { transform: rotate(360deg); } }
.wl-privacy {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--gray-400);
    justify-content: center;
}

/* success state */
.wl-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 48px 32px 40px;
}
.wl-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.wl-success .wl-sub { margin-bottom: 28px; }
.wl-success .wl-submit { max-width: 180px; }

@media (max-width: 480px) {
    .wl-row { grid-template-columns: 1fr; }
    .wl-body, .wl-success { padding: 28px 20px 24px; }
    .nav__waitlist { display: none; }
}
