/*
 * Miles McNair — Freelance Landing Page
 * Inlines PPC Mastery design tokens (read-only reference: ppc-mastery-brand/tokens/)
 * Self-contained: no submodule, no build step. Single index.html + this file.
 */

/* ---------- Tokens ---------- */
:root {
  /* Core anchors */
  --Black: #000000;
  --White-100: #FFFFFF;
  --White-99:  #FBFCFD;

  /* Navy ramp */
  --Navy-6: #0C0A3E;
  --Navy-5: #09082D;
  --Navy-4: #1E406F;
  --Dark-2: #0A060E;

  /* Blue */
  --Blue-46: #2F5BFF;
  --Blue-42: #194CF2;
  --Blue-44: #4166F1;
  --Blue-38: #0C57BD;
  --Blue-96: #F7F5FF;
  --Blue-98: #F6F8FF;
  --Blue-92: #E1F0FF;

  /* Grey */
  --Grey-36: #4B5563;
  --Grey-42: #6B7280;
  --Grey-65: #949EAF;
  --Grey-89: #DFDFDF;

  /* Orange */
  --Orange-98: #F48C06;

  /* Semantic */
  --bg-dark: var(--Dark-2);
  --bg-deep: var(--Navy-6);
  --bg-light: var(--White-99);
  --bg-light-alt: var(--Blue-96);
  --text-primary: var(--Navy-6);
  --text-inverse: var(--White-100);
  --text-muted: var(--Grey-65);
  --text-soft: var(--Grey-89);
  --text-subtle: var(--Grey-36);
  --accent: var(--Blue-46);
  --accent-warm: var(--Orange-98);
  --border-subtle: var(--Grey-89);

  /* Gradients */
  --Gradient-Navy: linear-gradient(180deg, #1E406F 0%, #09082D 100%);
  --Gradient-Blue: linear-gradient(180deg, #2F5BFF 0%, #0C57BD 100%);

  /* Shadows */
  --Shadow-Glow: 0 0 160px 0 rgba(12, 10, 62, 0.6);
  --Shadow-Card: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  --Shadow-Button: 0 0 8px 0 rgba(0, 0, 0, 0.08);

  /* Radii */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 50px;
  --r-full: 9999px;

  /* Spacing */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Container widths */
  --container-max: 1200px;
  --container-body: 867px;

  /* Section padding */
  --section-pad-y: 80px;
  --section-pad-y-mobile: 48px;
  --section-pad-x: 24px;

  /* Fonts */
  --font-heading: 'Geist', system-ui, -apple-system, sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-primary);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg, video, picture { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.h1, h1 { font-size: 56px; font-weight: 700; line-height: 1.04; letter-spacing: -1.12px; margin: 0; }
.h2, h2 { font-size: 44px; font-weight: 700; line-height: 1.08; letter-spacing: -0.96px; margin: 0; }
.h3, h3 { font-size: 28px; font-weight: 700; line-height: 1.2; letter-spacing: -0.56px; margin: 0; }
.h4, h4 { font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: -0.4px; margin: 0; }
.h5, h5 { font-size: 18px; font-weight: 700; line-height: 1.4; letter-spacing: -0.36px; margin: 0; }

.text-lg { font-size: 20px; line-height: 1.6; letter-spacing: -0.2px; }
.text-md { font-size: 18px; line-height: 1.6; letter-spacing: -0.18px; }
.text-reg { font-size: 17px; line-height: 1.6; letter-spacing: -0.16px; }
.text-sm { font-size: 15px; line-height: 1.6; letter-spacing: -0.14px; }
.text-xs { font-size: 12px; line-height: 1.6; }

@media (max-width: 767px) {
  .h1, h1 { font-size: 32px; line-height: 1; letter-spacing: -0.64px; }
  .h2, h2 { font-size: 28px; line-height: 1.05; letter-spacing: -0.56px; }
  .h3, h3 { font-size: 22px; }
  .h4, h4 { font-size: 18px; }
  .text-lg { font-size: 18px; }
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.container--narrow { max-width: var(--container-body); }

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

@media (max-width: 767px) {
  .section { padding-top: var(--section-pad-y-mobile); padding-bottom: var(--section-pad-y-mobile); }
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section--deep {
  background: var(--Gradient-Navy);
  color: var(--text-inverse);
}

.section--light { background: var(--bg-light); }
.section--light-alt { background: var(--bg-light-alt); }

.eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(47, 91, 255, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 16px;
}

.section--dark .eyebrow,
.section--deep .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--White-99);
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .h2 { max-width: 800px; margin: 0 auto; }
.section-head .lede { max-width: 720px; margin: 16px auto 0; color: var(--text-subtle); }
.section--dark .section-head .lede,
.section--deep .section-head .lede { color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-button, var(--r-md));
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--Blue-46);
  color: var(--text-inverse);
  box-shadow: inset 0 1px 0 0 var(--Blue-44), var(--Shadow-Button);
}
.btn--primary:hover { background: var(--Blue-42); }

.btn--secondary {
  background: var(--White-100);
  color: var(--Navy-6);
  border-color: var(--Grey-89);
}
.btn--secondary:hover { background: var(--Blue-96); border-color: var(--Blue-46); }

.btn--ghost {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 14, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.18px;
  color: var(--text-inverse);
}

.nav__brand span { color: var(--Blue-46); }

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav__links a:hover { color: var(--text-inverse); }

@media (max-width: 880px) {
  .nav__links a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-top: 80px;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 720px;
  height: 720px;
  border-radius: var(--r-full);
  background: radial-gradient(circle at center, rgba(47, 91, 255, 0.35), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero__qualifier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__qualifier .dot {
  width: 6px; height: 6px; border-radius: var(--r-full);
  background: #34D399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--Blue-46); }
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--Orange-98);
  border-radius: var(--r-pill);
  opacity: 0.9;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 32px;
}

.hero__cta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__cta-micro {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-soft);
}

.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-item strong { color: var(--text-inverse); font-weight: 600; }

.stars { color: #FBBF24; letter-spacing: 2px; }

/* ---------- Hero extras (VSL + logos) ---------- */
.hero-extras {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-bottom: 72px;
  position: relative;
}

.vsl {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #1a1730 0%, #0d0a1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--Shadow-Glow);
}

.vsl__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

.vsl__play {
  width: 72px; height: 72px;
  border-radius: var(--r-full);
  background: var(--Blue-46);
  color: white;
  display: grid; place-items: center;
  font-size: 24px;
  padding-left: 6px;
  box-shadow: 0 12px 32px rgba(47, 91, 255, 0.5);
}

.hero-logos__label {
  margin: 64px 0 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 880px) { .hero-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .hero-logos { grid-template-columns: repeat(2, 1fr); } }

.hero-logo-cell {
  aspect-ratio: 3 / 1;
  display: grid; place-items: center;
  padding: 8px;
}

.hero-logo-cell img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.hero-logo-cell:hover img { opacity: 1; }

/* Per-logo size tuning so visual weight feels balanced.
   Each logo file has different built-in whitespace + intrinsic size,
   so a single max-height makes some look small and others large.
   These overrides push each one to roughly the same optical size. */
.hero-logo-cell--ekster img     { max-height: 52px; }
.hero-logo-cell--ledstores img  { max-height: 38px; }
.hero-logo-cell--stoov img      { max-height: 40px; }
.hero-logo-cell--vaha img       { max-height: 48px; }
.hero-logo-cell--junglegym img  { max-height: 48px; }
.hero-logo-cell--ring img       { max-height: 50px; }

/* ---------- Problem ---------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 40px auto 0;
}

@media (max-width: 720px) {
  .problem-list { grid-template-columns: 1fr; }
}

.problem-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--White-100);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--Shadow-Card);
}

.problem-item__icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(244, 140, 6, 0.14);
  color: var(--Orange-98);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
}

.problem-item__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-subtle);
}

.problem-pivot {
  text-align: center;
  margin-top: 56px;
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--bg-light-alt);
  border: 1px solid rgba(47, 91, 255, 0.25);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem-pivot .h3 { margin-bottom: 16px; color: var(--text-primary); }
.problem-pivot .h3 span { color: var(--Blue-46); }

/* ---------- Reality (PAS prose) ---------- */
.section--reality .section-head { text-align: left; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 24px; }
.section--reality .section-head .h2,
.section--reality .section-head .lede { max-width: 720px; margin-left: 0; margin-right: 0; }

.reality {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.reality__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-subtle);
  margin: 0 0 36px;
}

.reality__pivot {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin: 0 0 28px;
}

.reality__pivot span {
  color: var(--Blue-46);
}

.reality__solution {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-subtle);
  margin: 0 0 32px;
}

.reality__solution strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 720px) {
  .reality__body { font-size: 16px; }
  .reality__pivot { font-size: 22px; }
  .reality__solution { font-size: 16px; }
}

