/* Monezzi — design system */
:root {
  --bg: #F8FAFC;
  --bg-elev: #FFFFFF;
  --bg-soft: #EEF2F8;
  --ink: #0B1220;
  --ink-2: #1F2937;
  --muted: #5B6577;
  --line: #E4E9F0;
  --line-strong: #CFD7E3;
  --primary: #2563EB;
  --primary-ink: #1D4ED8;
  --primary-soft: #DBEAFE;
  --accent: #FCA5A5;
  --accent-soft: #FFE4E4;
  --success: #10B981;
  --warning: #F59E0B;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,0.04), 0 1px 1px rgba(11,18,32,0.03);
  --shadow: 0 4px 14px rgba(11,18,32,0.06), 0 1px 2px rgba(11,18,32,0.04);
  --shadow-lg: 0 24px 48px -12px rgba(11,18,32,0.12), 0 6px 16px rgba(11,18,32,0.06);

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;

  --pad-x: clamp(20px, 4vw, 64px);
  --gap: 20px;
}

[data-density="compact"] {
  --gap: 14px;
}
[data-density="spacious"] {
  --gap: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}
/* RTL — Inter has no Arabic glyphs so the browser falls back to the
   OS default (which renders Arabic poorly with combining marks +
   negative letter-spacing). Put Tajawal FIRST so Arabic uses it
   directly. Override --font-display the same way so every h1/h2/h3/h4
   on RTL pages picks Tajawal too. Also zero out the Latin-tuned negative
   letter-spacing — it breaks Arabic letter connections (kashida). */
