/* ==========================================================================
   Elevate Agency — lander redesign (Claude Design handoff "Elevate Lander")
   Loaded by index.html only. Other pages keep styles.css.
   ========================================================================== */

:root {
  --ink: rgb(25, 25, 27);
  --ink-soft: rgb(60, 60, 64);
  --ink-body: rgb(70, 70, 76);
  --ink-mute: rgb(90, 90, 96);
  --ink-faint: rgb(120, 120, 128);
  --ink-ghost: rgb(140, 140, 148);
  --ink-whisper: rgb(150, 150, 158);
  --navy: rgb(30, 58, 138);
  --navy-deep: rgb(11, 20, 55);
  --blue: rgb(59, 130, 246);
  --sky: rgb(147, 197, 253);
  --blue-tint: rgb(239, 246, 255);
  --bg-section: rgb(250, 250, 251);
  --bg-card: rgb(248, 249, 251);
  --line: rgba(0, 0, 0, 0.07);
  --line-soft: rgba(0, 0, 0, 0.06);
  --line-card: rgba(0, 0, 0, 0.08);
  --serif: 'Instrument Serif', serif;
  --mono: 'Geist Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  font-family: 'Geist', sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 32px);
  padding-right: clamp(18px, 4vw, 32px);
}

em.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

@media (max-width: 880px) { .only-desktop { display: none !important; } }
@media (min-width: 881px) { .only-mobile { display: none !important; } }

/* ---- Fade-up reveal (script.js toggles .is-visible) -------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--d, 0ms);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ---- Section header pattern -------------------------------------------- */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
.section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.btn-outline:hover { background: rgb(247, 249, 253); }

/* ---- Navbar ------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; display: block; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop > a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--navy-deep); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
}

/* Mobile dropdown panel (script.js toggles .is-open) */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  list-style: none;
  margin: 0;
}
.nav-links.is-open { display: flex; }
.nav-links li { display: contents; }
.nav-links a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links .nav-links-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  margin-top: 8px;
  border-bottom: none;
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: #fff;
  background-image: radial-gradient(rgba(30, 58, 138, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  overflow: clip;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 62% at 50% 0%, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 55%, #ffffff 100%);
}
.hero-mountain {
  position: absolute;
  right: -50px;
  bottom: -36px;
  width: clamp(220px, 32vw, 440px);
  height: auto;
  opacity: 0.07;
}
.hero-content {
  position: relative;
  padding-top: clamp(112px, 16vw, 168px);
  padding-bottom: clamp(56px, 8vw, 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 2.6vw, 26px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(30, 58, 138, 0.20);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(11, 20, 55, 0.05);
}
.hero-badge svg { width: 15px; height: 12px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 800px;
  margin: 0;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(15.5px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 600px;
  margin: 0;
}
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-top: 6px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta .btn-primary {
  box-shadow: 0 10px 28px rgba(30, 58, 138, 0.25);
}
.hero-cta .btn-primary:hover { transform: translateY(-1px); }
.hero-cta-note { font-size: 13px; color: var(--ink-faint); }

.hero-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-mute);
  font-size: 13px;
  margin-top: 6px;
  text-decoration: none;
}
.tp-stars {
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
  color: var(--navy);
}
.tp-stars .tp-star-half { opacity: 0.4; }
.hero-trustpilot strong, .reviews-aggregate strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---- Trust band ----------------------------------------------------------- */
.trust-band {
  padding-bottom: clamp(40px, 6vw, 64px);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}
.trust-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--blue-tint);
  border-radius: 11px;
}
.trust-num {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.num-suffix {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--navy);
  margin-left: 5px;
}
.trust-label {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 230px;
}

/* ---- Tinted sections ------------------------------------------------------ */
.section-tint {
  background: var(--bg-section);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-pad {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 44px);
}

/* ---- Category ------------------------------------------------------------- */
.category-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.category-body p {
  font-size: clamp(16px, 1.9vw, 17.5px);
  line-height: 1.65;
  margin: 0;
}
.category-subhead {
  font-size: clamp(20px, 2.4vw, 23px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 14px 0 0;
}
.category-closer { font-weight: 500; }

.reference-card {
  display: block;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(11, 20, 55, 0.05);
}
.reference-card-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3.4vw, 34px);
}
.reference-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.reference-card-source { color: var(--ink); }
.reference-card-sep { color: rgba(0, 0, 0, 0.25); }
.reference-card-title {
  font-size: clamp(17px, 2.1vw, 19px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
}
.reference-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}