/* ---------- About / Hi I'm Miles ---------- */
.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
}

.about__photo {
  aspect-ratio: 1 / 1;
  background: var(--bg-light-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 14px;
  border: 1px solid var(--border-subtle);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__body h2 { margin-bottom: 20px; }
.about__body p { color: var(--text-subtle); margin: 0 0 16px; }
.about__body p strong { color: var(--text-primary); font-weight: 600; }
.about__body .about__pivot {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 24px 0;
}
@media (max-width: 720px) {
  .about__body .about__pivot { font-size: 20px; }
}
.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-light-alt);
  border-radius: var(--r-lg);
}

@media (max-width: 540px) { .credentials { grid-template-columns: 1fr; } }

.cred {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cred__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
}

.cred__label {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.4;
}

/* ---------- Offer summary ---------- */
.offer-card {
  max-width: 940px;
  margin: 0 auto;
  padding: 48px;
  background: var(--Gradient-Navy);
  color: var(--text-inverse);
  border-radius: var(--r-2xl);
  box-shadow: var(--Shadow-Glow);
  position: relative;
  overflow: hidden;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 400px; height: 400px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(47, 91, 255, 0.4), transparent 60%);
  pointer-events: none;
}

.offer-card > * { position: relative; z-index: 1; }

.offer-card .h2 { max-width: 760px; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 0;
}