html[dir="rtl"] {
    --font-display: "Tajawal", "Inter", system-ui, sans-serif;
}
html[dir="rtl"] body { font-family: "Tajawal", "Inter", system-ui, sans-serif; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 { letter-spacing: 0; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* Type scale */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(40px, 5.4vw, 72px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0; color: var(--ink-2); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 14px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover { background: var(--primary-ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-link {
  background: none; border: none; padding: 0; color: var(--primary-ink);
  font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px;
}
.btn-link:hover { text-decoration: underline; }
.btn-lg { padding: 14px 24px; font-size: 16px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(140deg, var(--primary) 0%, #60A5FA 100%);
  display: inline-grid; place-items: center;
  color: white; font-weight: 800; font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14.5px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px; color: var(--ink-2); font-weight: 500;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links a.active { color: var(--primary-ink); }

/* Resources dropdown — mirrors lang switcher (hover + :focus-within reveal).
   Trigger looks identical to other nav-links so the menu reads as a peer
   item. Active state when current path is under any Resources page. */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: inline-flex; align-items: center;
    padding: 8px 14px; border-radius: 8px;
    background: transparent; border: 0; cursor: pointer;
    color: var(--ink-2); font-weight: 500; font-size: 14.5px;
    font-family: inherit; line-height: 1;
}
.nav-dropdown-trigger:hover { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown.active > .nav-dropdown-trigger { color: var(--primary-ink); }
.nav-dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 4px); inset-inline-start: 0;
    min-width: 220px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 6px;
    z-index: 50;
}
/* Invisible bridge over the 4px visual gap so mouse can traverse from the
   trigger button to the menu without leaving the .nav-dropdown hover area.
   Without this the menu collapses mid-traverse. */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown-menu a {
    display: block;
    padding: 9px 12px; border-radius: 8px;
    color: var(--ink-2); font-size: 14px; font-weight: 500;
    text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink); }

.nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .btn-primary.nav-cta-primary { padding: 8px 20px; }

/* V2 auth — when logged in we render plain nav-link-styled Dashboard +
   Sign out (no btn pills) so they read as peer menu items, not CTAs.
   Mirrors .nav-links a / .nav-dropdown-trigger typography exactly. */
.mz-nav-auth-inline { display: inline-flex; align-items: center; gap: 4px; }
/* CRITICAL: respect the HTML5 `hidden` attribute. Without this rule the
   custom `display: inline-flex` above wins over the browser default
   `[hidden] { display: none }`, causing BOTH guest + logged-in blocks to
   render simultaneously while we wait for the auth-state fetch. */
[hidden] { display: none !important; }
.mz-nav-link,
.mz-nav-link-button {
    display: inline-flex; align-items: center;
    padding: 8px 14px; border-radius: 8px;
    color: var(--ink-2); font-weight: 500; font-size: 14.5px;
    font-family: inherit; line-height: 1;
    background: transparent; border: 0; cursor: pointer;
    text-decoration: none;
}
.mz-nav-link:hover,
.mz-nav-link-button:hover { background: var(--bg-soft); color: var(--ink); }

/* Hamburger burger — hidden on desktop, shown <=900px. 3 horizontal lines
   that animate to an X when aria-expanded=true. */
.nav-burger {
    display: none;
    width: 40px; height: 40px;
    padding: 0; border: 0; background: transparent; cursor: pointer;
    margin-inline-start: 4px;
    position: relative;
}
.nav-burger span {
    position: absolute;
    inset-inline: 8px; height: 2px;
    background: var(--ink, #0F172A);
    border-radius: 1px;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-burger span:nth-child(1) { top: 12px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Slide-down drawer below the nav bar. Hidden by default; revealed when
   the burger toggles. Pure CSS layout — JS only manages [hidden] + class. */
.nav-drawer {
    display: flex; flex-direction: column;
    gap: 4px;
    padding: 14px 20px 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line, #E5E7EB);
    box-shadow: 0 12px 24px -16px rgba(15,23,42,0.18);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer a {
    padding: 12px 6px; border-radius: 8px;
    color: var(--ink-2, #475569); font-weight: 500; font-size: 15px;
    text-decoration: none;
}
.nav-drawer a:hover { background: var(--bg-soft, #F8FAFC); color: var(--ink, #0F172A); }
.nav-drawer a.active { color: var(--primary-ink, #1D4ED8); font-weight: 600; }
.nav-drawer .nav-drawer-divider { height: 1px; background: var(--line, #E5E7EB); margin: 8px 0; }
/* Resources section label inside the drawer — small uppercase eyebrow,
   followed by indented sub-links to mirror desktop dropdown grouping. */
.nav-drawer-section {
    padding: 14px 6px 4px;
    font-size: 11px; font-weight: 700;
    color: var(--muted, #64748B);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-drawer .nav-drawer-sub { padding-inline-start: 14px; font-size: 14.5px; }
.nav-drawer .btn { width: 100%; justify-content: center; padding: 11px 14px; font-size: 14.5px; }
.nav-drawer .btn + .btn { margin-top: 6px; }

/* Mobile nav — center links collapse, brand + lang + primary CTA stay
   visible above the fold. Hamburger toggles the drawer above. */
@media (max-width: 900px) {
    .nav-inner { gap: 10px; height: 60px; }
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .nav-cta { gap: 6px; }
    .nav-cta .btn { padding: 7px 11px; font-size: 13px; }
    .nav-cta .btn-ghost { display: none; }   /* keep only primary CTA + lang */
    .nav-cta .nav-cta-consult { display: none; } /* mobile: drawer covers it */
    .brand { font-size: 16.5px; }
}
@media (max-width: 480px) {
    .nav-inner { gap: 6px; height: 56px; }
    .nav-cta .btn { padding: 6px 10px; font-size: 12.5px; }
    .brand span:not(.brand-mark) { display: none; }
}

/* Lang switcher */
.lang {
  position: relative;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2);
  font-size: 13px; font-weight: 600;
}
.lang-btn:hover { background: var(--bg-elev); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-end: 0;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 160px; z-index: 60;
  display: none;
}
.lang.is-open .lang-menu,
.lang:hover .lang-menu,
.lang:focus-within .lang-menu { display: block; }
/* Invisible bridge over the 6px visual gap between trigger button and
   menu so mouse can traverse without leaving the .lang hover area. */
.lang-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.lang-btn { cursor: pointer; font-family: inherit; }
.lang-menu button,
.lang-menu-item {
  display: flex; width: 100%; align-items: center; gap: 10px;
  background: none; border: none; padding: 9px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  text-align: start; text-decoration: none;
}
.lang-menu button:hover,
.lang-menu-item:hover { background: var(--bg-soft); color: var(--ink); }
.lang-menu button.active,
.lang-menu-item.active { background: var(--primary-soft); color: var(--primary-ink); }
.lang-flag { font-size: 16px; line-height: 1; }

/* Cards / surfaces */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
  margin-top: 80px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer h5 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink-2); }
.footer-links a:hover { color: var(--primary-ink); }

/* Inline language strip — centered with 20px top/bottom breathing room */
.footer-langs {
  margin-top: 32px; padding: 20px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 10px;
  font-size: 14px; color: var(--ink-2); text-align: center;
}
.footer-langs strong { color: var(--ink); margin-inline-end: 6px; }
.footer-langs a { color: var(--ink-2); }
.footer-langs a:hover { color: var(--primary-ink); }
.footer-langs span { color: var(--line-strong); }

/* Disclaimers — tiny, faded; not screaming for attention */
.footer-legal {
  padding-top: 14px; border-top: 1px solid var(--line);
}
.footer-legal h6 {
  font-size: 10px; font-weight: 600; color: var(--muted); margin: 0 0 4px;
  letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7;
}
.footer-legal p {
  font-size: 10px; line-height: 1.6; color: var(--muted); margin: 0;
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}

/* Utilities */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-2);
  font-size: 12px; font-weight: 500;
}
.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* RTL handling */
html[dir="rtl"] .nav-cta { margin-inline-start: auto; }
html[dir="rtl"] .arrow-right { transform: scaleX(-1); }

/* Sections */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* Hidden visually but keep layout */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* Monezzi page-specific styles */

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -10% -5% auto -5%; height: 70%;
  background:
    radial-gradient(40% 60% at 20% 30%, rgba(96,165,250,0.18), transparent 70%),
    radial-gradient(35% 55% at 85% 20%, rgba(252,165,165,0.18), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
/* Hero mobile collapse — stack columns + tighten padding so the fold
   shows above-the-fold CTA on phones. Mock stays visible but smaller.
   ROOT CAUSE FIX: `[data-hero="split"] .hero-grid` defined OUTSIDE @media
   below (line ~363) has SAME specificity as the same selector inside this
   @media block — source order would win and column collapse never fires.
   Bumping specificity to `body[data-hero="split"]` (0,1,2) lets the mobile
   rule beat the unconditional 2-col rule at narrow viewports. */
@media (max-width: 980px) {
    .hero { padding: clamp(28px, 5vw, 48px) 0 clamp(20px, 4vw, 32px); }
    .hero::before { height: 50%; }
    body[data-hero="split"] .hero-grid,
    body[data-hero="centered"] .hero-grid,
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: clamp(28px, 5vw, 40px); line-height: 1.12; }
    .hero .lede { font-size: 15px; line-height: 1.55; }
    .hero-cta-row { margin-top: 22px; gap: 10px; }
    .hero-proof { margin-top: 22px; flex-wrap: wrap; font-size: 13px; }
    .hero-mock { transform: none; margin-top: 8px; padding: 12px; border-radius: 18px; max-width: 100%; overflow: hidden; }
    .hero-mock::after { inset: -16px; }
    .mock-card .v { font-size: 19px; }
    .mock-bars { height: 44px; }
}
/* Phone-sized — keep brand mock visible but lighter (single column grid),
   stack CTAs full-width so primary action is thumb-reachable. */
@media (max-width: 540px) {
    .hero h1 { font-size: clamp(24px, 8vw, 30px); }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn { width: 100%; text-align: center; justify-content: center; }
    .mock-grid { grid-template-columns: 1fr; gap: 8px; }
    .mock-bars { height: 36px; }
    .hero-proof { gap: 8px; }
    .avatars span { width: 24px; height: 24px; font-size: 10px; }
}
@media (max-width: 380px) {
    .hero { padding-top: 24px; padding-bottom: 16px; }
    .hero .lede { font-size: 14px; }
    /* Trim the mock-list (3rd row) on very small phones — keep the mock
       visible as brand visual, just lighter. The two metric cards (Revenue
       + Bank balance) carry the value; the upcoming-tasks list is filler. */
    .hero-mock .mock-list-item:nth-child(n+2) { display: none; }
    .mock-card .v { font-size: 17px; }
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--primary) 0%, #60A5FA 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; color: var(--muted); font-size: 14px;
}
.avatars { display: flex; }
.avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg); margin-inline-start: -8px;
  display: inline-grid; place-items: center; color: white; font-size: 11px; font-weight: 700;
}
.avatars span:first-child { margin-inline-start: 0; }

/* HERO LAYOUT VARIANTS */
[data-hero="split"] .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
[data-hero="centered"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
[data-hero="centered"] .hero-mock { display: none; }
[data-hero="centered"] .hero-band { display: block; }
[data-hero="band"] .hero-grid { grid-template-columns: 1fr; }
[data-hero="band"] .hero-text { max-width: 820px; }
[data-hero="band"] .hero-mock { display: none; }
[data-hero="band"] .hero-band { display: block; }

.hero-band { display: none; margin-top: 48px; }

/* ============== HERO MOCK (dashboard) ============== */
.hero-mock {
  position: relative;
  display: block;
  border-radius: 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  transform: rotate(0.4deg);
}
/* Belt-and-braces: split variant must always show the mock (only centered
   + band variants hide it). Higher specificity than the variants below. */
[data-hero="split"] .hero-mock { display: block; }
.hero-mock::after {
  content: "";
  position: absolute; inset: -24px;
  border-radius: 32px;
  background: radial-gradient(60% 50% at 50% 0%, rgba(37,99,235,0.16), transparent 65%);
  z-index: -1;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 12px; border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock-dot.r { background: #FCA5A5; } .mock-dot.y { background: #FCD34D; } .mock-dot.g { background: #86EFAC; }
.mock-url {
  flex: 1; height: 24px; border-radius: 6px; background: var(--bg-soft);
  display: inline-flex; align-items: center; padding: 0 10px;
  font-size: 11px; color: var(--muted); font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.mock-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.mock-card {
  background: var(--bg-soft); border-radius: 12px; padding: 14px; border: 1px solid var(--line);
}
.mock-card h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin: 0 0 6px; }
.mock-card .v { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.mock-card .tr { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--success); margin-top: 4px; font-weight: 600; }

.mock-bars { display: flex; align-items: end; gap: 6px; height: 56px; margin-top: 10px; }
.mock-bars i { display: block; width: 8px; border-radius: 2px; background: var(--primary); opacity: 0.85; }

.mock-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.mock-list-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px;
  font-size: 12.5px; color: var(--ink-2);
}
.mock-list-item .pill {
  margin-inline-start: auto; font-size: 10.5px; padding: 3px 8px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-ink); font-weight: 600;
}
.mock-list-item .pill.warn { background: #FFEDD5; color: #9A3412; }
.mock-list-item .pill.ok { background: #DCFCE7; color: #166534; }
.mock-tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-ink);
  display: inline-grid; place-items: center; font-size: 11px; flex: 0 0 auto;
}

/* ============== CYCLE ============== */
.cycle-wrap {
  position: relative;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 48px);
}
.cycle {
  position: relative;
  width: 100%; max-width: 720px; aspect-ratio: 1; margin: 0 auto;
}
@media (max-width: 760px) {
  .cycle-wrap { padding-top: 56px; padding-bottom: 24px; }
  .cycle { max-width: 92vw; }
}
@media (max-width: 460px) {
  .cycle-wrap { padding-top: 48px; padding-inline: 8px; }
}
.cycle-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cycle-center {
  position: absolute; inset: 22% 22% 22% 22%;
  background: var(--bg-elev); border-radius: 50%;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; place-items: center; text-align: center; padding: 22px;
}
.cycle-center h4 { font-size: 14px; color: var(--muted); margin-bottom: 6px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.cycle-center .big { font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }

/* Animated globe variant of cycle center */
.cycle-globe-wrap {
  background: transparent; border: none; box-shadow: none; padding: 0;
  overflow: visible;
}
.cycle-globe-wrap .globe-bg {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #FFFFFF 0%, #EAF1FF 40%, #C9D7F2 100%);
  box-shadow:
    0 30px 60px -20px rgba(37,99,235,0.35),
    inset 0 0 0 1px rgba(37,99,235,0.10),
    inset -18px -22px 40px rgba(37,99,235,0.18),
    inset 14px 14px 30px rgba(255,255,255,0.7);
  z-index: 0;
}
.cycle-globe-wrap .globe-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  animation: globeFloat 6s ease-in-out infinite;
}
.cycle-globe-wrap #globeRotate {
  transform-origin: 0 0;
  transform-box: fill-box;
}
/* Dots are static — no pulse, no rotation */
.cycle-globe-wrap .globe-label {
  position: relative; z-index: 2; padding: 12px 18px;
  text-align: center;
}
.cycle-globe-wrap .globe-label h4 {
  font-size: 12px; color: var(--primary-ink);
  margin-bottom: 6px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.7); display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.cycle-globe-wrap .globe-label .big {
  font-size: clamp(15px, 1.4vw, 20px); font-weight: 700; letter-spacing: -0.015em;
  color: var(--ink); line-height: 1.2; max-width: 80%; margin: 0 auto;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

/* Globe is static — continents stay fixed */
#globeRotate {
  transform-origin: center;
}
@keyframes globeFlip {
  0%   { transform: scaleX(1);    opacity: 1; }
  48%  { transform: scaleX(0.05); opacity: 0.35; }
  50%  { transform: scaleX(-0.05); opacity: 0.35; }
  98%  { transform: scaleX(-1);   opacity: 1; }
  100% { transform: scaleX(1);    opacity: 1; }
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 0.5; }
}
@keyframes orbitDotPulse {
  0%, 100% { r: 5; }
  50%      { r: 7; }
}

/* Cycle nodes — sequencing states */
.cycle-node {
  position: absolute; transform: translate(-50%, -50%);
  width: 168px; max-width: 32%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  cursor: default;
  z-index: 3;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease,
              border-color .35s ease,
              background-color .35s ease,
              opacity .35s ease;
  opacity: 0.55;
}
.cycle-node:hover { transform: translate(-50%, -50%) translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); opacity: 1; }
.cycle-node.is-active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow:
    0 0 0 4px rgba(37,99,235,0.12),
    0 0 0 14px rgba(37,99,235,0.06),
    0 0 38px 6px rgba(37,99,235,0.28),
    0 16px 36px -10px rgba(37,99,235,0.45);
  transform: translate(-50%, -50%) translateY(-3px) scale(1.05);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(37,99,235,0.10), transparent 60%),
    var(--bg-elev);
  animation: nodeGlowPulse 1.6s ease-in-out infinite;
}
@keyframes nodeGlowPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(37,99,235,0.12),
      0 0 0 14px rgba(37,99,235,0.06),
      0 0 32px 4px rgba(37,99,235,0.22),
      0 16px 36px -10px rgba(37,99,235,0.45);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(37,99,235,0.18),
      0 0 0 18px rgba(37,99,235,0.08),
      0 0 46px 10px rgba(37,99,235,0.36),
      0 18px 40px -10px rgba(37,99,235,0.55);
  }
}
.cycle-node.is-lit {
  opacity: 1;
}
.cycle-node.is-lit .n,
.cycle-node.is-active .n {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}
.cycle-node .n {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-ink);
  font-size: 12px; font-weight: 700; margin-bottom: 6px;
  transition: background-color .35s ease, color .35s ease, box-shadow .35s ease;
}
.cycle-node h4 { font-size: 14px; margin: 0 0 4px; font-weight: 600; }
.cycle-node p { font-size: 12px; color: var(--muted); line-height: 1.4; margin: 0; }

/* Orbit dots — active state controlled via JS adding .is-active */
#orbitDots circle {
  transition: fill .35s ease, r .35s ease;
}
#orbitDots circle.is-active {
  fill: #2563EB;
  filter: drop-shadow(0 0 6px rgba(37,99,235,0.7));
}

