/* ============================================
   TAB Agent LP — Stylesheet
   Brand: deep navy + tan + cyan accent
   ============================================ */

:root {
  --navy: #0d3b66;
  --navy-deep: #082849;
  --navy-soft: #154a7f;
  --tan: #a89b8a;
  --cyan: #5fd7e4;
  --cyan-soft: #d4f5f8;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-dark: #0a2a4a;
  --bg-dark-2: #06203c;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(13, 59, 102, 0.08);
  --shadow-lg: 0 25px 60px rgba(13, 59, 102, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cyan-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: var(--cyan);
  background: rgba(95, 215, 228, 0.12);
}
.accent { color: var(--cyan); }
.muted { color: var(--muted); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-soft);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-logo { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .btn { color: #fff; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(95,215,228,0.18), transparent 60%),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.lede {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 24px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-ctas .btn {
  padding: 14px 22px;
  font-size: 0.95rem;
}
.hero-proof {
  list-style: none;
  padding: 32px 0 0;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 100%;
}
@media (max-width: 720px) {
  .hero-proof {
    grid-template-columns: repeat(2, auto);
    margin-top: 40px;
    padding-top: 24px;
    gap: 14px 0;
  }
}
.hero-proof li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}
.hero-proof li:last-child { border-right: none; }
@media (max-width: 720px) {
  .hero-proof li { padding: 0 24px; }
  .hero-proof li:nth-child(2) { border-right: none; }
}
.hero-proof strong {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-proof span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
/* Hero earnings preview — live demo of the calculator */
.hero-preview {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-preview::before {
  content: "";
  position: absolute;
  inset: -50% -30% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(95, 215, 228, 0.28), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-preview > * { position: relative; z-index: 1; }

.hero-preview-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(95, 215, 228, 0.12);
  border: 1px solid rgba(95, 215, 228, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-preview-setup {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.hero-preview-setup strong {
  color: #fff;
  font-weight: 700;
}

.hero-preview-lift {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 0 4px;
  font-feature-settings: "tnum";
}
.hero-preview-prefix {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-right: 2px;
}
.hero-preview-number {
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-preview-suffix {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.hero-preview-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.hero-preview-pct {
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-preview-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hero-preview-note {
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.hero-preview-breakdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 22px;
}
.hero-preview-breakdown > div { display: flex; flex-direction: column; gap: 4px; }
.hero-preview-breakdown > div:not(.arrow):last-child { text-align: right; }
.hero-preview-breakdown span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-preview-breakdown strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
}
.hero-preview-breakdown > div:last-child strong { color: var(--cyan); }
.hero-preview-breakdown .arrow {
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  font-weight: 300;
}

.hero-preview-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.hero-preview-cta:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.hero-preview-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.18s ease;
}
.hero-preview-cta:hover .hero-preview-cta-arrow {
  transform: translateY(2px);
}

@media (max-width: 600px) {
  .hero-preview { padding: 24px 22px 22px; }
  .hero-preview-breakdown {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left !important;
  }
  .hero-preview-breakdown > div:not(.arrow):last-child { text-align: left; }
  .hero-preview-breakdown .arrow {
    transform: rotate(90deg);
    text-align: left;
    font-size: 1.2rem;
  }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--bg-soft);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-badge {
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ============ IMAGE BAND (cinematic break) ============ */
.image-band {
  position: relative;
  height: clamp(220px, 36vw, 360px);
  overflow: hidden;
  isolation: isolate;
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 40, 73, 0.55) 0%,
      rgba(8, 40, 73, 0.35) 40%,
      rgba(8, 40, 73, 0.85) 100%);
  z-index: 1;
}
.image-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.image-band-overlay .eyebrow {
  background: rgba(95,215,228,0.18);
  border: 1px solid rgba(95,215,228,0.35);
  margin-bottom: 14px;
}
.image-band-overlay p {
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* ============ SPLIT INTRO ============ */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .split-intro { grid-template-columns: 1fr; gap: 28px; }
}
.split-intro-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.split-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.split-intro-photo:hover img { transform: scale(1.02); }
.split-intro-copy h2 { margin-bottom: 14px; }
.split-intro-copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* ============ TRANSITION HEAD (photo + copy) ============ */
.transition-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .transition-head { grid-template-columns: 1fr; gap: 28px; }
}
.transition-head-copy h2 { margin-bottom: 14px; }
.transition-head-copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}
.transition-head-photo {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.transition-head-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.transition-head-photo figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 10px 14px;
  background: rgba(13, 59, 102, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section.gray { background: var(--bg-soft); }
.section.dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.78); }
.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head p {
  color: var(--ink-2);
  font-size: 1.05rem;
}
.section.dark .section-head p { color: rgba(255,255,255,0.78); }
.section-foot {
  text-align: center;
  margin: 36px auto 0;
  max-width: 720px;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============ CALCULATOR ============ */
.calc-section { background: var(--bg-soft); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .calc-grid { grid-template-columns: 1fr; }
}
.calc-form, .calc-result {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--ink);
}

/* Info tooltip used inside form labels */
.info-tip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  cursor: help;
  outline: none;
}
.info-tip-icon {
  font-size: 0.95em;
  color: var(--navy);
  opacity: 0.7;
  font-weight: 400;
  transition: opacity 0.15s;
}
.info-tip:hover .info-tip-icon,
.info-tip:focus .info-tip-icon { opacity: 1; }
.info-tip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  max-width: 320px;
  background: var(--ink);
  color: #fff;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 5;
  text-transform: none;
  letter-spacing: 0;
  pointer-events: none;
}
.info-tip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.info-tip-content strong { color: var(--cyan); font-weight: 600; }
.info-tip:hover .info-tip-content,
.info-tip:focus .info-tip-content {
  opacity: 1;
  visibility: visible;
}
.field small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}
.field input[type="number"],
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}
.input-prefix, .input-suffix {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.input-prefix:focus-within, .input-suffix:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}
.input-prefix span, .input-suffix span {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--bg-soft);
  color: var(--muted);
  font-weight: 600;
}
.input-prefix input, .input-suffix input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  box-shadow: none !important;
}
.input-prefix input:focus, .input-suffix input:focus {
  box-shadow: none !important;
}
.field input[type="range"] {
  width: 100%;
  accent-color: var(--navy);
  margin-top: 6px;
}
.select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d3b66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}
.range-value {
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-top: 4px;
}
.range-value span { font-weight: 700; color: var(--navy); }