.offer-grid li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.offer-grid .check {
  flex: 0 0 22px; width: 22px; height: 22px;
  background: var(--Blue-46);
  border-radius: var(--r-full);
  display: grid; place-items: center;
  color: white; font-size: 12px; font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .offer-card { padding: 32px 24px; }
}

/* ---------- Case studies ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }

.case {
  background: var(--White-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 20px;
}

.case__tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.case h3 { font-size: 22px; line-height: 1.3; }

.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg-light-alt);
  border-radius: var(--r-md);
}

.metric { text-align: center; }
.metric__value { font-size: 24px; font-weight: 700; color: var(--Navy-6); line-height: 1; }
.metric__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 6px; }

.case__summary {
  font-size: 16px; color: var(--text-subtle); line-height: 1.6;
  margin: 0;
}
.case__summary strong { color: var(--text-primary); font-weight: 600; }

.case__list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-subtle);
  font-size: 16px;
  line-height: 1.6;
}
.case__list li { margin: 0 0 6px; }

.case__note {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  font-style: italic;
  color: var(--text-muted);
}

.case--solo {
  max-width: 880px;
  margin: 0 auto;
  gap: 16px;
}

.section--cases .section-head { margin-bottom: 16px; }

.case-block {
  max-width: 880px;
  margin: 0 auto 56px;
}
.case-block:last-child { margin-bottom: 0; }
.case-block__title {
  margin: 0 0 16px;
  text-align: center;
  max-width: 100%;
}
.case__finisher { margin-top: 4px; }

/* Case figure (chart) — sits inside .case container */
.case__figure {
  margin: 0 0 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.case__figure img { width: 100%; height: auto; border-radius: var(--r-md); display: block; }
.case__figure-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 720px) { .case__figure-grid { grid-template-columns: 1fr; } }
.case__figure figcaption {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.placeholder-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(244, 140, 6, 0.12);
  color: var(--Orange-98);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Logos ---------- */
.logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

@media (max-width: 1080px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .logos { grid-template-columns: repeat(2, 1fr); } }

.logo-cell {
  aspect-ratio: 3 / 1;
  display: grid; place-items: center;
  background: var(--White-100);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 880px) { .process-steps { grid-template-columns: 1fr; } }

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
}

