/* ============================================================
   BusinessEligibility — by Integrity Cap · Powered by IntegriTech
   ============================================================ */

:root {
  --navy-0: #050a14;
  --navy-1: #0a1628;
  --navy-2: #14253f;
  --navy-3: #1c2f4a;
  --cyan: #29B6E8;
  --cyan-2: #1d9bd1;
  --cyan-soft: rgba(41, 182, 232, 0.25);
  --cyan-line: rgba(41, 182, 232, 0.2);
  --cyan-line-strong: rgba(41, 182, 232, 0.4);
  --ink: #e2e8f0;
  --ink-muted: #cbd5e1;
  --ink-dim: #94a3b8;
  --line: rgba(148, 163, 184, 0.12);
  --card-bg: rgba(15, 23, 42, 0.7);
  --max: 1200px;
  --max-narrow: 880px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 48px -24px rgba(0, 0, 0, 0.6),
                 0 1px 0 0 rgba(255, 255, 255, 0.04) inset;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-0);
  color: var(--ink-muted);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { opacity: 0.85; }

/* Headings */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: #f8fafc;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #f1f5f9;
  letter-spacing: -0.005em;
}

.italic-accent { font-style: italic; color: var(--cyan); }
.italic-accent-white { font-style: italic; color: #f8fafc; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--cyan);
  display: inline-block;
}

/* Layout */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(72px, 9vw, 65px) 0; position: relative; }

/* Hero atmosphere — used on every page hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, var(--navy-2) 0%, var(--navy-1) 50%, var(--navy-0) 100%);
  /*padding: 80px 0px 50px 0px;*/
	padding: clamp(100px, 14vw, 120px) 0 clamp(60px, 9vw, 50px);
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--cyan-soft);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.hero::before { top: -200px; left: -200px; }
.hero::after  { bottom: -300px; right: -150px; opacity: 0.7; }

.hero-compact { padding-top: clamp(100px, 11vw, 140px); padding-bottom: clamp(56px, 7vw, 88px); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-lockup {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand-lockup__logo {
  width: 132px;
  height: auto;
  display: block;
}
.brand-lockup__divider {
  width: 1px; height: 22px;
  background: rgba(148, 163, 184, 0.25);
}
.brand-lockup__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.brand-lockup__sub small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #f1f5f9; opacity: 1; }
.nav-links a.is-active { color: #fff; }

.nav-cta { display: inline-flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--cyan-line);
  color: #f1f5f9;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(.2,.7,.3,1.2),
              box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-2) 100%);
  color: var(--navy-0);
  box-shadow: 0 12px 28px -16px rgba(41,182,232,0.7),
              0 1px 0 0 rgba(255,255,255,0.18) inset;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--cyan-line-strong);
  color: var(--cyan);
}
.btn-ghost:hover { color: #f8fafc; border-color: var(--cyan); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover {
  border-color: var(--cyan-line-strong);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(41, 182, 232, 0.1);
  border: 1px solid var(--cyan-line);
  color: var(--cyan);
  margin-bottom: 22px;
}
.card-icon svg { width: 24px; height: 24px; }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Section heading clusters */
.section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head p {
  font-size: 18px;
  color: var(--ink-muted);
  margin-top: 12px;
}

/* Stat bar */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}
.statbar__item { text-align: center; }
.statbar__num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #f8fafc;
  line-height: 1;
  letter-spacing: -0.02em;
}
.statbar__label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

