/* ==========================================================================
   The Altitude Mindset — design system
   Hazik Fayaz · NLP & Mindset Coach
   Single shared stylesheet for every page.
   ========================================================================== */

/* --- 1. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
/* Without height:auto the width/height attributes win over CSS
   aspect-ratio, and images render at their intrinsic height. */
img { height: auto; }
/* Components set display (e.g. .btn is inline-flex), which would otherwise
   override the browser's own [hidden] rule and show hidden elements. */
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }

/* --- 2. Tokens ----------------------------------------------------------- */
:root {
  /* Brand navy */
  --navy-900: #06101F;
  --navy-800: #0B1B33;   /* primary brand navy */
  --navy-700: #14284A;
  --navy-600: #1E3A66;

  /* Brand gold */
  --gold:     #E8C468;
  --gold-600: #C9A23F;   /* accents, borders, icon strokes on dark */
  --gold-ink:  #8A6A14;  /* gold for SMALL TEXT on light backgrounds — AA 4.6:1 */
  --gold-100: #F7EEDA;

  /* Surfaces */
  --paper:    #F8F6F0;
  --surface:  #FFFFFF;
  --muted:    #F1EEE6;

  /* Ink — all AA-compliant on --paper */
  --ink:      #0A0A0A;
  --ink-2:    #4A4741;
  --ink-3:    #6E6A62;

  /* On dark surfaces */
  --on-dark:        #DCE3ED;
  --on-dark-muted:  #A7B3C6;

  /* Lines */
  --line:        rgba(11,27,51,0.10);
  --line-strong: rgba(11,27,51,0.22);
  --line-dark:   rgba(255,255,255,0.14);

  /* Type */
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --fs-display: clamp(2.35rem, 5.4vw, 4rem);
  --fs-h1:      clamp(2.1rem, 4.6vw, 3.25rem);
  --fs-h2:      clamp(1.8rem, 3.6vw, 2.6rem);
  --fs-h3:      clamp(1.15rem, 2vw, 1.4rem);
  --fs-lead:    clamp(1.03rem, 1.5vw, 1.19rem);
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.78rem;

  /* Space */
  --gap:        1.25rem;
  --section-y:  clamp(4rem, 8vw, 7rem);
  --wrap:       1140px;
  --wrap-mid:   920px;
  --wrap-narrow:720px;

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(6,16,31,0.05), 0 4px 14px rgba(6,16,31,0.05);
  --shadow-md: 0 8px 30px rgba(6,16,31,0.09);
}

/* --- 3. Base ------------------------------------------------------------- */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 400; line-height: 1.12; letter-spacing: -0.015em; }
h1, h2 { font-family: var(--serif); }
h3, h4 { font-family: var(--sans); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { max-width: 68ch; }
strong { color: var(--ink); font-weight: 600; }

a { color: var(--navy-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-600); }

/* Visible focus for keyboard users only */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--navy-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible, footer :focus-visible, .band-dark :focus-visible {
  outline-color: var(--gold);
}

::selection { background: var(--gold-100); color: var(--navy-900); }

/* --- 4. Utilities -------------------------------------------------------- */
.wrap       { width: 100%; max-width: var(--wrap);        margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.wrap-mid   { max-width: var(--wrap-mid); }
.wrap-narrow{ max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.75rem, 5vw, 4rem); }

.band-paper   { background: var(--paper); }
.band-surface { background: var(--surface); }
.band-muted   { background: var(--muted); }
.band-dark    { background: var(--navy-800); color: var(--on-dark); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark strong { color: #fff; }
.band-dark a { color: var(--gold); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100%;
  z-index: 999; background: var(--navy-800); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--r-sm);
  text-decoration: none; font-size: var(--fs-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy-600); margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--gold-600); flex: none;
}
/* .finalcta and .magnet are dark gradient panels, not .band-dark — they
   have to be named here too or the eyebrow stays navy-on-navy. */
.band-dark .eyebrow, .finalcta .eyebrow, .magnet .eyebrow { color: var(--gold); }
.band-dark .eyebrow::before, .finalcta .eyebrow::before, .magnet .eyebrow::before { background: var(--gold); }

.lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--ink-2); }
.band-dark .lead { color: var(--on-dark); }