.step__num {
  position: absolute;
  top: -16px; left: 24px;
  background: var(--Blue-46);
  color: var(--text-inverse);
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  display: inline-grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: var(--Shadow-Card);
}

.step h3 { margin: 12px 0 16px; font-size: 22px; color: var(--text-inverse); }
.step__list { display: flex; flex-direction: column; gap: 10px; }
.step__list li {
  font-size: 15px; color: rgba(255, 255, 255, 0.82); line-height: 1.55;
  display: flex; gap: 10px;
}
.step__list li::before {
  content: "→";
  color: var(--Blue-46);
  flex: 0 0 auto;
}

/* ---------- Guarantee mechanics ---------- */
.guarantee-steps {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex; flex-direction: column;
  gap: 12px;
}

.gstep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 24px;
  background: var(--White-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
}

.gstep__num {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--Navy-6); color: var(--text-inverse);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 16px;
}

.gstep h4 { font-size: 17px; margin-bottom: 6px; }
.gstep p { font-size: 15px; color: var(--text-subtle); margin: 0; line-height: 1.55; }

/* ---------- How we work together ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px auto 0;
}

@media (max-width: 720px) { .work-grid { grid-template-columns: 1fr; } }

.work-item {
  padding: 24px;
  background: var(--Gradient-Navy);
  color: var(--text-inverse);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  box-shadow: var(--Shadow-Glow);
}
.work-item h4 { font-size: 17px; margin-bottom: 8px; display: flex; gap: 10px; align-items: center; color: var(--text-inverse); }
.work-item h4 span {
  width: 28px; height: 28px;
  background: var(--Blue-46); color: #fff;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-size: 14px;
}
.work-item p { font-size: 15px; color: rgba(255, 255, 255, 0.86); margin: 0; line-height: 1.55; }

/* ---------- Qualification ---------- */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 800px) { .qual-grid { grid-template-columns: 1fr; } }

.qual {
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
}

.qual--yes {
  background: var(--White-100);
  border-color: var(--Blue-46);
  box-shadow: 0 0 0 4px rgba(47, 91, 255, 0.08);
}
.qual--no {
  background: var(--bg-light-alt);
}

.qual h3 { font-size: 22px; margin-bottom: 20px; display: flex; gap: 10px; align-items: center; }
.qual--yes h3 span { color: #10B981; font-size: 26px; }
.qual--no h3 span { color: #EF4444; font-size: 26px; }

.qual ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.qual li { font-size: 16px; line-height: 1.5; color: var(--text-subtle); display: flex; gap: 10px; align-items: flex-start; }
.qual li::before { content: "•"; color: var(--text-muted); flex: 0 0 auto; }

/* ---------- Pricing comparison ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
  background: var(--White-100);
  display: flex; flex-direction: column;
  gap: 20px;
}
@media (max-width: 540px) {
  .price-card { padding: 24px 20px; }
}

.price-card--featured {
  background: var(--Gradient-Navy);
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: var(--Shadow-Glow);
  position: relative;
}

.price-card--featured .price-card__title,
.price-card--featured h3 { color: var(--text-inverse); }
.price-card--featured .price-card__list li { color: rgba(255, 255, 255, 0.86); }
.price-card--featured .price-card__list li::before { background: var(--Blue-46); color: white; }
.price-card--featured .price-card__price { color: var(--text-inverse); }
.price-card--featured .price-card__note { color: var(--text-soft); }

.price-card__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-card h3 { font-size: 24px; }

.price-card__price {
  font-size: 36px; font-weight: 700; line-height: 1;
  letter-spacing: -0.04em;
}
.price-card__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: normal;
}
.price-card--featured .price-card__price span { color: var(--text-soft); }
.price-card__price .price-card__from {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-card--featured .price-card__price .price-card__from { color: var(--text-soft); }

.price-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card__list li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-subtle);
  display: flex; gap: 10px; align-items: flex-start;
  min-width: 0;
  overflow-wrap: anywhere;
}
.price-card__list li > * { min-width: 0; }
.price-card__list li::before {
  content: "✓";
  flex: 0 0 18px;
  width: 18px; height: 18px;
  background: var(--bg-light-alt);
  color: var(--accent);
  border-radius: var(--r-full);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.price-card__list--neg li::before { content: "—"; background: rgba(239, 68, 68, 0.1); color: #EF4444; }

.price-card__note { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ---------- Pull-quote (full-block testimonial divider) ---------- */
.pull-quote { padding: 96px 0; }
.pull-quote__inner { text-align: center; }
.pull-quote__avatar {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 2px solid rgba(79, 125, 243, 0.4);
}
.pull-quote__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pull-quote__text {
  max-width: 880px;
  margin: 0 auto 28px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-inverse);
  letter-spacing: -0.4px;
}
.pull-quote__highlight { color: #A8B6FF; }
.pull-quote__person {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pull-quote__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-inverse);
}
.pull-quote__linkedin {
  display: inline-grid;
  place-items: center;
  line-height: 0;
  transition: opacity .15s ease;
}
.pull-quote__linkedin:hover { opacity: 0.85; }
.pull-quote__role {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 767px) {
  .pull-quote { padding: 64px 0; }
  .pull-quote__avatar { width: 60px; height: 60px; margin-bottom: 20px; }
  .pull-quote__text { margin-bottom: 20px; }
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-contact-card {
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  background: var(--Gradient-Navy);
  color: var(--text-inverse);
  border-radius: var(--r-xl);
  padding: 32px;
  text-align: center;
  box-shadow: var(--Shadow-Card);
}

.faq-contact-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-inverse);
  margin: 0 0 12px;
}