.category-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.category-stat-card {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.category-stat-num {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.category-stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.category-stat-source {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-whisper);
}
.category-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.category-notes p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-ghost);
  margin: 0;
}
.category-notes a { color: inherit; }

/* ---- Compare --------------------------------------------------------------- */
.compare-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-row {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: clamp(18px, 2.6vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-row-header {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.compare-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.compare-cell {
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-cell.is-franchise { background: var(--bg-card); }
.compare-cell.is-elevate {
  background: var(--blue-tint);
  border: 1px solid rgba(59, 130, 246, 0.18);
}
.compare-cell-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.is-elevate .compare-cell-tag { color: var(--navy); }
.compare-cell-text {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-body);
}
.is-elevate .compare-cell-text { color: var(--ink); }
.compare-mark {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.compare-mark-x {
  background: rgba(120, 120, 128, 0.13);
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
}
.compare-mark-check {
  background: rgba(30, 58, 138, 0.13);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}
.compare-bar {
  display: block;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  overflow: hidden;
}
.is-elevate .compare-bar { background: rgba(30, 58, 138, 0.10); }
.compare-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: rgb(160, 160, 168);
  border-radius: 100px;
  transition: width 1.1s cubic-bezier(.22, .61, .36, 1);
}
.is-elevate .compare-bar-fill { background: var(--navy); }
.compare-table.is-visible .compare-bar-fill { width: var(--bar-target, 0%); }

.compare-foot, .guarantees-foot {
  font-size: 12.5px;
  color: var(--ink-ghost);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.compare-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.compare-cta .btn-primary {
  padding: 15px 28px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.20);
}
.compare-cta .btn-primary:hover { transform: translateY(-1px); }
.compare-cta-note { font-size: 12.5px; color: var(--ink-ghost); }

/* ---- Guarantees -------------------------------------------------------------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 12px;
}
.guarantee-card {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guarantee-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.guarantee-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--blue-tint);
  border-radius: 12px;
}
.guarantee-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-whisper);
}
.guarantee-numeral {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.guarantee-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin: 0;
}
.guarantee-card > p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.guarantee-contrast {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.guarantee-contrast strong { font-weight: 600; color: var(--ink-mute); }

/* Guarantee 05 — dark hero card */
.guarantee-hero {
  background: var(--navy-deep);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 44px);
  position: relative;
  overflow: clip;
}
.guarantee-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(147, 197, 253, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
}
.guarantee-hero-mountain {
  position: absolute;
  right: -30px;
  bottom: -26px;
  width: clamp(160px, 24vw, 300px);
  height: auto;
  opacity: 0.10;
}
.guarantee-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}
.guarantee-hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.guarantee-hero .guarantee-icon {
  color: var(--sky);
  background: rgba(147, 197, 253, 0.12);
}
.guarantee-hero .guarantee-num { color: rgba(255, 255, 255, 0.55); }
.guarantee-hero-numeral {
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.guarantee-hero-numeral .num-suffix {
  font-size: 0.45em;
  color: var(--sky);
  margin-left: 7px;
}
.guarantee-hero h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.guarantee-hero p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.guarantee-hero .guarantee-contrast {
  color: rgba(255, 255, 255, 0.50);
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.guarantee-hero .guarantee-contrast strong { color: rgba(255, 255, 255, 0.70); }

/* ---- The Build ----------------------------------------------------------------- */
.build-section .section-pad { gap: clamp(32px, 4.5vw, 48px); }

.build-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 10px;
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-card-day {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.timeline-card-label {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.timeline-card.is-final {
  background: var(--blue-tint);
  border-color: rgba(59, 130, 246, 0.20);
}
.timeline-card.is-final .timeline-card-label {
  color: var(--ink);
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 12px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11, 20, 55, 0.08);
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin: 0;
}
.feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

.industries {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.industries-label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---- Principles --------------------------------------------------------------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 12px;
}
.principle-card {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.principle-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.principle-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin: 4px 0 0;
}
.principle-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.principle-card-cta {
  background: var(--navy-deep);
  border: none;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
}
.principle-card-cta span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  letter-spacing: -0.01em;
}
.principle-card-cta a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--navy-deep);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.principle-card-cta a:hover { background: var(--blue-tint); }

/* ---- Reviews ------------------------------------------------------------------- */
.reviews-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-mute);
  font-size: 13px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 100px;
  padding: 9px 18px;
  text-decoration: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 12px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars {
  letter-spacing: 2.5px;
  font-size: 15px;
  line-height: 1;
  color: var(--navy);
}
.review-card blockquote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  flex: 0 0 38px;
}
.avatar-1 { background: var(--navy); }
.avatar-2 { background: var(--blue); }
.avatar-3 { background: rgb(96, 165, 250); }
.avatar-4 { background: var(--navy-deep); }
.review-meta-text { display: flex; flex-direction: column; gap: 2px; }
.review-author { font-size: 13.5px; font-weight: 600; }
.review-source { font-size: 12px; color: var(--ink-ghost); }
.reviews-foot {
  text-align: center;
  margin: 0;
  font-size: 13px;
  color: var(--ink-ghost);
}
.reviews-foot a { color: inherit; }

