/* ==========================================================================
   BOOKED THEN BUILT — Design System v2 (light editorial)
   Brand: orange #F57C20 (fine accent only) · ink #12161C · navy #0B1A38
   Warm off-white base · restrained ink / glass buttons · SVG line icons
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* accent — used sparingly */
  --orange: #F57C20;
  --orange-deep: #C9560D;
  --orange-soft: rgba(245, 124, 32, 0.10);

  /* dark punctuation */
  --navy: #0B1A38;
  --navy-900: #081226;
  --navy-800: #0F2247;
  --navy-line: rgba(255, 255, 255, 0.10);

  /* ink / text */
  --ink: #12161C;
  --ink-soft: #3B434F;
  --muted: #6B7480;
  --muted-light: #99A1AC;

  /* surfaces — warm, "darker shade of white" */
  --bg: #F2EFE9;
  --paper: #FFFFFF;
  --paper-2: #ECE8E0;
  --cream: #F7F4EE;
  --line: #E4DFD5;
  --line-strong: #D6D0C4;

  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 11px;

  --shadow-sm: 0 1px 2px rgba(20, 22, 28, 0.05), 0 2px 10px rgba(20, 22, 28, 0.04);
  --shadow: 0 12px 34px -18px rgba(20, 22, 28, 0.30);
  --shadow-lg: 0 34px 70px -34px rgba(20, 22, 28, 0.42);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--ink); color: #fff; }

/* ---- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-xl { font-size: clamp(2.7rem, 6.4vw, 5.2rem); font-weight: 900; letter-spacing: -0.035em; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; }
.h-md { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.55; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.on-dark { color: rgba(255,255,255,.7); }
.muted { color: var(--muted); }

/* ---- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(66px, 9vw, 128px); position: relative; }
.section-tight { padding-block: clamp(44px, 6vw, 84px); }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure-sm { max-width: 560px; }
.center .measure, .center .measure-sm { margin-inline: auto; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.dark { background: var(--navy); color: #fff; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead { color: rgba(255,255,255,.75); }
.dark .eyebrow { color: rgba(255,255,255,.7); }
.cream { background: var(--cream); }
.paper-2 { background: var(--paper-2); }
.paper { background: var(--paper); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .2s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; opacity: .9; }
/* primary: solid ink, no glow */
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow); }
/* ghost: transparent, hairline */
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(18,22,28,.03); }
/* subtle glass (light) */
.btn-soft { background: rgba(18,22,28,.05); color: var(--ink); }
.btn-soft:hover { background: rgba(18,22,28,.09); }
/* on dark surfaces: white pill primary, glass ghost */
.dark .btn-primary, .page-hero .btn-primary, .cta-band .btn-primary, .book-shell .btn-primary {
  background: #fff; color: var(--ink);
}
.dark .btn-primary:hover, .page-hero .btn-primary:hover, .cta-band .btn-primary:hover, .book-shell .btn-primary:hover {
  background: rgba(255,255,255,.9);
}
.dark .btn-ghost, .page-hero .btn-ghost, .cta-band .btn-ghost, .book-shell .btn-ghost, .hero .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.02);
}
.dark .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-band .btn-ghost:hover, .book-shell .btn-ghost:hover, .hero .btn-ghost:hover {
  border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08);
}
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---- Icon system (SVG line) -------------------------------------------- */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 16px;
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; }
.site-header.scrolled {
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(20,22,28,.5);
  padding-block: 11px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; transition: height .35s var(--ease); }