.faq-contact-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 20px;
}

.faq-contact-card__avatar {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 2px solid rgba(79, 125, 243, 0.4);
}
.faq-contact-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.faq-contact-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  background: var(--Blue-46);
  color: var(--text-inverse);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s ease;
}
.faq-contact-card__btn:hover { opacity: 0.9; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

@media (max-width: 880px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-contact-card { display: none; }
  .faq-list { max-width: 800px; margin: 0 auto; }
}

.faq {
  background: var(--White-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq[open] summary::after { content: "−"; }

.faq__body {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--text-subtle);
  line-height: 1.6;
}

.faq__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__body a:hover { opacity: 0.85; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta .h2 { margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: var(--text-soft); margin: 0 0 32px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--Dark-2);
  color: var(--text-soft);
  padding: 48px 0 32px;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer__brand strong { color: var(--text-inverse); display: block; margin-bottom: 6px; font-size: 16px; }
.footer__brand p { margin: 0; font-size: 13px; line-height: 1.6; }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a:hover { color: var(--text-inverse); }

.footer__legal {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Modal (apply form) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  background: rgba(10, 6, 14, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal.is-open { display: flex; }

.modal__panel {
  background: var(--White-100);
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin: auto;
}

@media (max-width: 540px) { .modal__panel { padding: 28px 20px; } }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--bg-light-alt);
  border: none;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--text-subtle);
}

.modal h2 { font-size: 26px; margin-bottom: 8px; }
.modal__intro { color: var(--text-subtle); margin: 0 0 24px; font-size: 16px; }

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.field label .req { color: #EF4444; }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  font: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--White-100);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--Blue-46);
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.18);
}
.field textarea { resize: vertical; min-height: 90px; }

.field__hint { font-size: 12px; color: var(--text-muted); }

.form-radios {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.form-radios label {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  display: flex; gap: 8px; align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.form-radios input[type="radio"] { accent-color: var(--Blue-46); }

.form-foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-foot p { font-size: 12px; color: var(--text-muted); margin: 0; text-align: center; }
.form-error { font-size: 13px; color: #EF4444; margin: 0; text-align: center; }
.form-error a { color: inherit; text-decoration: underline; }

/* Disqualification message */
.disqualify-msg {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(244, 140, 6, 0.12);
  border: 1px solid rgba(244, 140, 6, 0.3);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}
.disqualify-msg.is-visible { display: block; }

.success-msg { display: none; text-align: center; }
.success-msg.is-visible { display: block; }
.success-msg h2 { margin-bottom: 12px; }
.success-msg p { color: var(--text-subtle); }

body.modal-open { overflow: hidden; }