.calc-result-head { margin-bottom: 20px; }
.calc-result-head h3 { font-size: 1.4rem; }
.calc-numbers {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 20px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.calc-row span { color: var(--ink-2); }
.calc-row strong { color: var(--ink); font-size: 1.05rem; }
.calc-row.total {
  border-bottom: none;
  padding-top: 16px;
}
.calc-row.total span { font-weight: 700; color: var(--ink); }
.calc-row.total strong { color: var(--navy); font-size: 1.3rem; }
.calc-lift {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.calc-lift > div { display: flex; flex-direction: column; }
.calc-lift span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.calc-lift strong {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-top: 4px;
}
.calc-lift-pct { text-align: right; }
.calc-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}
.lead-form {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 8px;
}
.lead-form.bordered {
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.lead-form h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--ink);
}
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .lead-row { grid-template-columns: 1fr; }
}
.lead-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}
.lead-form .btn { margin-top: 8px; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

/* ============ FEATURE GRID ============ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }
.card-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.card-feature:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}
.card-icon {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.card-feature h3 { color: #fff; font-size: 1.15rem; }
.card-feature p { font-size: 0.92rem; line-height: 1.6; }

/* ============ STATS — bare numbers on hairlines ============ */
.grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .grid-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 36px 24px;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}
.stat-card:last-child { border-right: none; }
@media (max-width: 800px) {
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat-card strong {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============ SPLIT TABLE ============ */
.split-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
@media (max-width: 720px) {
  .split-table { grid-template-columns: 1fr; padding: 28px; }
  .split-divider { display: none; }
}
.split-col h3 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.split-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.split-col li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  color: var(--ink-2);
}
.split-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--cyan);
  font-weight: 800;
}
.split-col li:last-child { border-bottom: none; }
.split-divider {
  width: 1px;
  background: var(--line);
}

/* ============ STEPS — connected flow, no boxes ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.grid-3::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 38px; /* aligns with center of step number */
  height: 2px;
  background: repeating-linear-gradient(to right, var(--cyan) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3::before { display: none; }
}
.step-card {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.step-card:first-child { padding-left: 0; }
.step-card:last-child  { padding-right: 0; }
@media (max-width: 800px) {
  .step-card { padding: 0 0 28px; }
  .step-card + .step-card { padding-top: 28px; border-top: 1px solid var(--line); }
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 22px;
  border: 6px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line);
}
.step-card h3 { color: var(--navy); margin-bottom: 10px; }
.step-card p { color: var(--ink-2); margin: 0; }

