/* ============================================================
   SellerChamp Lister — landing page
   Brand: navy #2d6cb6 · teal #00cfa7
   ============================================================ */

:root {
  --navy:        #2d6cb6;
  --navy-dark:   #245a9a;
  --navy-ink:    #0f2742;
  --teal:        #00cfa7;
  --teal-dark:   #00ae92;
  --teal-soft:   #e8f8f2;
  --ink:         #14202e;
  --body:        #475467;
  --muted:       #667085;
  --line:        #e4e9f0;
  --line-soft:   #eef2f7;
  --bg:          #ffffff;
  --bg-soft:     #f6f9fc;
  --bg-navy:     #0f2742;
  --amber:       #f59e0b;
  --star:        #f5a623;

  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --shadow-md:   0 6px 18px rgba(16,24,40,.08), 0 2px 6px rgba(16,24,40,.05);
  --shadow-lg:   0 24px 48px -12px rgba(16,24,40,.18);

  --display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
}

/* ---- reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- layout helpers --------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
}
.section__head { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(26px, 4vw, 26px); font-weight: 800; }
.section__head p { margin-top: 16px; font-size: 18px; color: var(--muted); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }

/* ---- buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: #03332a; box-shadow: 0 6px 16px rgba(0,207,167,.35); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: #fff; }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--bg-navy); color: #cdd9e8;
  font-size: 13.5px; text-align: center; padding: 7px 16px;
}
.topbar a { color: #fff; font-weight: 600; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: linear-gradient(90deg, #fff7ed, #fef3c7);
  border-bottom: 1px solid #fde68a;
  color: #7c2d12; font-size: 14.5px; text-align: center;
  padding: 10px 16px;
}
.announce strong { color: #7c2d12; }
.announce a { color: var(--navy); font-weight: 700; margin-left: 6px; white-space: nowrap; }

/* ============================================================
   Header / nav
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 900; font-size: 21px; color: var(--navy-ink); letter-spacing: -.02em; }
.nav__logo-img { height: 36px; width: auto; }
.nav__logo .mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--navy), var(--teal)); display: inline-block; }
.nav__links { display: flex; gap: 26px; margin-left: 10px; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--ink); }
.nav__links a:hover { color: var(--navy); }
.nav__cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav__cta .login { font-weight: 600; font-size: 15px; color: var(--ink); }
.nav__toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; padding: 4px 8px; line-height: 1; }
.nav--open .nav__toggle { color: var(--navy); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 40px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 95% 0%, rgba(0,207,167,.16) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at -5% 100%, rgba(255,255,255,.1) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  color: #fff;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45);
  font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 900; max-width: none; color: #fff; line-height: 1.08; }
.hero__accent { color: var(--teal); }
.hero__sub { margin-top: 22px; font-size: 18px; color: rgba(255,255,255,.92); max-width: 52ch; line-height: 1.65; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero__assure {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  margin-top: 28px; color: rgba(255,255,255,.92); font-size: 14.5px; font-weight: 500;
}
.hero__assure span { display: inline-flex; align-items: center; gap: 8px; }
.hero__assure span::before { content: "✓"; color: var(--teal); font-weight: 800; }

.hero__media-col { min-width: 0; }
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hero-illustration-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,207,167,.18);
}
.hero-illustration-wrap.hero-scan-video { cursor: pointer; }
.hero-illustration-poster { position: relative; display: block; }
.hero-illustration-poster.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-illustration-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,26,74,.02) 0%, rgba(0,26,74,.28) 100%);
  pointer-events: none;
}
.hero-illustration-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero-illustration-play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--navy);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.hero-illustration-wrap.hero-scan-video:hover .hero-illustration-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.hero-illustration-wrap video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.hero-illustration { display: block; width: 100%; height: auto; }
.hero-illustration-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,207,167,.6) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-illustration-caption {
  max-width: 620px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  text-align: center;
  font-style: italic;
  letter-spacing: .005em;
  margin: 0;
}
.hero-illustration-caption strong {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-style: normal;
}

/* marketplace strip */
.mstrip { margin-top: 40px; text-align: center; }
.mstrip__label { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 700; }
.mstrip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.chip {
  font-weight: 700; font-size: 14px; color: var(--navy-ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
}
.chip--muted { color: var(--muted); }

/* ============================================================
   Credentials / badges
   ============================================================ */
.cred { background: linear-gradient(180deg, rgba(45,108,182,.06) 0%, var(--bg) 100%); }
.cred__inner { max-width: 1140px; }
.cred .section__head h2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.3; }

.cred__partners {
  display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap;
  gap: 14px; margin-bottom: 28px;
}
.cred__mp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; min-height: 56px;
  background: #fff; border: 1.5px solid var(--navy); border-radius: 8px;
  box-shadow: 0 2px 4px rgba(45,108,182,.04);
  transition: transform .15s ease;
}
.cred__mp:hover { transform: translateY(-1px); }
.cred__mp-logo { height: 28px; width: auto; max-width: 110px; object-fit: contain; flex-shrink: 0; }
.cred__mp-tier { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }

.cred__awards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 920px; margin: 0 auto 28px;
}
.cred__award {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; position: relative; min-height: 170px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cred__award:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,108,182,.06); }
.cred__award::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px; background: var(--teal); border-radius: 0 0 4px 4px;
}
.cred__award-badge { display: block; max-width: 100%; max-height: 140px; width: auto; height: auto; object-fit: contain; }

.cred__ratings {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 36px; padding-top: 26px; border-top: 1px solid var(--line-soft);
}
.cred__rating { display: inline-flex; align-items: center; gap: 8px; }
.cred__rating-platform { font-family: var(--display); font-size: 13.5px; font-weight: 700; color: var(--ink); }
.cred__rating-score { font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--navy); }
.cred__rating-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }

/* ============================================================
   Demo
   ============================================================ */
.video-frame {
  max-width: 940px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #0b1726;
}
.video-frame .embed { position: relative; aspect-ratio: 16 / 9; background: #0b1726; }
.video-frame .embed iframe,
.video-frame .embed video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.video-frame--click { cursor: pointer; }
.video-frame--click.is-playing { cursor: default; }
.video-frame__poster {
  position: absolute; inset: 0; z-index: 1;
  display: block; margin: 0;
}
.video-frame__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,23,38,.05) 0%, rgba(11,23,38,.35) 100%);
  pointer-events: none;
}
.video-frame__poster.is-hidden { display: none; }
.video-frame__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.video-frame__play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--navy);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.video-frame--click:hover .video-frame__play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}

/* ============================================================
   Included features grid
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: box-shadow .15s ease, transform .15s ease;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature__ic {
  width: 42px; height: 42px; border-radius: 10px; background: #e8f8f2;
  display: grid; place-items: center; margin-bottom: 16px;
}
.feature__ic svg { width: 20px; height: 20px; color: var(--teal-dark); display: block; flex-shrink: 0; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   Pricing
   ============================================================ */
.toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 44px; font-weight: 600; color: var(--muted); }
.toggle__btn {
  position: relative; width: 56px; height: 30px; border-radius: 999px; border: 0;
  background: var(--navy); cursor: pointer; padding: 0; transition: background .2s ease;
}
.toggle__btn::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.toggle__btn[aria-checked="true"]::after { transform: translateX(26px); }
.toggle .on { color: var(--ink); }
.toggle__save { background: #d1fae5; color: #047857; font-weight: 700; font-size: 12px; padding: 4px 10px; border-radius: 999px; }

.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; position: relative;
}
.tier--featured { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.tier--platform {
  --plat-navy: #001a4a;
  --plat-navy-mid: #002660;
  --plat-teal: #00cfa7;
  --plat-teal-dark: #00b893;
  --plat-teal-glow: #00ddb8;
  --plat-border: #dde6f5;

  background: linear-gradient(180deg, #fff 0%, #f8faff 60%, #eef2fb 100%);
  border: 2px solid var(--plat-navy);
  box-shadow: 0 16px 38px rgba(0,26,74,.12);
  color: var(--body);
}
.tier--platform::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, var(--plat-navy) 0%, var(--plat-teal) 100%); */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.tier--platform:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,26,74,.18);
}
.tier--platform h3, .tier--platform .price { color: var(--plat-navy); }
.tier--platform .tier__feats li { color: var(--body); }
.tier--platform .tier__feats li::before { color: var(--plat-teal-dark); }
.tier__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.tier--platform .tier__flag {
  background: var(--plat-navy); color: var(--plat-teal-glow);
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; box-shadow: 0 4px 12px rgba(0,26,74,.3);
}
.tier--platform .tier__desc { color: var(--muted); }
.tier--platform .tier__bill { color: var(--muted); }
.tier--platform .tier__feats-label { color: var(--plat-navy); opacity: .7; }
.tier--platform .btn--primary {
  background: var(--plat-navy); color: #fff;
  box-shadow: 0 4px 14px rgba(0,26,74,.25);
}
.tier--platform .btn--primary:hover { background: var(--plat-navy-mid); }
.tier h3 { font-size: 22px; font-weight: 800; }
.tier__desc { font-size: 14px; color: var(--muted); margin: 8px 0 18px; min-height: 40px; }
.price { font-family: var(--display); font-weight: 900; font-size: 40px; color: var(--ink); }
.price small { font-size: 16px; font-weight: 600; color: var(--muted); }
.tier__bill { font-size: 13px; color: var(--muted); margin: 6px 0 20px; }
.tier .btn { margin-bottom: 22px; }
.tier__feats-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.tier__feats { display: grid; gap: 10px; }
.tier__feats li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--body); }
.tier__feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }

/* add-ons */
.addons { margin-top: 40px; border: 1px dashed var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.addons__title { font-weight: 700; color: var(--ink); font-size: 14px; margin-bottom: 16px; }
.addons__title span { color: var(--muted); font-weight: 500; }
.addons__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon { text-align: center; }
.addon .amt { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 20px; }
.addon .lbl { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   Platform CTA band (enterprise strip)
   ============================================================ */
.band {
  --plat-navy: #001a4a;
  --plat-navy-mid: #002660;
  --plat-navy-soft: #0a3068;
  --plat-teal: #00cfa7;
  --plat-teal-dark: #00b893;
  --plat-teal-glow: #00ddb8;

  background:
    radial-gradient(ellipse 70% 50% at 95% 0%, rgba(0,221,184,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at -5% 100%, rgba(0,221,184,.08) 0%, transparent 55%),
    linear-gradient(135deg, var(--plat-navy) 0%, var(--plat-navy-mid) 60%, var(--plat-navy-soft) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plat-navy) 0%, var(--plat-teal) 100%);
}
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, black 30%, transparent 75%);
}
.band__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.band__eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plat-teal-glow);
  margin-bottom: 12px;
}
.band h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  max-width: none;
}
.band p {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}
.band strong { color: #fff; font-weight: 600; }
.band .btn--primary {
  background: var(--plat-teal);
  color: var(--plat-navy);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 14px rgba(0,207,167,.3);
}
.band .btn--primary:hover {
  background: var(--plat-teal-dark);
  box-shadow: 0 6px 20px rgba(0,207,167,.45);
}

/* ============================================================
   Comparison table
   ============================================================ */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table.compare { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
table.compare th, table.compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
table.compare thead th { font-family: var(--display); font-weight: 800; color: var(--ink); background: var(--bg-soft); font-size: 14px; }
table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
table.compare td.us { background: #f0f9f6; font-weight: 700; color: var(--teal); }
table.compare thead th.us { background: var(--navy); color: #fff; }
.compare__logo { display: block; height: 28px; width: auto; margin: 0 auto; }
table.compare tr:last-child td { border-bottom: 0; }
.cell-no { color: #c0392b; }

/* ============================================================
   Testimonials
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.stat { text-align: center; }
.stat .n { font-family: var(--display); font-weight: 900; font-size: 40px; color: var(--navy); }
.stat .l { font-size: 14px; color: var(--muted); margin-top: 4px; }
.reviews { columns: 3; column-gap: 22px; }
.review { break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.review .stars { margin-bottom: 12px; }
.review p { font-size: 14.5px; color: var(--body); }
.review p em { color: var(--navy-ink); font-style: normal; font-weight: 600; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.review__name { font-weight: 700; color: var(--ink); font-size: 14px; }
.review__meta { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink);
  padding: 22px 40px 22px 0; position: relative;
}
.faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--navy); font-family: var(--sans); transition: transform .2s ease; }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 0 22px; color: var(--body); font-size: 15.5px; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============================================================
   Final CTA
   ============================================================ */
.final { background: radial-gradient(1200px 480px at 50% 0%, #eaf3ff, #fff); text-align: center; }
.final .wrap { max-width: 920px; }
.final h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; max-width: none; margin: 0 auto; line-height: 1.12; }
.final p { margin: 20px auto 0; max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.final__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.final__contact { margin-top: 24px; font-size: 14.5px; color: var(--muted); }
.final__contact a { color: var(--navy); font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #001a4a; color: #9fb3c8; padding: 60px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { display: inline-block; margin-bottom: 14px; }
.footer__logo img { display: block; height: 36px; width: auto; }
.footer__brand p { font-size: 14px; max-width: 38ch; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: #9fb3c8; }
.footer ul a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }
.footer__bottom a { color: #9fb3c8; }

/* placeholder utility for images you'll drop in later */
.ph { background:
    repeating-linear-gradient(45deg, #eef2f7 0 12px, #f6f9fc 12px 24px);
  display: grid; place-items: center; color: var(--muted); font-size: 13px; font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid, .tiers { grid-template-columns: repeat(2, 1fr); }
  .reviews { columns: 2; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration-play { width: 56px; height: 56px; }
  .hero-illustration-play::before {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
  .cred__awards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 24px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav__links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav--open .nav__links { display: flex; }
  .nav__inner { position: relative; }
  .nav__toggle { display: block; }
  .nav__cta .login { display: none; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__assure { grid-template-columns: 1fr; }
  .cred__partners { gap: 10px; }
  .cred__mp { padding: 10px 14px; min-height: 48px; gap: 10px; }
  .cred__mp-logo { height: 24px; max-width: 90px; }
  .cred__mp-tier { font-size: 12px; }
  .cred__ratings { gap: 20px 26px; padding-top: 22px; }
  .cred__awards { gap: 10px; }
  .cred__award { padding: 14px 10px; }
  .band__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .band p { margin: 0 auto; }
  .band__cta { display: flex; justify-content: center; }
  .feature-grid, .tiers, .addons__row, .stats { grid-template-columns: 1fr; }
  .reviews { columns: 1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .band { padding: 50px 0; }
}