/* Pill / badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 182, 232, 0.08);
  border: 1px solid var(--cyan-line);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(41,182,232,0.06);
  border: 1px solid var(--cyan-line);
  border-radius: 999px;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 600;
}
.guarantee-badge svg { color: var(--cyan); }

/* Hero copy */
.hero h1 { margin-bottom: 22px; max-width: 100%; }
.hero-sub {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 100%;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust band */
.trust-band {
  background: linear-gradient(180deg, var(--navy-0) 0%, var(--navy-1) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-band__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cyan-line);
}
.trust-band__img img { width: 100%; height: 100%; object-fit: cover; }

/* Offer cards (side-by-side) */
.offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.offer {
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(20px);
  position: relative;
}
.offer--featured {
  border-color: var(--cyan-line-strong);
  background: linear-gradient(180deg, rgba(41,182,232,0.05) 0%, rgba(15,23,42,0.7) 100%);
}
.offer__tag {
  position: absolute;
  top: -12px; left: 36px;
  background: var(--cyan);
  color: var(--navy-0);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.offer__name { font-family: 'DM Serif Display', serif; font-size: 28px; color: #f8fafc; margin-bottom: 6px; line-height: 1.1; }
.offer__name em { color: var(--cyan); }
.offer__price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.offer__price-num {
  font-size: 38px; font-weight: 800; color: #f8fafc; letter-spacing: -0.02em;
}
.offer__price-unit { font-size: 14px; color: var(--ink-dim); }
.offer__price-total {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: -10px; margin-bottom: 18px;
  font-weight: 500;
}
.offer__lede {
  color: var(--ink-muted); font-size: 16px;
  margin-bottom: 22px;
  border-left: 2px solid var(--cyan-line-strong);
  padding-left: 16px;
}
.offer__list { list-style: none; padding: 0; margin: 0 0 28px; }
.offer__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.offer__list li:last-child { border-bottom: none; }
.offer__list svg {
  color: var(--cyan); flex-shrink: 0; margin-top: 3px;
}
.offer__best {
  font-size: 13px; color: var(--ink-dim);
  margin: -8px 0 24px;
  font-style: italic;
}
.offer__cta { margin-top: auto; }

/* Comparison table */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.compare th, .compare td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-muted);
  vertical-align: middle;
}
.compare th {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #f8fafc;
  font-weight: 400;
  background: rgba(41, 182, 232, 0.04);
}
.compare th:first-child { width: 40%; }
.compare tr:last-child td { border-bottom: none; }
.compare .check { color: var(--cyan); }
.compare .x { color: rgba(148,163,184,0.5); }
.compare td.feature { color: #f1f5f9; font-weight: 600; }

/* Testimonials */
.t-card {
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-card__quote {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #f8fafc;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.t-card__quote em { color: var(--cyan); }
.t-card__mark { color: var(--cyan); font-size: 32px; line-height: 0; margin-right: 6px; opacity: 0.6; }
.t-card__attrib {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
}
.t-card__who {
  font-size: 14px; font-weight: 700; color: #f1f5f9;
}
.t-card__who small {
  display: block; font-weight: 500; color: var(--ink-dim);
  font-size: 12px; margin-top: 2px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.t-card__amt {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--cyan);
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: 'DM Serif Display', serif;
  color: #f8fafc;
  font-size: 22px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; list-style: none;
  line-height: 1.3;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  color: var(--cyan);
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 16px;
  max-width: 64ch;
}

/* Founder block */
.founder-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-portrait {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cyan-line);
  aspect-ratio: 3/4;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-credentials { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.founder-credentials .pill { background: transparent; }

/* Process / steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(20px);
  position: relative;
}
.step__num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 8px;
}
.step__num small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.step__title { font-family: 'DM Serif Display', serif; font-size: 26px; color: #f8fafc; margin-bottom: 12px; line-height: 1.2; }
.step__body { color: var(--ink-muted); font-size: 15px; }
.step__body em { color: var(--cyan); font-style: italic; }

/* Module / curriculum list */
.curriculum {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.module {
  display: flex;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: 16px;
  padding: 22px;
  align-items: flex-start;
}
.module__num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.module__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 4px;
}
.module__desc { font-size: 13px; color: var(--ink-dim); margin: 0; line-height: 1.55; }

/* Case story grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case {
  background: var(--card-bg);
  border: 1px solid var(--cyan-line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.case__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.case__who {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; color: #f1f5f9;
}
.case__who small {
  display: block; font-size: 12px; color: var(--ink-dim);
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}
.case__amt {
  font-family: 'DM Serif Display', serif;
  font-size: 30px; color: var(--cyan);
  line-height: 1; letter-spacing: -0.01em;
}
.case__story { color: var(--ink-muted); font-size: 15px; line-height: 1.65; }
.case__story em { color: var(--cyan); font-style: italic; }

/* Footer */
.site-footer {
  background: var(--navy-0);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}
.site-footer a:hover { color: #fff; opacity: 1; }
.site-footer__brand { max-width: 360px; }
.site-footer__brand p {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 18px;
  line-height: 1.6;
}
.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-dim);
}
.site-footer__bottom strong { color: #f1f5f9; font-weight: 600; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: rgba(5,10,20,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--cyan-line);
  border-radius: 14px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.8);
}
.sticky-cta__price {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #f8fafc;
}
.sticky-cta__price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Helpers */
.center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.muted { color: var(--ink-dim); }
.divider { width: 100%; height: 1px; background: var(--line); margin: 32px 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== Mobile ===== */
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-flex; }
  .grid-3, .offers, .steps, .grid-2, .curriculum, .case-grid, .grid-4 {
    grid-template-columns: 1fr;
  }
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px; }
  .founder-row { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait { max-width: 280px; margin: 0 auto; }
  .trust-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 88px; }
  .brand-lockup__divider, .brand-lockup__sub { display: none; }
  .brand-lockup__logo { width: 110px; }
  .nav-mobile-open { display: block; }

  /* ── Mobile center alignment ── */
  .hero,
  .hero-compact {
    text-align: center;
  }
  .hero h1,
  .hero h2,
  .hero p,
  .hero-sub,
  .hero .eyebrow {
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero .statbar {
    justify-content: center;
  }
  .hero .tag-row {
    justify-content: center;
  }
  .hero .founder-credentials {
    justify-content: center;
  }
  /* Two-column hero left panel */
  .hero .grid-2 > div:first-child {
    text-align: center;
  }
  .hero .grid-2 .offer__price {
    justify-content: center;
  }
  .hero .grid-2 .hero-ctas {
    justify-content: center;
  }
  .hero .grid-2 .mt-md {
    display: flex;
    justify-content: center;
  }
  .hero .grid-2 .founder-credentials {
    justify-content: center;
  }
  /* Section heads */
  .section-head {
    text-align: center;
  }
  .section-head--left {
    text-align: center;
    margin-left: auto;
  }
  /* Manifesto / wrap-narrow editorial sections */
  .wrap-narrow {
    text-align: center;
  }
  .wrap-narrow .faq-a {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  /* Step cards */
  .step {
    text-align: center;
  }
  .step__num {
    justify-content: center;
  }
  /* Offer cards */
  .offer {
    text-align: center;
    align-items: center;
  }
  .offer__lede {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--cyan-line-strong);
    padding-top: 16px;
    text-align: center;
  }
  .offer__list li {
    text-align: left;
  }
  /* Trust band */
  .trust-band__inner > div:first-child {
    text-align: center;
  }
  .trust-band__inner .tag-row {
    justify-content: center;
  }
  /* Founder row */
  .founder-row > div:last-child {
    text-align: center;
  }
  .founder-row .founder-credentials {
    justify-content: center;
  }
  /* Case grid */
  .case__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  /* FAQ answer stays left for readability */
  .faq-a {
    text-align: left;
  }
  /* Guarantee badge */
  .guarantee-badge {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .compare th, .compare td { padding: 12px 14px; font-size: 14px; }
  .offer { padding: 30px 24px; }
  .card { padding: 26px; }
  .step { padding: 28px; }
  h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
}

/* Mobile menu drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(5,10,20,0.96);
  backdrop-filter: blur(20px);
  z-index: 150;
  padding: 96px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: #f8fafc;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn {
  margin-top: 24px;
  justify-content: center;
}
.mobile-drawer__close {
  position: absolute;
  top: 18px; right: 24px;
  background: transparent;
  border: 1px solid var(--cyan-line);
  color: #f1f5f9;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
}

/* SVG icon defaults */
.icon { width: 20px; height: 20px; stroke-width: 1.6; }