/* ============ PLAYBOOK ============ */
.playbook-section {
  background: linear-gradient(135deg, #f0f9fb 0%, #e7f3f6 100%);
}
.playbook-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 880px) {
  .playbook-grid { grid-template-columns: 1fr; gap: 32px; }
}
.playbook-cover {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 4px var(--radius-lg) var(--radius-lg) 4px;
  padding: 48px 38px 56px 56px;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  color: #fff;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow:
    /* Stacked page slivers behind the cover */
    3px 3px 0 -2px #f4ecd8,
    3px 3px 0 -1px rgba(0, 0, 0, 0.10),
    6px 6px 0 -3px #ebe2cc,
    6px 6px 0 -2px rgba(0, 0, 0, 0.10),
    9px 9px 0 -4px #e2d8be,
    9px 9px 0 -3px rgba(0, 0, 0, 0.10),
    /* Main drop shadow */
    0 25px 60px rgba(13, 59, 102, 0.18);
}
.playbook-cover:hover {
  box-shadow:
    3px 3px 0 -2px #f4ecd8,
    3px 3px 0 -1px rgba(0, 0, 0, 0.10),
    6px 6px 0 -3px #ebe2cc,
    6px 6px 0 -2px rgba(0, 0, 0, 0.10),
    9px 9px 0 -4px #e2d8be,
    9px 9px 0 -3px rgba(0, 0, 0, 0.10),
    0 30px 70px rgba(13, 59, 102, 0.24);
}
.playbook-cover:hover { transform: rotate(0deg); }

/* Cyan glow in the corner */
.playbook-cover::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(95,215,228,0.4), transparent 70%);
  pointer-events: none;
}

/* Spine band on the left edge */
.playbook-cover::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 14px;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.35) 0%,
      rgba(255,255,255,0.04) 60%,
      rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-right: 1px solid rgba(95,215,228,0.25);
}

.playbook-cover-inner { position: relative; z-index: 1; }
.playbook-cover h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 12px 0 6px;
}
.playbook-cover p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 22px;
  font-size: 1rem;
}
.playbook-toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
}
.playbook-toc span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.playbook-copy h2 { margin-bottom: 14px; }
.playbook-copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

/* ============ QUOTE + TESTIMONIALS ============ */
.quote-section { padding: 56px 0 70px; }
.quote-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-wrap blockquote {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 18px;
  font-style: italic;
}
.quote-wrap blockquote::before { content: "\201C"; }
.quote-wrap blockquote::after  { content: "\201D"; }
.quote-attr {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.quote-attr strong { color: var(--cyan); font-weight: 600; }
.quote-attr span { color: rgba(255,255,255,0.7); }

/* Testimonial gallery */
.testimonials {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonials-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.testimonials-head .eyebrow { margin-bottom: 0; }

.testimonial-controls {
  display: flex;
  gap: 8px;
}
.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.testimonial-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-deep);
}
.testimonial-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #fff !important;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);   /* 3 cards visible (gap 18px x2) */
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .testimonial-card {
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 880px) {
  .testimonial-track { grid-auto-columns: calc((100% - 18px) / 2); }
}
@media (max-width: 540px) {
  .testimonial-track { grid-auto-columns: 100%; }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.testimonial-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.testimonial-dots button:hover { background: rgba(255,255,255,0.32); }
.testimonial-dots button[aria-current="true"] {
  background: var(--cyan);
  width: 44px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(95,215,228,0.4);
}
.testimonial-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(95,215,228,0.15), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 4px);
  pointer-events: none;
}
.testimonial-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1;
}
.testimonial-play svg { transform: translateX(2px); }
.testimonial-card:hover .testimonial-play {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
  transform: scale(1.05);
}
.testimonial-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1;
}
.testimonial-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-meta strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.testimonial-meta span {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

/* ============ FAQ — connected list, no individual boxes ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
  position: relative;
  transition: background 0.18s;
}
.faq-list details[open] {
  background: var(--bg-soft);
}
.faq-list details[open]::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--cyan);
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 8px 22px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-list summary:hover { color: var(--navy); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 300;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 20px 24px;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 65ch;
}

/* ============ FINAL CTA ============ */
.cta-section {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(95,215,228,0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.18;
  filter: saturate(0.85) blur(1px);
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 40, 73, 0.92) 0%,
      rgba(6, 32, 60, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-wrap { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-section h2 { color: #fff; }
.cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.cta-contact a { color: var(--cyan); font-weight: 600; }
.cta-contact a:hover { color: #fff; }

/* ============ FOOTER ============ */
.footer {
  background: #06203c;
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer strong { color: #fff; display: block; margin-bottom: 6px; }
.footer span { display: block; line-height: 1.7; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--cyan); }
.footer-meta { color: rgba(255,255,255,0.5); }
.footer-disclaimer {
  font-size: 0.78rem;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.55;
}