/* Pulse traveling on orbit */
#cyclePulse {
  filter: drop-shadow(0 0 12px rgba(37,99,235,0.6));
}

/* Mobile cycle — root cause: each .cycle-node carries an INLINE
   style="left:X%; top:Y%" set in the blade for absolute orbit placement.
   When CSS flips them to position:relative on mobile, those inline left/top
   get re-interpreted as RELATIVE offsets and the nodes scatter across the
   page. `!important` on left/top neutralizes the inline rule. */
@media (max-width: 720px) {
  .cycle { max-width: 100%; aspect-ratio: auto; min-height: auto; padding-top: 12px; }
  .cycle-svg { display: none; }
  .cycle-center {
    position: relative !important;
    inset: auto !important;
    aspect-ratio: 1;
    max-width: 280px;
    margin: 0 auto 24px;
    border-radius: 24px;
  }
  .cycle-globe-wrap { background: transparent; }
  .cycle-globe-wrap .globe-label { padding: 8px 12px; }
  .cycle-globe-wrap .globe-label h4 { font-size: 11px; padding: 3px 8px; }
  .cycle-globe-wrap .globe-label .big { font-size: 14px; max-width: 90%; }
  .cycle-node {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px !important;
    opacity: 1 !important;
  }
  .cycle-node.is-active { transform: none !important; }
}
@media (max-width: 480px) {
  .cycle-center { max-width: 220px; }
  .cycle-globe-wrap .globe-label .big { font-size: 12.5px; }
  .cycle-node { padding: 10px 12px; }
  .cycle-node h4 { font-size: 13px; }
  .cycle-node p { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-globe-wrap .globe-svg,
  #globeRotate,
  #globeDots circle,
  #cyclePulse { animation: none !important; }
}

/* ============== WHY GRID ============== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.why-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary-ink);
  display: grid; place-items: center; margin-bottom: 6px;
}
.why-card h3 { font-size: 19px; }
.why-card p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }

/* ============== PARTNERS STRIP — cool mint/sky pastel wash ============== */
.partners {
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 10% 0%, rgba(186,230,253,0.22), transparent 70%),
    radial-gradient(60% 80% at 90% 100%, rgba(187,247,208,0.20), transparent 70%),
    var(--bg-elev);
}
.partners-title {
  text-align: center; font-size: 14px; color: var(--muted); font-weight: 500;
  letter-spacing: 0.02em; margin-bottom: 28px;
}
.partners-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center;
}
@media (max-width: 760px) { .partners-row { grid-template-columns: repeat(3,1fr); gap: 22px; } }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 36px; color: var(--ink-2); opacity: 0.78;
  transition: opacity .15s ease, color .15s ease, transform .15s ease;
}
.partner-logo:hover { opacity: 1; color: var(--ink); }
.partner-logo svg { height: 28px; width: auto; max-width: 100%; display: block; }
/* RTL fix: SVG <text> elements default to text-anchor="start" which under
   `<html dir="rtl">` resolves to PHYSICAL RIGHT — wordmarks at x="0" then
   render leftward off-canvas (Mercury/Shopify/Amazon/QuickBooks/Wise all
   broken on /ar/, only the pure-<path> Stripe survived). Force LTR on the
   SVG drawing context + reset text-anchor explicitly. Authority: Orhan
   2026-05-15. */