/* ---- FAQ -------------------------------------------------------------------------- */
.faq-section .container {
  max-width: 840px;
}
.faq-section .section-pad { gap: clamp(28px, 4vw, 40px); }
.faq-list {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 18px;
  padding: 6px clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 19px 2px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-chevron {
  flex: 0 0 18px;
  transition: transform 0.3s ease;
  color: var(--navy);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(.22, .61, .36, 1);
}
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.faq-answer-inner p { margin: 0; padding: 0 2px 20px; }
.faq-foot {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
  text-align: center;
  margin: 0;
}
.faq-foot a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
}

/* ---- Fit check --------------------------------------------------------------------- */
.fit-section .section-pad { gap: clamp(28px, 4vw, 40px); }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 12px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.fit-card {
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-card.is-yes {
  background: var(--blue-tint);
  border: 1px solid rgba(59, 130, 246, 0.18);
}
.fit-card.is-no {
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.fit-card-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.is-yes .fit-card-title { color: var(--navy); }
.is-no .fit-card-title { color: var(--ink-mute); }
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fit-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}
.is-yes .fit-card li { color: var(--ink); }
.is-no .fit-card li { color: var(--ink-body); }

/* ---- Final CTA ------------------------------------------------------------------------ */
.final-cta {
  background: var(--navy-deep);
  position: relative;
  overflow: clip;
}
.final-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(147, 197, 253, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.final-cta-mountain {
  position: absolute;
  left: -50px;
  bottom: -36px;
  width: clamp(200px, 28vw, 380px);
  height: auto;
  opacity: 0.08;
}
.final-cta-inner {
  position: relative;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 28px);
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  max-width: 720px;
  text-wrap: balance;
}
.final-cta h2 em.serif { color: var(--sky); }
.final-sub {
  font-size: clamp(15px, 1.9vw, 16.5px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0;
}
.final-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 10px;
  max-width: 880px;
  width: 100%;
}
.final-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
}
.final-chip svg { flex: 0 0 20px; color: var(--sky); }
.final-chip span {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.final-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
}
.final-cta-block .btn {
  background: #fff;
  color: var(--navy-deep);
  font-size: 15.5px;
  font-weight: 600;
  padding: 17px 36px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.30);
}
.final-cta-block .btn:hover { transform: translateY(-1px); }
.final-cta-note { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

/* ---- Footer ------------------------------------------------------------------------------ */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-top img { height: 32px; width: auto; display: block; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--ink-mute);
  text-decoration: none;
}
.footer-links a.footer-cta {
  color: var(--navy);
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-ghost);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: none;
}

/* ---- Sticky mobile CTA (script.js toggles .is-hidden) ------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.22, .61, .36, 1);
}
.sticky-cta.is-hidden { transform: translateY(110%); }
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.sticky-cta-rating {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.sticky-cta-sub {
  font-size: 11.5px;
  color: var(--ink-faint);
  white-space: nowrap;
}
.sticky-cta .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 881px) {
  .sticky-cta { display: none; }
}