.scrolled .brand img { height: 32px; }
.brand-word { font-family: var(--font-display); font-weight: 900; letter-spacing: -.01em; line-height: .92; color: #fff; }
.brand-word b { display: block; font-size: 1.12rem; }
.brand-word span { display: block; font-size: .68rem; color: var(--orange); letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.scrolled .brand-word { color: var(--ink); }
.scrolled .brand-word span { color: var(--orange-deep); }

.main-nav { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.main-nav a {
  color: rgba(255,255,255,.78); font-weight: 400; font-size: .92rem; letter-spacing: .015em;
  padding: 8px 6px; border-radius: 8px; transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; font-weight: 500; }
.scrolled .main-nav a { color: var(--ink-soft); }
.scrolled .main-nav a:hover { color: var(--ink); }
.scrolled .main-nav a.active { color: var(--ink); }

/* dropdown */
.nav-item { position: relative; }
.nav-item > a::after { content: "▾"; font-size: .68em; margin-left: 6px; opacity: .5; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 16px; padding: 10px; min-width: 470px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: .92rem; font-weight: 500;
  padding: 10px 13px; border-radius: 10px; background: transparent;
}
.dropdown a:hover { background: var(--paper-2); color: var(--ink); }
.dropdown a .ico { display: grid; place-items: center; width: 22px; height: 22px; color: var(--orange-deep); flex-shrink: 0; }
.dropdown a .ico .icon { width: 20px; height: 20px; }
.dropdown .all { grid-column: 1 / -1; justify-content: center; color: var(--orange-deep); font-weight: 600; }

/* header right cluster */
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.rating-chip { display: flex; flex-direction: column; line-height: 1.05; text-align: right; }
.rating-chip .stars { color: var(--orange); font-size: .8rem; letter-spacing: 1.5px; }
.rating-chip small { color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 600; letter-spacing: .03em; }
.scrolled .rating-chip small { color: var(--muted); }
/* header CTA: white pill over dark hero, ink pill once scrolled */
.header-cta .btn-primary { padding: 11px 20px; background: #fff; color: var(--ink); }
.header-cta .btn-primary:hover { background: rgba(255,255,255,.88); }
.scrolled .header-cta .btn-primary { background: var(--ink); color: #fff; }
.scrolled .header-cta .btn-primary:hover { background: #000; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.14); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: .3s; }
.scrolled .nav-toggle { background: rgba(18,22,28,.06); }
.scrolled .nav-toggle span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 104px var(--gutter) 40px; transform: translateY(-100%);
  transition: transform .45s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; padding: 13px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .sub { font-size: 1.02rem; padding-left: 16px; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.mobile-menu .btn { margin-top: 26px; }

/* ---- Hero (dark photo) -------------------------------------------------- */
.hero {
  position: relative; background: var(--navy-900); color: #fff;
  padding-top: clamp(140px, 17vh, 210px); padding-bottom: clamp(70px, 9vw, 124px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,10,18,.93) 0%, rgba(6,10,18,.74) 40%, rgba(6,10,18,.30) 100%),
    linear-gradient(0deg, rgba(6,10,18,.85) 0%, rgba(6,10,18,.15) 42%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.hero h1 { margin-block: 18px 22px; color: #fff; }
.hero h1 .hl {
  color: #fff;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat; background-position: 0 92%; background-size: 100% 0.10em;
  padding-bottom: 0.02em;
}
.hero .lead { color: rgba(255,255,255,.82); }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #36d38a; box-shadow: 0 0 0 4px rgba(54,211,138,.2); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; gap: 32px; margin-top: 42px; flex-wrap: wrap; }
.hero-proof .stat b { font-family: var(--font-display); font-size: 1.85rem; font-weight: 900; color: #fff; display: block; line-height: 1; letter-spacing: -.02em; }
.hero-proof .stat .stars { font-size: 1.35rem; color: var(--orange); letter-spacing: 1px; }
.hero-proof .stat span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* hero live card (light) */
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}
.hero-card .card-top { padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.hero-card .card-top b { font-family: var(--font-display); font-size: .92rem; color: var(--ink); }
.hero-card .live { font-size: .72rem; color: #1f9e5f; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.hero-card .live::before { content:""; width:7px; height:7px; border-radius:50%; background:#29b46b; box-shadow:0 0 0 4px rgba(41,180,107,.16);}
.appt-row { display: flex; align-items: center; gap: 12px; padding: 13px 20px; border-bottom: 1px solid var(--line); }
.appt-row:last-child { border-bottom: none; }
.appt-av { width: 37px; height: 37px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line); display:grid; place-items:center; font-weight:700; font-size:.8rem; color:var(--ink); flex-shrink:0; }
.appt-av .icon { width: 18px; height: 18px; color: var(--orange-deep); }
.appt-row .meta { flex: 1; min-width: 0; }
.appt-row .meta b { font-size: .9rem; display:block; color: var(--ink); font-weight: 600; }
.appt-row .meta span { font-size: .76rem; color: var(--muted); }
.appt-row .val { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: .98rem; }
.appt-badge { font-size:.66rem; background: rgba(41,180,107,.12); color:#1a854f; padding:4px 9px; border-radius:6px; font-weight:700; }
.card-foot { padding: 15px 20px; display:flex; align-items:center; justify-content:space-between; border-top: 1px solid var(--line); background: var(--cream); }
.card-foot span { color: var(--muted); font-size:.82rem; }
.card-foot b { font-family: var(--font-display); font-weight: 800; color: var(--orange-deep); }

/* ---- Trust bar ---------------------------------------------------------- */
.trust-bar { padding-block: 30px; border-block: 1px solid var(--line); background: var(--bg); }
.trust-bar p { text-align: center; color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items:center; gap: clamp(22px,5vw,60px); }
.trust-logos span { font-family: var(--font-display); font-weight: 800; font-size: clamp(.95rem,2vw,1.3rem); color: var(--muted-light); letter-spacing: -.01em; }

/* ---- Cards -------------------------------------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 32px); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.dark .card { background: rgba(255,255,255,.04); border-color: var(--navy-line); }
.card .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink); margin-bottom: 18px;
}
.card:hover .ic { color: var(--orange-deep); border-color: rgba(245,124,32,.4); }
.dark .card .ic { background: rgba(255,255,255,.05); border-color: var(--navy-line); color: #fff; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -.02em; }
.card p { color: var(--muted); font-size: .96rem; }
.dark .card p { color: rgba(255,255,255,.66); }

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

/* ---- Steps / system ----------------------------------------------------- */
.steps { position: relative; }
.step { position: relative; padding-top: 26px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--line); }
.step::after { content: ""; position: absolute; top: -3px; left: 0; width: 30px; height: 8px; border-radius: 999px; background: var(--orange); }
.cream .step::before { background: var(--line-strong); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  color: var(--muted); letter-spacing: .1em; margin-bottom: 10px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 8px; letter-spacing: -.02em; }
.step .s-ic { color: var(--ink); margin-bottom: 14px; }
.step .s-ic .icon { width: 26px; height: 26px; }

/* ---- Trade / industries grid ------------------------------------------- */
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trade {
  position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.trade:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.trade .ico { color: var(--ink); margin-bottom: 15px; }
.trade:hover .ico { color: var(--orange-deep); }
.trade .ico .icon { width: 28px; height: 28px; }
.trade h3 { font-size: 1.14rem; margin-bottom: 6px; letter-spacing: -.02em; }
.trade .range { color: var(--orange-deep); font-weight: 700; font-size: .88rem; }
.trade .go { margin-top: auto; padding-top: 16px; color: var(--muted); font-weight: 600; font-size: .84rem; display:flex; align-items:center; gap:6px; transition: gap .25s, color .25s; }
.trade .go .icon { width: 15px; height: 15px; }
.trade:hover .go { color: var(--ink); gap: 10px; }

/* ---- Feature split ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: var(--paper-2);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.tall { aspect-ratio: 4/5; }
/* graceful photo placeholder until real photography is supplied */
.photo-slot { position: relative; display: grid; place-items: center; background:
    linear-gradient(135deg, var(--paper-2), var(--cream)); color: var(--muted); text-align: center; }
.photo-slot .ps-in { display: grid; place-items: center; gap: 10px; padding: 24px; }
.photo-slot .ps-in .icon { width: 34px; height: 34px; color: var(--muted-light); }
.photo-slot small { font-size: .78rem; letter-spacing: .04em; }

/* check list */
.checklist li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; font-size: 1rem; color: var(--ink-soft); }
.checklist li .icon { flex-shrink: 0; width: 22px; height: 22px; color: #1a854f; margin-top: 2px; }
.dark .checklist li { color: rgba(255,255,255,.82); }
.dark .checklist li .icon { color: #46d38a; }

/* x-list (pain) */
.xlist li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; color: rgba(255,255,255,.8); }
.xlist li .icon { flex-shrink: 0; width: 20px; height: 20px; color: #ff8a6b; margin-top: 3px; }

/* ---- Testimonials ------------------------------------------------------- */
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
  height: 100%; display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tcard .video { position: relative; aspect-ratio: 16/9; background: var(--navy-800); }
.tcard .video wistia-player { width: 100%; height: 100%; }
.tcard .tbody { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.tcard .stars { color: var(--orange); letter-spacing: 2px; font-size: .88rem; margin-bottom: 10px; }
.tcard h3 { font-size: 1.18rem; margin-bottom: 12px; line-height: 1.22; letter-spacing: -.02em; }
.tcard blockquote { color: var(--ink-soft); font-size: 1rem; border-left: 2px solid var(--orange); padding-left: 15px; margin-top: auto; }

.quote-feature {
  background: var(--navy); border: 1px solid var(--navy-line); border-radius: var(--radius-lg);
  padding: clamp(28px,4vw,48px); color:#fff;
}
.quote-feature .big-quote { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem,3vw,2.2rem); line-height: 1.22; letter-spacing: -.02em; }
.quote-feature cite { display:block; margin-top: 18px; font-style: normal; color: #fff; font-weight: 700; }
.quote-feature cite span { display:block; color: rgba(255,255,255,.55); font-weight: 500; font-size:.9rem; }

/* ---- Exclusivity / market checker -------------------------------------- */
.exclusive { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.exclusive::before { content:""; position:absolute; inset:0; background: radial-gradient(760px 360px at 88% -10%, rgba(245,124,32,.18), transparent 60%); }
.exclusive .wrap { position: relative; z-index: 1; }
.exclusive-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,68px); align-items: center; }
.map-badge { display:inline-flex; align-items:center; gap:9px; background: rgba(255,255,255,.06); border:1px solid var(--navy-line); border-radius:999px; padding:7px 15px; font-size:.82rem; font-weight:600; color:#fff; }
.map-badge .icon { width:16px; height:16px; color:#46d38a; }
.checker { background: rgba(255,255,255,.04); border: 1px solid var(--navy-line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,34px); }
.checker h3 { color:#fff; font-size: 1.3rem; margin-bottom: 6px; }
.checker p.sub { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 20px; }
.checker .field-row { display:flex; flex-direction: column; gap: 12px; }
.checker label { font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; display:block; }
.checker select, .checker input[type="text"] {
  width:100%; background: rgba(255,255,255,.06); border:1px solid var(--navy-line); color:#fff;
  border-radius: 12px; padding: 13px 15px; font: inherit; font-size:.98rem; outline: none; transition: border-color .2s;
}
.checker select option { color: var(--ink); }
.checker input::placeholder { color: rgba(255,255,255,.4); }
.checker select:focus, .checker input:focus { border-color: rgba(255,255,255,.45); }
.checker .btn { margin-top: 6px; }
.checker-result { margin-top: 16px; font-size:.94rem; color:#46d38a; font-weight:600; display:none; align-items:flex-start; gap:9px; }
.checker-result.show { display:flex; }
.checker-result .icon { width:19px; height:19px; flex-shrink:0; margin-top:2px; }

/* ---- Guarantee band ----------------------------------------------------- */
.guarantee { background: var(--ink); color:#fff; border-radius: var(--radius-lg); padding: clamp(32px,4.5vw,56px); display:grid; grid-template-columns: auto 1fr; gap: clamp(22px,3vw,40px); align-items:center; }
.guarantee .seal { width: 92px; height: 92px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); display:grid; place-items:center; flex-shrink:0; }
.guarantee .seal .icon { width: 44px; height: 44px; color:#fff; }
.guarantee h2 { color:#fff; font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: 10px; }
.guarantee p { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.guarantee b { color:#fff; }

/* ---- Disqualifier ------------------------------------------------------- */
.dq-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 44px; }
.dq-item { display:flex; gap:14px; align-items:flex-start; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.dq-item .icon { width: 22px; height: 22px; color: var(--orange-deep); flex-shrink:0; margin-top: 3px; }
.dq-item b { display:block; margin-bottom: 4px; font-family: var(--font-display); letter-spacing: -.01em; }
.dq-item span { color: var(--muted); font-size: .95rem; }

/* ---- Packages ----------------------------------------------------------- */
.price-card {
  position: relative; background: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg); overflow: hidden;
}
.price-card .ribbon {
  background: var(--ink); color: #fff;
  text-align: center; padding: 12px; font-weight: 700; letter-spacing: .06em; font-size: .82rem; text-transform: uppercase;
}
.price-body { padding: clamp(28px, 4vw, 46px); }
.price-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-block: 26px; }
.price-block { background: var(--cream); border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.price-block.accent { border-color: var(--orange); background: var(--paper); }
.price-block .label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price-block .v { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--ink); margin-block: 6px; letter-spacing: -.02em; }
.price-block .v small { font-size: .9rem; color: var(--muted); font-weight: 600; font-family: var(--font-body); }
.price-block p { font-size: .89rem; color: var(--muted); }

.highlight-band {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 24px 28px; display: flex; gap: 17px; align-items: center;
}
.highlight-band .hb-ic { flex-shrink: 0; color: #fff; }
.highlight-band .hb-ic .icon { width: 30px; height: 30px; }
.highlight-band b { color: #fff; }

/* ---- ROI calculator ----------------------------------------------------- */
.roi {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.roi-inputs { background: var(--paper); padding: clamp(26px,3.5vw,42px); }
.roi-output { background: var(--navy); color: #fff; padding: clamp(26px,3.5vw,42px); }
.field { margin-bottom: 24px; }
.field label { display: flex; justify-content: space-between; font-weight: 600; font-size: .93rem; margin-bottom: 12px; }
.field label .fval { font-family: var(--font-display); font-weight: 800; color: var(--orange-deep); }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px;
  background: var(--line-strong); outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); border: 4px solid var(--paper); box-shadow: var(--shadow); cursor: pointer; transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); border: 4px solid var(--paper); cursor: pointer; }
.roi-result { margin-bottom: 22px; }
.roi-result .label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.roi-result .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem,5vw,3.3rem); color: #fff; line-height: 1.05; letter-spacing: -.03em; }
.roi-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--navy-line); }
.roi-row:last-of-type { border-bottom: none; }
.roi-row span { color: rgba(255,255,255,.68); }
.roi-row b { font-family: var(--font-display); font-weight: 800; }
.roi-row b#roi-multiple { color: var(--orange); }
.roi-note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 18px; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color:#fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,78px); text-align:center; }
.cta-band::before {
  content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(680px 300px at 50% -20%, rgba(245,124,32,.16), transparent 62%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2, .cta-band h3 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.78); }
.cta-band .btn { margin-top: 26px; }
.cta-band .fineprint { margin-top: 15px; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---- Book / Typeform page ---------------------------------------------- */
.book-shell { min-height: 100vh; background: var(--navy); position: relative; overflow:hidden; padding-top: 108px; }
.book-shell h1, .book-shell h2, .book-shell h3 { color: #fff; }
.book-shell .lead { color: rgba(255,255,255,.8); }
.book-shell .eyebrow { color: rgba(255,255,255,.6); }
.book-shell::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(760px 460px at 82% 0%, rgba(245,124,32,.14), transparent 58%);
}
.book-grid { position: relative; z-index:1; display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px,4vw,54px); align-items: start; padding-bottom: 60px; }
.book-form-card { background:var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px; min-height: 640px; overflow: hidden; }
.book-form-card [data-tf-live] { min-height: 620px; }
.book-aside { color:#fff; position: sticky; top: 108px; }
.book-aside .step-mini { display:flex; gap:14px; padding: 13px 0; align-items:flex-start; }
.book-aside .step-mini .n { width:29px;height:29px;border-radius:50%;background:rgba(255,255,255,.1);border:1px solid var(--navy-line);color:#fff;display:grid;place-items:center;font-weight:800;font-size:.82rem;flex-shrink:0;}
.book-aside .step-mini b { display:block; }
.book-aside .step-mini span { color: rgba(255,255,255,.6); font-size:.9rem; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:16px; padding: 22px 0; cursor:pointer; font-family: var(--font-display); font-weight:700; font-size:1.12rem; letter-spacing:-.01em; }
.faq-q .pm { font-size:1.4rem; color: var(--orange-deep); transition: transform .3s; flex-shrink:0; line-height:1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 22px; color: var(--muted); }
.faq-a a { color: var(--orange-deep); font-weight: 600; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding-top: clamp(54px,7vw,88px); }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.site-footer .brand img { height: 44px; }
.site-footer .brand-word { color: #fff; }
.footer-about p { margin-top: 18px; max-width: 330px; font-size:.94rem; line-height: 1.6; }
.footer-col h4 { color:#fff; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; font-family: var(--font-body); font-weight: 700; }
.footer-col a { display:block; padding: 7px 0; color: rgba(255,255,255,.62); font-size:.93rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding-block: 24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:.83rem; color: rgba(255,255,255,.5); }

/* ---- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.07s}.reveal[data-d="2"]{transition-delay:.14s}
.reveal[data-d="3"]{transition-delay:.21s}.reveal[data-d="4"]{transition-delay:.28s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ---- Page hero (inner pages) ------------------------------------------- */
.page-hero { position: relative; background: var(--navy); color:#fff; padding-top: clamp(138px,16vh,186px); padding-bottom: clamp(52px,7vw,88px); overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(780px 380px at 78% -10%, rgba(245,124,32,.16), transparent 62%); }
.page-hero .wrap { position:relative; z-index:1; }
.page-hero h1, .page-hero h2, .page-hero h3 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.8); }
.page-hero .eyebrow { color: rgba(255,255,255,.6); }
.page-hero h1 .hl { color: var(--orange); }
.page-hero .pill { background: rgba(255,255,255,.06); border-color: var(--navy-line); color:#fff; box-shadow:none; }
.page-hero .hero-card { background: rgba(255,255,255,.04); border-color: var(--navy-line); }
.page-hero .hero-card .card-top { border-color: var(--navy-line); }
.page-hero .hero-card .card-top b { color:#fff; }
.page-hero .hero-card .appt-row { border-color: rgba(255,255,255,.06); }
.page-hero .hero-card .appt-av { background: rgba(255,255,255,.06); border-color: var(--navy-line); color:#fff; }
.page-hero .hero-card .appt-av .icon { color: #46d38a; }
.page-hero .hero-card .appt-row .meta b { color:#fff; }
.page-hero .hero-card .appt-row .val { color:#fff; }
.breadcrumb { color: rgba(255,255,255,.5); font-size:.84rem; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }

/* ---- Stat strip --------------------------------------------------------- */
.stat-strip { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-strip .stat { text-align:center; }
.stat-strip .stat b { font-family: var(--font-display); font-weight:900; font-size: clamp(2rem,4vw,3rem); color: var(--ink); display:block; line-height:1; letter-spacing:-.03em; }
.stat-strip .stat .stars { color: var(--orange); font-size: 1.3rem; }
.dark .stat-strip .stat b, .page-hero .stat-strip .stat b { color: #fff; }
.stat-strip .stat span { color: var(--muted); font-size:.9rem; font-weight:500; }
.dark .stat-strip .stat span, .page-hero .stat-strip .stat span { color: rgba(255,255,255,.6); }

/* ---- Partners / logo marquee ------------------------------------------- */
.partners { padding-block: clamp(44px,6vw,76px); border-block: 1px solid var(--line); background: var(--bg); overflow: hidden; }
.partners .lead-line { text-align: center; margin-bottom: 32px; }
.partners .lead-line b { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.4rem,3vw,2rem); color: var(--ink); letter-spacing: -.025em; display: block; }
.partners .lead-line span { color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.logo-marquee { position: relative; overflow: hidden; cursor: grab; user-select: none; touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-marquee.dragging { cursor: grabbing; }
.logo-track { display: flex; align-items: center; gap: clamp(38px,6vw,78px); width: max-content; will-change: transform; }
.logo-set { display: flex; align-items: center; gap: clamp(38px,6vw,78px); flex-shrink: 0; }
.logo-track img { height: clamp(30px,4vw,46px); width: auto; object-fit: contain; opacity: .95;
  -webkit-user-drag: none; user-select: none; pointer-events: none; }
@media (prefers-reduced-motion: reduce){ .logo-track { flex-wrap: wrap; justify-content: center; transform: none !important; } }

/* ---- Trade card photo --------------------------------------------------- */
.trade.has-photo { padding: 0; }
.trade .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.trade .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.trade.has-photo:hover .thumb img { transform: scale(1.06); }
.thumb-overlay { position: absolute; inset: auto 0 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 18px;
  background: linear-gradient(to top, rgba(8,10,14,.85), rgba(8,10,14,.12) 62%, transparent); }
.thumb-overlay h3 { color: #fff; font-size: 1.16rem; letter-spacing: -.02em; margin: 0; }
.arrow-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  display: grid; place-items: center; color: #fff; flex-shrink: 0; background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease); }
.arrow-btn .icon { width: 16px; height: 16px; stroke-width: 1.9; }
.trade.has-photo:hover .arrow-btn { background: #fff; color: var(--ink); border-color: #fff; transform: translate(2px,-2px); }
.trade .body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.trade .body .range { margin-bottom: 2px; }

/* ---- Team --------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,26px); margin-top: 48px; }
.team-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-card .photo { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-2); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 22px 24px; }
.team-card .info b { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -.02em; display: block; }
.team-card .info .role { color: var(--orange-deep); font-weight: 600; font-size: .9rem; margin-top: 3px; }
.team-card.stat-card { display: grid; place-items: center; text-align: center; padding: clamp(28px,4vw,40px); background: var(--navy); }
.team-card.stat-card b { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem,6vw,3.6rem); color: #fff; line-height: 1; letter-spacing: -.03em; }
.team-card.stat-card .role { color: rgba(255,255,255,.62); margin-top: 8px; font-size: .95rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .main-nav, .header-cta .rating-chip { display: none; }
  .nav-toggle { display: block; }
  .header-cta { margin-left: auto; }
  .hero-grid, .exclusive-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-aside { position: static; order: 2; }
}
@media (max-width: 880px){
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .cols-3, .trade-grid { grid-template-columns: repeat(2,1fr); }
  .split, .roi, .price-split, .footer-grid, .dq-grid, .team-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { gap: 28px; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .cols-2, .cols-4, .cols-3, .trade-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  .hero-proof { gap: 22px; }
  .steps { gap: 26px; }
}