.partner-logo svg,
.partner-logo svg text { direction: ltr; text-anchor: start; }
.partner-logo .wm {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
}
/* Brand-colored SVG wordmarks — keep full opacity and brand colors */
.partner-logo.brand { opacity: 0.92; }
.partner-logo.brand:hover { opacity: 1; transform: translateY(-1px); }
.partner-logo.brand svg { height: 26px; }

/* ============== HUMANS CAROUSEL ============== */
.humans {
  padding-block: clamp(64px, 8vw, 110px);
  background:
    radial-gradient(40% 60% at 12% 10%, rgba(37,99,235,0.08), transparent 70%),
    radial-gradient(40% 60% at 88% 90%, rgba(252,165,165,0.10), transparent 70%);
}
.humans-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 36px;
}
@media (max-width: 820px) { .humans-head { grid-template-columns: 1fr; } }
.humans-head .nav-arrows { display: flex; gap: 10px; justify-self: end; }
@media (max-width: 820px) { .humans-head .nav-arrows { justify-self: start; } }
.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--bg-elev); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.arrow-btn:hover { background: var(--bg-soft); border-color: var(--primary); color: var(--primary-ink); }
.arrow-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.humans-track-wrap {
  position: relative;
  overflow: hidden;
  margin-inline: calc(-1 * var(--pad-x));
  padding-inline: var(--pad-x);
}
.humans-track {
  display: flex; gap: 18px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.human-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 540px) { .human-card { width: 280px; } }
.human-photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.human-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,18,32,0.06));
  pointer-events: none;
}
.human-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.human-role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary-ink);
}
.human-quote {
  font-size: 16px; line-height: 1.5; color: var(--ink);
  font-weight: 500; text-wrap: pretty;
  margin: 0;
}
.human-quote::before { content: "“ "; color: var(--primary); font-weight: 700; }
.human-quote::after  { content: " ”"; color: var(--primary); font-weight: 700; }

/* ============== 25 FOUNDERS, 25 COUNTRIES ============== */
.founders {
  padding-block: clamp(72px, 9vw, 120px);
  background:
    radial-gradient(40% 60% at 12% 10%, rgba(37,99,235,0.08), transparent 70%),
    radial-gradient(40% 60% at 88% 90%, rgba(252,165,165,0.10), transparent 70%);
  overflow: hidden;
}
.founders-head {
  display: grid; grid-template-columns: 1fr; gap: 12px; align-items: end;
  margin-bottom: 48px;
  max-width: 760px;
}

/* Two-row marquee, opposite directions, hover-pause */
.founders-marquee {
  display: flex; flex-direction: column; gap: 18px;
  margin-inline: calc(-1 * var(--pad-x));
  /* iOS Safari needs an overflow boundary on the marquee container,
     otherwise translateX(-50%) on the row paints outside the layout
     box but doesn't trigger a new compositing layer — animation looks
     "frozen" on mobile. Edge fade mask removed; cards run full-bleed. */
  overflow: hidden;
}
.founders-row {
  display: flex; gap: 18px; width: max-content;
  /* JS-driven marquee — see homepage.blade.php script.
     Pure CSS @keyframes was abandoned because iOS Safari fully
     disables CSS animations when "Reduce Motion" is enabled in
     Accessibility settings (not just slows them — overrides like
     `animation-duration` don't bring them back). The rAF loop in
     JS mutates `transform: translate3d(...)` every frame, which
     is unaffected by that browser-level toggle. */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* RTL fix: marquee container + rows carry HTML `dir="ltr"` (see blade + JS)
   so flex cross-axis anchors to physical left and the translateX scroll
   loops correctly. Inner card text uses `dir="auto"` so the browser picks
   LTR for English/Turkish content and RTL for Arabic, with text-align:start
   below doing the right thing automatically.
   Authority: Orhan 2026-05-15 — first row invisible + second row scrolling
   off forever in /ar/ was caused by RTL flex `align-items: flex-start`
   anchoring rows to the right edge with content overflowing left. */
.f25-body, .f25-greet, .f25-biz, .f25-quote { text-align: start; }

.f25-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.f25-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px -18px rgba(11,18,32,0.22);
  border-color: var(--primary);
}
.f25-photo {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover; background-position: center top;
  background-color: var(--bg-soft);
}
.f25-photo::after { content: none; }