.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { margin-top: 1rem; max-width: 56ch; }

.text-muted { color: var(--ink-3); }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2.25rem; }

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  line-height: 1; text-align: center; text-decoration: none;
  padding: 1.05rem 1.65rem; border: 1px solid transparent;
  border-radius: var(--r-sm); cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  min-height: 48px; /* thumb-friendly */
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1em; height: 1em; flex: none; }

/* Doubled class (.btn.btn--x = 0,2,0) so the generic `.band-dark a`
   colour rule can never repaint button text into its own background. */
.btn.btn--primary { background: var(--navy-800); color: #fff; }
.btn.btn--primary:hover { background: var(--navy-700); color: #fff; }

.btn.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn.btn--gold:hover { background: #F0D488; color: var(--navy-900); }

.btn.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.btn--ghost:hover { background: var(--surface); border-color: var(--navy-800); color: var(--ink); }

/* Dark contexts. .finalcta and .magnet paint with a gradient — that is a
   background-image, so they are NOT matched by .band-dark and need naming
   here explicitly, or ghost buttons render near-black on navy. */
.band-dark .btn.btn--ghost,
.finalcta .btn.btn--ghost,
.magnet   .btn.btn--ghost { color: var(--on-dark); border-color: var(--line-dark); }
.band-dark .btn.btn--ghost:hover,
.finalcta .btn.btn--ghost:hover,
.magnet   .btn.btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }

/* Non-button links inside the gradient panels */
.finalcta a:not(.btn), .magnet a:not(.btn) { color: var(--gold); }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Quiet inline link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--navy-800);
  text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(3px); }
.band-dark .link-arrow { color: var(--gold); }

/* --- 6. Header / navigation ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,240,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 46px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 1.55rem; list-style: none; }
.nav__menu a {
  font-size: 0.875rem; font-weight: 500; color: var(--ink-2);
  text-decoration: none; white-space: nowrap; transition: color .18s ease;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a[aria-current="page"] { color: var(--navy-800); font-weight: 600; }

.nav__cta { flex: none; }
.nav__cta .btn { padding: 0.7rem 1.15rem; font-size: 0.85rem; min-height: 42px; }

.nav__toggle {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); width: 46px; height: 46px;
  align-items: center; justify-content: center; cursor: pointer; flex: none;
}
.nav__toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.nav__drawer { display: none; border-top: 1px solid var(--line); background: var(--surface); }
.nav__drawer ul { list-style: none; }
.nav__drawer a {
  display: block; padding: 1rem 0; font-size: 1.05rem; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.nav__drawer li:last-child a { border-bottom: none; }
.nav__drawer .btn { margin: 1.15rem 0 1.5rem; }

@media (max-width: 1040px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__drawer.is-open { display: block; }
}
@media (min-width: 1041px) {
  .nav__drawer, .nav__drawer.is-open { display: none; }
}

/* --- 7. Hero ------------------------------------------------------------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { font-size: var(--fs-display); margin-bottom: 1.35rem; }
.hero h1 em { font-style: italic; color: var(--navy-600); }
.hero__sub { font-size: var(--fs-lead); line-height: 1.7; max-width: 46ch; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 2.5rem; }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0 2.25rem;
  padding-top: 1.75rem; border-top: 1px solid var(--line); list-style: none;
}
.hero__proof li { padding-block: 0.5rem; display: flex; flex-direction: column; }
.hero__proof .n {
  font-family: var(--serif); font-size: 1.6rem; color: var(--navy-800); line-height: 1.1;
}
.hero__proof .t { font-size: var(--fs-xs); color: var(--ink-3); letter-spacing: 0.02em; }

.hero__media { position: relative; }
.hero__portrait {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%;
  border-radius: var(--r-lg); background: var(--muted);
}
.hero__badge {
  position: absolute; left: -0.75rem; bottom: -1rem;
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.7rem 0.95rem; box-shadow: var(--shadow-md);
}
.hero__badge img { width: 36px; height: 36px; }
.hero__badge b { display: block; font-size: 0.82rem; color: var(--ink); }
.hero__badge span { font-size: var(--fs-xs); color: var(--ink-3); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  /* Keep the portrait first — most visitors arrive from Instagram and
     recognise the face — but small enough that the headline and the
     primary CTA both stay on the first screen. */
  .hero__media { order: -1; max-width: 210px; margin-inline: auto; }
  .hero__portrait { aspect-ratio: 1/1; }
  /* Hidden on mobile: it either covers the subject's face or costs ~145px
     of first-screen space, and the trust strip immediately below already
     states the same credential. */
  .hero__badge { display: none; }
  .hero { padding-block: 2rem 3rem; }
  /* Tighten just enough that the hero CTA finishes above the fold. */
  .hero__sub { margin-bottom: 1.5rem; }
  .hero .btn-row { margin-bottom: 2rem; }
}