/* Hijab overlay — paints a soft headscarf+frame onto Egypt + UAE photos */
.f25-hijab {
  position: absolute; inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.f25-hijab-rose {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 240' preserveAspectRatio='none'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='42%25' r='42%25'%3E%3Cstop offset='62%25' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='72%25' stop-color='%23000' stop-opacity='0.05'/%3E%3Cstop offset='100%25' stop-color='%23000' stop-opacity='1'/%3E%3C/radialGradient%3E%3Cmask id='m'%3E%3Crect width='320' height='240' fill='black'/%3E%3Cellipse cx='160' cy='110' rx='62' ry='78' fill='white'/%3E%3C/mask%3E%3C/defs%3E%3Crect width='320' height='240' fill='%23C2748F' mask='url(%23m)'/%3E%3Cpath d='M50 240 Q 70 150, 160 130 Q 250 150, 270 240 Z' fill='%23C2748F'/%3E%3Crect width='320' height='240' fill='url(%23g)' opacity='0.35'/%3E%3C/svg%3E");
}
.f25-hijab-navy {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 240' preserveAspectRatio='none'%3E%3Cdefs%3E%3CradialGradient id='g2' cx='50%25' cy='42%25' r='42%25'%3E%3Cstop offset='62%25' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='72%25' stop-color='%23000' stop-opacity='0.05'/%3E%3Cstop offset='100%25' stop-color='%23000' stop-opacity='1'/%3E%3C/radialGradient%3E%3Cmask id='m2'%3E%3Crect width='320' height='240' fill='black'/%3E%3Cellipse cx='160' cy='110' rx='62' ry='78' fill='white'/%3E%3C/mask%3E%3C/defs%3E%3Crect width='320' height='240' fill='%232A3F66' mask='url(%23m2)'/%3E%3Cpath d='M50 240 Q 70 150, 160 130 Q 250 150, 270 240 Z' fill='%232A3F66'/%3E%3Crect width='320' height='240' fill='url(%23g2)' opacity='0.35'/%3E%3C/svg%3E");
}
.f25-flag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(11,18,32,0.06);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 8px -2px rgba(11,18,32,0.15);
}
[dir="rtl"] .f25-flag { left: auto; right: 14px; padding: 6px 8px 6px 12px; }
.f25-flag .flag-emoji { font-size: 16px; line-height: 1; }
.f25-body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
/* Greeting — quiet, italic display serif. Sits in body, never on photo. */
.f25-greet {
  position: static; background: none; backdrop-filter: none;
  padding: 0; border-radius: 0; box-shadow: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}
.f25-greet::before { content: "— "; color: var(--line-strong); font-style: normal; }
[dir="rtl"] .f25-greet::before { content: ""; }
[dir="rtl"] .f25-greet::after { content: " —"; color: var(--line-strong); font-style: normal; }
.f25-biz {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary-ink);
}
.f25-quote {
  font-size: 14px; line-height: 1.55; color: var(--muted);
  font-weight: 500; text-wrap: pretty;
  margin: 4px 0 0 0;
}
.f25-quote::before { content: "“"; color: var(--primary); font-weight: 700; margin-inline-end: 2px; }
.f25-quote::after  { content: "”"; color: var(--primary); font-weight: 700; margin-inline-start: 2px; }
.founders-foot { display: none; }
/* CSS @media (prefers-reduced-motion: reduce) override removed —
   marquee now driven by JS (rAF + transform), which is unaffected
   by browser-level CSS animation throttling. */

/* ============== SUITE (Business-in-a-Box tabs) ============== */
.suite { padding-block: clamp(72px, 8vw, 110px); }
.suite-head { max-width: 760px; margin-bottom: 36px; }
.suite-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  background: var(--bg-elev); border: 1px solid var(--line);
  padding: 8px; border-radius: 999px;
  margin-bottom: 28px; width: fit-content;
}
@media (max-width: 720px) {
  .suite-tabs { width: 100%; border-radius: 16px; }
}
.suite-tab {
  padding: 10px 18px; border-radius: 999px; border: 0; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.suite-tab .num { font-size: 11px; opacity: 0.7; font-variant-numeric: tabular-nums; }
.suite-tab:hover { color: var(--ink); }
.suite-tab.active { background: var(--ink); color: white; }
.suite-tab.active .num { opacity: 0.6; }

.suite-panel {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  min-height: 420px;
}
.suite-panel[hidden] { display: none !important; }
@media (max-width: 880px) { .suite-panel { grid-template-columns: 1fr; } }
.suite-panel h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 14px; }
.suite-panel p { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 48ch; text-wrap: pretty; }
.suite-panel .panel-cta { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--primary-ink); font-weight: 600; font-size: 15px; }

.suite-vis {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #F1F5FB, #E6EDF8);
  overflow: hidden;
  padding: 24px;
}
.suite-vis .v-card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px;
}
.suite-vis .v-grid { display: grid; gap: 12px; }
.suite-vis h6 { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 4px; font-weight: 600; }
.suite-vis .big { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.suite-vis .row { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 8px 10px; border-radius: 8px; background: var(--bg-soft); }
.suite-vis .row .pill { margin-inline-start: auto; font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-ink); font-weight: 600; }
.suite-vis .pill.ok { background: #DCFCE7; color: #166534; }
.suite-vis .pill.warn { background: #FFEDD5; color: #9A3412; }

/* ============== STATS (honest timeline) — unified ice-blue pastel block ============== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid #DBEAFE;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(186,230,253,0.45), transparent 70%),
    radial-gradient(80% 100% at 100% 100%, rgba(207,232,250,0.40), transparent 70%),
    #F0F7FF;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 24px 22px; position: relative;
  border-inline-end: 1px solid rgba(147,197,253,0.35);
  min-width: 0;   /* allow flex/grid shrink so .k can use its full cell width */
}
.stat:last-child { border-inline-end: 0; }
@media (max-width: 760px) {
  .stat:nth-child(2n) { border-inline-end: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(147,197,253,0.35); }
  .stat { padding: 20px 18px; }
}
.stat .k {
  /* Sized to fit the longest string ("3 to 6 weeks", 12 chars) on a single
     line at every breakpoint. Was clamp(28,3vw,40) which wrapped on narrow
     cells; this is closer to label-typography than display-typography. */
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
}
.stat .d { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
@media (max-width: 420px) {
  .stat .k { font-size: 17px; }
  .stat .d { font-size: 12px; }
}

/* ============== WHY MONEZZI (company voice, no personal identity) ============== */
.why-mz-card {
  position: relative;
  padding: clamp(32px, 4vw, 56px);
}

/* ============== FREE ACCOUNT section ============== */
.free-account-card {
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.free-account-head { max-width: 720px; }
.free-feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .free-feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .free-feature-row { grid-template-columns: 1fr; } }
.free-feature { display: flex; flex-direction: column; gap: 4px; }
.free-feature .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(37,99,235,0.12); color: var(--primary);
  font-weight: 700; font-size: 14px;
  margin-bottom: 6px;
}
.free-feature strong { font-size: 15px; color: var(--ink); }
.free-feature span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.free-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
  align-items: center;
}
.why-mz-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .why-mz-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .why-mz-stats { grid-template-columns: 1fr; } }
.why-mz-stats > div { display: flex; flex-direction: column; gap: 4px; }
.why-mz-stats strong {
  font-size: clamp(18px, 1.6vw, 22px); font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.why-mz-stats span { font-size: 13px; color: var(--muted); }

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 600; color: var(--ink); font-size: 16.5px;
}
.faq-q .toggle {
  width: 24px; height: 24px; border-radius: 50%; background: var(--bg-soft); color: var(--ink-2);
  display: grid; place-items: center; flex: 0 0 auto; transition: transform .2s ease, background .2s ease;
}
.faq-item.open .faq-q .toggle { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, margin .25s ease; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.faq-item.open .faq-a { max-height: 280px; margin-top: 12px; }

/* ============== CTA banner ============== */
.cta-banner {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 60%, #3B82F6 100%);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  color: white;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr auto; gap: 32px; align-items: center;
}
.cta-banner::after {
  content: ""; position: absolute; inset-inline-end: -10%; top: -40%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(252,165,165,0.4), transparent 60%);
  pointer-events: none; /* decorative overlay must not eat clicks on the CTA button */
}
@media (max-width: 760px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: white; font-size: clamp(28px, 3vw, 42px); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 10px; font-size: 16.5px; }
.cta-banner .btn-primary { background: white; color: var(--primary-ink); }
.cta-banner .btn-primary:hover { background: #F8FAFC; }

/* ============== Mid CTA (warm orange banner) ============== */
.mid-cta-banner {
  background: #FFEDD5;
  border: 1px solid #FDBA74;
  border-radius: 24px;
  min-height: 240px;
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; gap: 28px;
}
.mid-cta-headline {
  margin: 0;
  color: #0F172A;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  max-width: 860px;
  line-height: 1.25;
}
.mid-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.mid-cta-actions .btn { padding: 12px 22px; font-size: 15px; }
/* Lock text color across all interaction states — defensive against
   any parent `a { color: inherit }` cascade flipping the primary blue
   button's white label to dark on hover. */
.mid-cta-actions .btn-primary,
.mid-cta-actions .btn-primary:hover,
.mid-cta-actions .btn-primary:focus,
.mid-cta-actions .btn-primary:active { color: #fff; }
.btn-mid-cta-dark {
  background: #0F172A; color: #fff; border-color: #0F172A;
}
.btn-mid-cta-dark:hover,
.btn-mid-cta-dark:focus,
.btn-mid-cta-dark:active { background: #1E293B; color: #fff; }
@media (max-width: 760px) {
  .mid-cta-banner { min-height: 0; gap: 20px; }
  .mid-cta-headline { font-size: clamp(19px, 5vw, 23px); }
}

/* ============== PRICING ============== */
.pricing-toggle {
  display: inline-flex; padding: 4px; background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 999px; gap: 4px; box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  background: transparent; border: 0; padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: color .2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.pricing-toggle button:hover { color: var(--ink); }
.pricing-toggle button.active { background: var(--ink); color: white; }
.pricing-toggle .save-pill {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 999px;
  background: rgba(34,197,94,0.16); color: #15803D;
}
.pricing-toggle button.active .save-pill { background: rgba(255,255,255,0.18); color: #BBF7D0; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 56px; align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.plan {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 22px;
  padding: 32px 28px 28px; display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.plan-head { padding-bottom: 18px; min-height: 110px; }
.plan-name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-ink);
}
.plan-tag {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink);
  line-height: 1.25; margin-top: 4px;
}
.plan-best { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.45; }

.plan-price-wrap {
  width: 100%;
  display: flex !important; align-items: baseline; justify-content: center !important;
  flex-wrap: wrap; column-gap: 8px; row-gap: 4px;
  padding-top: 12px; min-height: 76px;
}
.plan-price-wrap .currency {
  font-size: 22px; font-weight: 600; color: var(--ink-2); transform: translateY(-18px);
}
.plan-price-wrap .amt {
  font-size: clamp(48px, 5vw, 64px) !important; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1; font-feature-settings: "tnum";
}
.plan-price-wrap .unit { font-size: 15px; color: var(--muted); margin-inline-start: 4px; }
.plan-price-wrap .alacarte-inline {
  font-size: 13px; color: var(--ink-2); line-height: 1.3;
  margin-inline-start: 8px; align-self: flex-end; padding-bottom: 8px;
  white-space: nowrap;
}
.plan-price-wrap .alacarte-inline s {
  color: var(--ink); font-size: 14px; font-weight: 700;
  text-decoration-color: #DC2626; text-decoration-thickness: 2px;
  margin-inline-end: 4px;
}
.plan-billed {
  width: 100%;
  font-size: 13px; color: var(--muted); margin-top: 8px;
  display: flex !important; align-items: center; justify-content: center !important;
  flex-wrap: wrap; gap: 6px 8px; min-height: 22px; text-align: center;
}
.plan-billed .strike { text-decoration: line-through; color: var(--line-strong); }
.plan-billed .save {
  font-weight: 600; color: #15803D;
  background: rgba(34,197,94,0.10); padding: 2px 8px; border-radius: 6px; font-size: 12px;
}
.plan-billed .state-fee-prefix {
  font-weight: 700; color: var(--ink); font-size: 13px;
  margin-inline-end: 2px;
}
.plan-billed .billing-badge {
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}

.plan-cta { margin-top: 20px; }
.plan-cta .btn { width: 100%; }
.plan-divider { height: 1px; background: var(--line); margin: 22px 0 18px; }
.plan-includes-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.plan-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
  font-size: 14.5px; color: var(--ink-2);
}
.plan-features li { display: flex; align-items: start; gap: 10px; line-height: 1.45; }
.plan-features svg { flex: 0 0 auto; color: var(--success); margin-top: 3px; }
.plan-features li strong { font-weight: 600; color: var(--ink); }
.plan-features li.muted { color: var(--muted); }
.plan-features li.muted svg { color: var(--line-strong); }

.plan.featured {
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px var(--primary),
    0 30px 60px -20px rgba(37,99,235,0.32),
    0 8px 24px -8px rgba(37,99,235,0.18);
  background: linear-gradient(180deg, rgba(37,99,235,0.045), transparent 30%), var(--bg-elev);
  transform: translateY(-6px);
}
.plan.featured:hover { transform: translateY(-8px); }
.plan.featured .plan-name { color: var(--primary); }
.plan.featured .badge {
  position: absolute; top: -14px; inset-inline-start: 28px;
  background: var(--primary); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 20px -4px rgba(37,99,235,0.45);
  display: inline-flex; align-items: center; gap: 6px;
}
.plan.featured .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #FACC15; box-shadow: 0 0 8px rgba(250,204,21,0.8);
}