/* --- 8. Trust strip ------------------------------------------------------ */
.trust { padding-block: 1.15rem; }
.trust ul {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.75rem clamp(1.25rem, 4vw, 2.75rem); list-style: none;
}
.trust li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-sm); color: var(--on-dark);
}
.trust svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; }
.trust .label {
  font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* --- 9. Generic card grid ------------------------------------------------ */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 2.5vw, 1.9rem);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); color: inherit; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: var(--fs-sm); color: var(--ink-2); }

.card__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--gold-100); display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__icon svg { width: 21px; height: 21px; stroke: var(--navy-800); fill: none; stroke-width: 1.6; }

/* --- 10. Problem list ---------------------------------------------------- */
.problems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 2rem; list-style: none; }
@media (max-width: 700px) { .problems { grid-template-columns: 1fr; } }
.problems li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 1rem; color: var(--ink-2); padding-block: 0.35rem;
}
.problems li::before {
  content: ''; flex: none; width: 6px; height: 6px; margin-top: 0.62rem;
  border-radius: 50%; background: var(--gold-600);
}

/* --- 10b. Pattern picker (self-identification) --------------------------- */
/* Client-side only: nothing here is ever stored, sent, or persisted.
   Selecting a pattern just reveals a CTA — it is not a form. */
.pattern-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1rem; list-style: none; }
@media (max-width: 700px) { .pattern-picker { grid-template-columns: 1fr; } }
.pattern-pill {
  display: flex; gap: 0.7rem; align-items: center; text-align: left;
  font: inherit; font-size: 1rem; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 0.8rem 1rem; cursor: pointer; width: 100%;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.pattern-pill:hover { border-color: var(--navy-600); }
.pattern-pill__mark {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  transition: border-color .15s ease, background-color .15s ease;
}
.pattern-pill__mark svg { width: 11px; height: 11px; stroke: transparent; fill: none; stroke-width: 2.6; transition: stroke .15s ease; }
.pattern-pill[aria-pressed="true"] {
  border-color: var(--gold-600); background: var(--gold-100); color: var(--ink);
}
.pattern-pill[aria-pressed="true"] .pattern-pill__mark { border-color: var(--gold-600); background: var(--gold-600); }
.pattern-pill[aria-pressed="true"] .pattern-pill__mark svg { stroke: var(--navy-900); }

.pattern-picker__result {
  margin-top: 1.5rem; padding: 1.25rem 1.4rem; border-radius: var(--r-md);
  background: var(--gold-100); display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.9rem 1.5rem; justify-content: space-between;
  transition: opacity .25s ease, transform .25s ease;
}
.pattern-picker__result p { font-size: 0.95rem; color: #55503F; max-width: 46ch; }
.pattern-picker__result[hidden] { display: none; }

/* --- 11. Framework ------------------------------------------------------- */
.framework { display: grid; gap: 1rem; counter-reset: step; }
.step {
  position: relative; display: grid; grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.25rem); align-items: start;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  transition: border-color .18s ease, background-color .18s ease;
}
.step:hover { border-color: rgba(232,196,104,0.45); background: rgba(255,255,255,0.06); }
.step__n {
  font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  line-height: 1; min-width: 2.2ch;
}
.step h3 { color: #fff; margin-bottom: 0.4rem; font-size: 1.2rem; letter-spacing: 0.01em; }
.step h3 span { color: var(--gold); font-weight: 600; }
.step p { color: var(--on-dark-muted); font-size: 0.95rem; max-width: 62ch; }

/* Light variant for the framework page */
.band-paper .step, .band-surface .step {
  background: var(--surface); border-color: var(--line);
}
.band-paper .step:hover, .band-surface .step:hover { border-color: var(--line-strong); background: var(--surface); }
.band-paper .step__n, .band-surface .step__n { -webkit-text-stroke-color: var(--navy-800); }
.band-paper .step h3, .band-surface .step h3 { color: var(--ink); }
.band-paper .step p, .band-surface .step p { color: var(--ink-2); }

/* --- 12. Process (numbered journey) -------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; list-style: none; }
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process li { padding-top: 1.1rem; border-top: 2px solid var(--line-strong); }
.process .n { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; color: var(--gold-ink); }
.process h3 { font-size: 1.05rem; margin: 0.35rem 0 0.4rem; }
.process p { font-size: var(--fs-sm); color: var(--ink-2); }

/* --- 13. Offer / pricing ------------------------------------------------- */
.offer {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
@media (max-width: 880px) { .offer { grid-template-columns: 1fr; } }
.offer__main { padding: clamp(1.6rem, 4vw, 2.75rem); }
.offer__aside {
  padding: clamp(1.6rem, 4vw, 2.75rem);
  background: var(--muted); border-left: 1px solid var(--line);
}
@media (max-width: 880px) { .offer__aside { border-left: none; border-top: 1px solid var(--line); } }

.pricecard { margin-bottom: 1.5rem; }
.pricecard .k { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.pricecard .v { font-family: var(--serif); font-size: 2.4rem; color: var(--ink); line-height: 1.05; margin-top: 0.25rem; }
.pricecard .note { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 0.35rem; }

/* Free vs paid comparison — must be unmistakable */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }
.tier { border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; background: var(--surface); }
.tier--free { border-color: var(--gold-600); border-width: 2px; }
.tier__tag {
  display: inline-block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill); margin-bottom: 0.85rem;
}
.tier--free .tier__tag { background: var(--gold-100); color: #7A5E12; }
.tier--paid .tier__tag { background: var(--muted); color: var(--ink-2); }
.tier .amount { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); line-height: 1.1; }
.tier .amount small { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-3); font-weight: 500; }
.tier ul { list-style: none; margin-top: 0.9rem; display: grid; gap: 0.45rem; }
.tier li { font-size: var(--fs-sm); display: flex; gap: 0.55rem; align-items: flex-start; }
.tier li svg { width: 15px; height: 15px; stroke: var(--gold-ink); fill: none; stroke-width: 2.2; flex: none; margin-top: 0.3rem; }

/* --- 14. Guarantee ------------------------------------------------------- */
.guarantee {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: var(--gold-100); border-radius: var(--r-lg);
}
.guarantee svg { width: 26px; height: 26px; stroke: var(--navy-800); fill: none; stroke-width: 1.5; flex: none; }
.guarantee h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.guarantee p { font-size: var(--fs-sm); color: #55503F; }

/* --- 15. Scope of practice ---------------------------------------------- */
.scope {
  border: 1px solid var(--line); border-left: 3px solid var(--navy-800);
  border-radius: var(--r-md); padding: clamp(1.35rem, 3vw, 1.9rem); background: var(--surface);
}
.scope h2, .scope h3 {
  font-family: var(--sans); font-size: 1.05rem;
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.3;
}
.scope ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin-top: 1rem; }
@media (max-width: 700px) { .scope ul { grid-template-columns: 1fr; } }
.scope li { font-size: var(--fs-sm); display: flex; gap: 0.55rem; align-items: flex-start; }
.scope li svg { width: 15px; height: 15px; stroke: var(--ink-3); fill: none; stroke-width: 2; flex: none; margin-top: 0.32rem; }

/* --- 16. Credentials ----------------------------------------------------- */
.creds { display: grid; gap: 0.7rem; list-style: none; }
.creds li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.95rem 1.1rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.creds li::before { content: ''; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-600); margin-top: 0.55rem; }
.creds b { display: block; font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.creds span { font-size: var(--fs-xs); color: var(--ink-3); }

.proof-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .proof-imgs { grid-template-columns: 1fr; } }
.proof-img { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.proof-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.proof-img figcaption {
  padding: 0.85rem 1rem; font-size: var(--fs-xs); color: var(--ink-3);
  display: flex; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap;
}
.proof-img figcaption a { font-weight: 600; color: var(--navy-800); text-decoration: none; }

/* --- 17. Testimonials (structure ready; see HTML comment) ---------------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 1.9rem);
  display: grid; gap: 1rem;
}
.testimonial dl { display: grid; gap: 0.85rem; }
.testimonial dt {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-ink); margin-bottom: 0.2rem;
}
.testimonial dd { font-size: var(--fs-sm); color: var(--ink-2); }
.testimonial__who { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial__who b { font-size: 0.9rem; color: var(--ink); }
.testimonial__who span { font-size: var(--fs-xs); color: var(--ink-3); }

/* --- 18. FAQ ------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; max-width: var(--wrap-narrow); }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; font-size: 0.98rem; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none; min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--navy-800); border-bottom: 2px solid var(--navy-800);
  transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-4px,-4px); }
.faq .answer { padding: 0 1.3rem 1.3rem; font-size: 0.93rem; color: var(--ink-2); }
.faq .answer p + p { margin-top: 0.75rem; }

/* --- 19. Blog cards ------------------------------------------------------ */
.post {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); text-decoration: none; color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.post:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); color: inherit; }
.post__thumb { aspect-ratio: 16/9; background: var(--gold-100); display: grid; place-items: center; overflow: hidden; }
.post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post__thumb svg { width: 30px; height: 30px; stroke: var(--navy-800); fill: none; stroke-width: 1; opacity: .55; }
.post__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post__tag { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.post__title { font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.post__excerpt { font-size: var(--fs-sm); color: var(--ink-3); }

/* --- 20. Start-here numbered list ---------------------------------------- */
.starthere { display: grid; gap: 0.8rem; list-style: none; counter-reset: sh; }
.starthere li { counter-increment: sh; }
.starthere a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  text-decoration: none; color: inherit;
  transition: border-color .18s ease, transform .18s ease;
}
.starthere a:hover { border-color: var(--navy-800); transform: translateX(3px); color: inherit; }
.starthere a::before {
  content: counter(sh, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold-ink); flex: none;
}
.starthere b { display: block; font-size: 0.98rem; color: var(--ink); font-weight: 600; }
.starthere span { font-size: var(--fs-sm); color: var(--ink-3); }

/* --- 21. Forms ----------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: var(--fs-sm); font-weight: 500; color: var(--ink-2); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 0.85rem 1rem; font-size: 1rem;
  color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease;
  min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(30,58,102,0.12);
}
.field .hint { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 0.35rem; }
.form__status { font-size: var(--fs-sm); min-height: 1.4em; }
.form__status.is-ok    { color: #2F5E12; }
.form__status.is-error { color: #A33A22; }
.form__deliver { display: inline-block; margin-top: 0.5rem; font-weight: 600;
  color: var(--gold); text-underline-offset: 3px; }
.magnet .form__status.is-ok { color: var(--gold); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- 22. Lead magnet ----------------------------------------------------- */
.magnet {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 3rem); background: var(--navy-800); color: var(--on-dark);
  position: relative; overflow: hidden;
}
@media (max-width: 860px) { .magnet { grid-template-columns: 1fr; } }
.magnet::after {
  content: ''; position: absolute; right: -90px; top: -90px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,196,104,0.16), transparent 68%);
  pointer-events: none;
}
.magnet h2 { color: #fff; }
.magnet ul { list-style: none; display: grid; gap: 0.4rem; margin-top: 1.1rem; }
.magnet li { font-size: var(--fs-sm); color: var(--on-dark-muted); display: flex; gap: 0.55rem; }
.magnet li::before { content: '—'; color: var(--gold); flex: none; }
.magnet .form { position: relative; z-index: 1; }
.magnet .field label { color: var(--on-dark); }
.magnet .field input { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.24); color: #fff; }
.magnet .field input::placeholder { color: rgba(255,255,255,0.45); }
.magnet .field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,196,104,0.18); }
.magnet .field .hint { color: var(--on-dark-muted); }