/* Trust strip */
.pricing-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 32px; padding: 22px 24px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--bg-soft);
}
@media (max-width: 760px) { .pricing-trust { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .pricing-trust { grid-template-columns: 1fr; } }
.pricing-trust .item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.4;
}
.pricing-trust .item svg {
  flex: 0 0 auto; width: 22px; height: 22px;
  color: var(--primary-ink); background: var(--primary-soft);
  padding: 5px; border-radius: 8px; box-sizing: content-box;
}
.pricing-trust .item strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }

/* State fee notice */
.state-fee-notice {
  margin-top: 18px;
  display: flex; align-items: start; gap: 12px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.22);
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.state-fee-notice svg { flex: 0 0 auto; color: #B45309; margin-top: 2px; }
.state-fee-notice strong { color: var(--ink); font-weight: 600; }

/* Compare */
.compare {
  margin-top: 96px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--bg-elev); box-shadow: var(--shadow-sm);
}
.compare-head {
  padding: 24px 28px; border-bottom: 1px solid var(--line);
  display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.compare-head h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.compare-head p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: start; border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare-table thead th {
  font-weight: 700; color: var(--ink); background: var(--bg-soft);
  font-size: 14px;
}
.compare-table thead th.featured-col {
  background: linear-gradient(180deg, rgba(37,99,235,0.10), rgba(37,99,235,0.04));
  color: var(--primary-ink);
}
.compare-table tbody tr:hover td { background: var(--bg-soft); }
.compare-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.compare-table td.center { text-align: center; }
.compare-table .check { color: var(--success); }
.compare-table .dash { color: var(--line-strong); }
.compare-table .featured-col { background: rgba(37,99,235,0.025); }
.compare-table tbody tr:hover .featured-col { background: rgba(37,99,235,0.06); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .group-row td {
  background: var(--bg-soft);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 14px 20px;
}
@media (max-width: 760px) {
  .compare { overflow-x: auto; }
  .compare-table { min-width: 640px; }
}

/* ============== ABOUT ============== */
.about-hero {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } }
.about-mark {
  aspect-ratio: 1; max-width: 380px; margin-inline-start: auto;
  border-radius: 28px;
  background: var(--bg-elev); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 20px;
  position: relative; overflow: hidden;
}
.about-mark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(37,99,235,0.20), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(252,165,165,0.30), transparent 50%);
  pointer-events: none;
}
.about-mark .glyph {
  position: relative; font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px); font-weight: 800; letter-spacing: -0.05em;
  background: linear-gradient(140deg, #1E3A8A, #3B82F6 60%, #93C5FD);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }
.principle { padding: 28px; }
.principle-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--primary); letter-spacing: -0.03em; }
.principle h3 { margin-top: 8px; font-size: 19px; }
.principle p { font-size: 14.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.55; }

.timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 760px) { .timeline { grid-template-columns: 1fr; } }
.timeline-item {
  padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-elev);
  position: relative;
}
.timeline-item .when { font-size: 13px; color: var(--primary-ink); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.timeline-item h3 { margin-top: 6px; font-size: 18px; }
.timeline-item p { font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }

.story-card { padding: clamp(32px, 4vw, 56px); max-width: 880px; margin: 0 auto; }
.story-card .lede { font-size: clamp(18px, 1.5vw, 21px); }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values { grid-template-columns: 1fr; } }
.value { padding: 22px; }
.value h4 { font-size: 15px; }
.value p { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.value .vicon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary-soft); color: var(--primary-ink); display: grid; place-items: center; margin-bottom: 12px; }


/* ============== PROMO BAR ============== */
.promo-bar {
  position: relative;
  background: linear-gradient(90deg, #0F2A66 0%, #1E3FA8 50%, #2563EB 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
  z-index: 60;
}
.promo-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; text-align: center;
}
.promo-bar .promo-pill {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.promo-bar .promo-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #FFD86B;
  box-shadow: 0 0 0 0 rgba(255,216,107,0.7);
  animation: promoDot 2s infinite;
}
@keyframes promoDot {
  0% { box-shadow: 0 0 0 0 rgba(255,216,107,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,216,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,216,107,0); }
}
.promo-bar .promo-text { font-weight: 500; }
.promo-bar .promo-text strong { font-weight: 700; }
.promo-bar .promo-cta {
  color: #fff; text-decoration: underline; font-weight: 600;
  text-underline-offset: 3px;
}
.promo-bar .promo-cta:hover { text-decoration-thickness: 2px; }
.promo-bar .countdown {
  display: inline-flex; align-items: center; gap: 6px;
  font-variant-numeric: tabular-nums; font-weight: 600;
}
.promo-bar .countdown .seg {
  background: rgba(0,0,0,0.25); padding: 2px 8px; border-radius: 6px; min-width: 28px;
  display: inline-block; text-align: center;
}
.promo-bar .promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: transparent; color: #fff; opacity: 0.7;
  border: 0; cursor: pointer; padding: 4px; line-height: 0;
}
.promo-bar .promo-close:hover { opacity: 1; }
@media (max-width: 720px) {
  .promo-bar { padding: 10px 36px 10px 12px; font-size: 13px; }
  .promo-bar .container { gap: 8px; }
}