/* --- 23. Final CTA ------------------------------------------------------- */
.finalcta {
  border-radius: var(--r-lg); padding: clamp(2.25rem, 5vw, 3.75rem);
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--on-dark); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
}
/* Subtle horizon line — the only literal aviation motif */
.finalcta::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(232,196,104,0.35), transparent);
}
.finalcta h2 { color: #fff; }
.finalcta p { color: var(--on-dark-muted); margin-top: 0.6rem; max-width: 46ch; }
.finalcta__actions { display: grid; gap: 0.75rem; flex: none; position: relative; max-width: 100%; }
@media (max-width: 480px) {
  .finalcta { padding: 2rem 1.25rem; }
  .finalcta__actions { flex: 1 1 100%; }
  .finalcta__actions .btn { line-height: 1.25; }
}

/* --- 24. Footer ---------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--on-dark-muted); padding-block: clamp(2.75rem, 5vw, 3.75rem) 2rem; }
.site-footer h2, .site-footer h3 { color: #fff; }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.25rem; border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand b { font-family: var(--serif); font-size: 1.4rem; color: #fff; font-weight: 400; display: block; }
.footer__brand b span { color: var(--gold); }
.footer__brand p { font-size: var(--fs-sm); margin-top: 0.6rem; max-width: 34ch; }
.footer__brand img { margin-top: 1.1rem; width: 64px; height: 64px; }
.footer__col h3 { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 0.9rem; }
.footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer__col a { font-size: var(--fs-sm); color: var(--on-dark-muted); text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: var(--fs-xs);
}
.footer__bottom a { color: var(--on-dark-muted); text-decoration: none; }
.footer__bottom a:hover { color: #fff; }

.social { display: flex; gap: 0.6rem; }
.social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: var(--r-sm);
  transition: border-color .18s ease, background-color .18s ease;
}
.social a:hover { border-color: var(--gold); background: rgba(232,196,104,0.1); }
.social svg { width: 17px; height: 17px; stroke: var(--on-dark-muted); fill: none; stroke-width: 1.6; }
.social a:hover svg { stroke: var(--gold); }

/* Light-background social row (contact section) */
.social--light a { border-color: var(--line-strong); }
.social--light svg { stroke: var(--ink-2); }
.social--light a:hover { border-color: var(--navy-800); background: var(--gold-100); }
.social--light a:hover svg { stroke: var(--navy-800); }

/* --- 25. Sticky mobile action bar ---------------------------------------- */
.mobilebar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(248,246,240,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 0.6rem 0.85rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobilebar .btn { flex: 1; padding: 0.9rem 1rem; font-size: 0.9rem; }
.mobilebar .btn--wa { flex: none; width: 52px; background: #25D366; color: #fff; padding: 0; }
.mobilebar .btn--wa svg { width: 22px; height: 22px; fill: #fff; stroke: none; }
@media (max-width: 880px) {
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
}

/* Desktop floating WhatsApp */
.wa-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }
@media (max-width: 880px) { .wa-float { display: none; } }

/* --- 26. Motion ---------------------------------------------------------- */
/* Only hide content once JS has confirmed it can reveal it again.
   Without the .js guard, a failed script would leave the page blank. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- 27. Print ----------------------------------------------------------- */
@media print {
  .site-header, .mobilebar, .wa-float, .finalcta, .magnet { display: none !important; }
  body { background: #fff; color: #000; }
}