/* ============== METRIC STRIP ============== */
.metric-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 32px 0;
}
.metric-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.metric-cell {
  text-align: center;
  padding: 8px 16px;
  border-inline-end: 1px solid var(--line);
}
.metric-cell:last-child { border-inline-end: 0; }
.metric-cell .val {
  font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1;
}
.metric-cell .val .plus { color: var(--primary); }
.metric-cell .lab {
  margin-top: 8px; font-size: 13px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
@media (max-width: 720px) {
  .metric-strip-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .metric-cell { border-inline-end: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .metric-cell:nth-child(2n) { border-inline-end: 0; }
  .metric-cell:nth-child(odd) { border-inline-end: 1px solid var(--line); }
  .metric-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============== PRESS LOGOS — warm cream/amber pastel wash ============== */
.press-strip {
  padding: 48px 0;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(254,215,170,0.22), transparent 70%),
    radial-gradient(50% 70% at 0% 100%, rgba(252,231,243,0.18), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-title {
  text-align: center; font-size: 12px; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 24px;
}
.press-logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px;
  align-items: center; justify-items: center;
  opacity: 0.7;
}
.press-logos .plogo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 19px; color: var(--ink-2);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.press-logos .plogo.serif-it { font-style: italic; }
.press-logos .plogo.sans { font-family: var(--font); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; font-size: 16px; }
.press-logos .plogo.thin { font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; font-size: 14px; }
@media (max-width: 980px) { .press-logos { grid-template-columns: repeat(3, 1fr); row-gap: 22px; } }
@media (max-width: 520px) { .press-logos { grid-template-columns: repeat(2, 1fr); } }

/* ============== STARTING POINT (3 product cards) ============== */
.startpoint { padding: clamp(56px, 7vw, 88px) 0; }
.startpoint-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.startpoint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .startpoint-grid { grid-template-columns: 1fr; } }

.sp-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(15,23,42,0.08); border-color: #cbd5e1; }
.sp-card.recommended { border-color: var(--primary); box-shadow: 0 18px 38px rgba(37,99,235,0.12); }
.sp-card.recommended::before {
  content: ""; position: absolute; inset: 0; background:
    radial-gradient(60% 60% at 100% 0%, rgba(37,99,235,0.06), transparent 60%);
  pointer-events: none;
}
.sp-card .sp-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.sp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary-ink);
  display: grid; place-items: center; margin-bottom: 16px;
}
.sp-name { font-size: 13px; font-weight: 700; color: var(--primary-ink); letter-spacing: 0.08em; text-transform: uppercase; }
.sp-title {
  font-size: 22px; font-weight: 700; margin-top: 6px; letter-spacing: -0.01em;
  line-height: 1.2; min-height: 56px;
}
.sp-desc { font-size: 14.5px; color: var(--muted); margin-top: 10px; line-height: 1.55; }
.sp-price-row {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 6px;
}
.sp-price-row .from { font-size: 13px; color: var(--muted); }
.sp-price-row .price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.sp-price-row .price .cur { font-size: 16px; font-weight: 600; vertical-align: super; margin-inline-end: 2px; }
.sp-price-row .unit { font-size: 13px; color: var(--muted); margin-inline-start: 2px; }
.sp-features {
  list-style: none; padding: 0; margin: 16px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.sp-features li {
  display: flex; gap: 10px; font-size: 14px; color: var(--ink); line-height: 1.45;
  align-items: flex-start;
}
.sp-features li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.sp-cta { margin-top: auto; }
.sp-cta .btn { width: 100%; justify-content: center; }

/* ============== BUILT FOR ============== */
.builtfor { padding: clamp(48px, 6vw, 72px) 0; border-top: 1px solid var(--line); }
.builtfor-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.builtfor-head h2 { font-size: clamp(24px, 2.4vw, 32px); }
.builtfor-head p { color: var(--muted); font-size: 15px; max-width: 460px; }
.builtfor-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
@media (max-width: 980px) { .builtfor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .builtfor-grid { grid-template-columns: 1fr; } }
.bf-card {
  padding: 22px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.bf-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.bf-card .bf-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary-ink);
  display: grid; place-items: center; margin-bottom: 14px;
}
.bf-card h4 { font-size: 15px; font-weight: 700; }
.bf-card p { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ============== TESTIMONIAL CARDS ============== */
.testimonials { padding: clamp(56px, 7vw, 88px) 0; background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testi-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.testi-rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 13px; font-weight: 600;
}
.testi-rating .stars { color: #F5B400; letter-spacing: 1px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 26px;
  display: flex; flex-direction: column;
}
.testi-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; line-height: 0.7; color: var(--primary);
  opacity: 0.25; margin-bottom: 0;
}
.testi-quote {
  font-size: 16px; line-height: 1.55; color: var(--ink);
  margin-top: 6px; flex: 1;
}
.testi-meta {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-ink));
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testi-id .name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.testi-id .meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.testi-id .flag { font-size: 14px; }

/* ============== STICKY BOTTOM CTA ============== */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: #0F172A; color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
  box-shadow: 0 18px 48px rgba(15,23,42,0.32);
  transform: translateY(140%); opacity: 0;
  transition: transform .35s ease, opacity .25s ease;
  max-width: 760px; margin: 0 auto;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta .sc-text strong { font-size: 15px; font-weight: 700; }
.sticky-cta .sc-text span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.sticky-cta .sc-actions { display: flex; align-items: center; gap: 8px; }
.sticky-cta .sc-actions .btn { padding: 10px 18px; font-size: 14px; }
.sticky-cta .sc-actions .btn-primary { background: var(--primary); }
.sticky-cta .sc-close {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 0; cursor: pointer; padding: 6px; line-height: 0;
}
.sticky-cta .sc-close:hover { color: #fff; }
@media (max-width: 640px) {
  .sticky-cta { padding: 12px; gap: 10px; }
  .sticky-cta .sc-text strong { font-size: 13.5px; }
  .sticky-cta .sc-text span { display: none; }
  .sticky-cta .sc-actions .btn { padding: 9px 14px; font-size: 13px; }
}

/* ─── Startpoint pricing block (wireframe-aligned) ─────────────────── */
.sp-price-stack { display: block; }
.sp-alacarte { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.sp-alacarte s { color: #94a3b8; }
.sp-billing-note { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.sp-billing-note strong { color: var(--ink-2); }
.sp-savings-line { font-size: 13px; color: var(--success, #10B981); margin-top: 6px; line-height: 1.4; }
.sp-savings-line strong { color: var(--success, #10B981); }
.sp-y2-line { font-size: 12px; color: var(--muted); margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line); }

/* Premium billing segmented control (two pill buttons side-by-side) */
.sp-billing-segment {
  display: inline-flex; align-items: stretch;
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 4px; border-radius: 999px;
  margin: 12px auto 0;
  gap: 2px;
}
.sp-billing-seg {
  appearance: none; border: 0; cursor: pointer;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: transparent;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
  line-height: 1;
}
.sp-billing-seg:hover { color: var(--ink); }
.sp-billing-seg.active {
  background: var(--bg-elev); color: var(--primary-ink);
  box-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 0 0 1px var(--line);
}
.sp-saver {
  color: var(--success, #10B981); font-weight: 700; font-size: 11.5px;
  background: rgba(16,185,129,0.10); padding: 2px 7px; border-radius: 999px;
}

/* Features expand <details> */
.sp-features-expand { margin-top: 8px; }
.sp-features-expand > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  color: var(--primary-ink);
  padding: 6px 10px; border-radius: 8px;
  background: transparent;
}
.sp-features-expand > summary::-webkit-details-marker { display: none; }
.sp-features-expand > summary:hover { background: var(--primary-soft); }
.sp-features-expand[open] > summary svg { transform: rotate(180deg); }
.sp-features-expand > summary svg { transition: transform 0.18s; }
.sp-features-expand .sp-features { margin-top: 8px; }

/* Pricing page — formation type toggle (new vs existing LLC) */
.pricing-formation-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px;
}
.pricing-formation-toggle a {
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: all 0.18s;
}
.pricing-formation-toggle a:hover { color: var(--ink); }
.pricing-formation-toggle a.active { background: var(--ink); color: white; }

/* Plan card Y2+ secondary line */
.plan-y2-note {
  font-size: 12px; color: var(--muted);
  margin-top: 12px; padding-top: 10px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 6px 10px;
}
.plan-billing-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-ink); background: var(--primary-soft);
  padding: 3px 8px; border-radius: 999px;
  white-space: nowrap;
}

/* Billing toggle pill — sits BELOW the price for cross-card alignment */
.plan-price-stack { text-align: center; }
.plan-price-stack .sp-billing-toggle { margin: 10px 0 0; }
.plan-price-stack .sp-billing-menu { margin-inline: auto; }
