/* ============================================================
   APPROACH CONFIDENCE — styles.css
   Dark-mode coaching brand. Clean, cinematic, grounded.
   ============================================================ */

/* ===== DESIGN SYSTEM ===== */
:root {
  --black:          #000000;
  --off-black:      #0a0a0a;
  --card-bg:        #0d0d0d;
  --card-bg-alt:    #111111;
  --blue:           #1e90ff;
  --blue-deep:      #0066cc;
  --blue-border:    rgba(30, 144, 255, 0.35);
  --blue-glow:      rgba(30, 144, 255, 0.1);
  --text:           #ffffff;
  --text-dim:       rgba(255, 255, 255, 0.78);
  --text-muted:     #9ca3af;
  --text-faint:     #6b7280;
  --border:         #1f1f1f;
  --border-light:   #2a2a2a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --pad-section: 110px;
  --container:   1200px;
  --narrow:      860px;
  --radius:      10px;
  --radius-sm:   6px;
  --ease:        0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-dark {
  padding: var(--pad-section) 0;
  background-color: var(--black);
}

.section-offblack {
  padding: var(--pad-section) 0;
  background-color: var(--off-black);
}

.section-title-center {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 1px;
  background-color: var(--border);
  margin: 3.5rem 0;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-blue {
  color: var(--blue);
}

.brand-term {
  font-weight: 600;
  color: var(--blue);
}

.proprietary {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--blue);
  color: #000;
  border-color: var(--blue);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #3da0ff;
  border-color: #3da0ff;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-mark {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.025em;
  transition: color var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .nav-cta {
  color: var(--blue);
}

.nav-links .nav-cta:hover {
  color: #3da0ff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-links {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
}

body.menu-open .nav-links a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url('Hero Section/Hero background with titles.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Gradient overlay — ensures text reads cleanly over the atmospheric image */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5)  45%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0)    100%
  );
  z-index: 1;
}

/* Bottom fade into next section */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Vertical edge text */
.hero-vertical {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.6rem;
  gap: 0.6rem;
}

.hero-vert-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-vert-line {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.18);
}

/* Main content stack */
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  padding-top: 88px; /* clear the fixed nav */
  max-width: min(750px, 56vw);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.93;
  margin-bottom: 1.1rem;
}

.hero-approach {
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-confidence {
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  background: linear-gradient(to right, #60c8ff 0%, #1060cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-byline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.1rem;
  letter-spacing: 0.015em;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Portrait */
.hero-portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 94%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.hero-portrait img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  max-width: 44vw;
}

/*
  CURVE LABELS
  Positioned to match the 4 dots in Hero Background only .png.
  These are approximate — open in browser and adjust left/top values
  until each label sits beside its corresponding dot.
  The dots run bottom-left to top-right along the curve.
*/
.curve-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.curve-label {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1;
}

/* Adjust these values to match actual dot positions in the background image */
#cl-heal     { left: 21%; top: 72%; }
#cl-internal { left: 36%; top: 59%; }
#cl-desire   { left: 51%; top: 46%; }
#cl-activate { left: 65%; top: 32%; }

/* ===== SECTION 2: THE BIG PROMISE ===== */
#promise {
  padding: var(--pad-section) 0;
  background-color: var(--black);
  text-align: center;
}

.promise-inner {
  margin: 0 auto;
}

.promise-headline {
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 1.5rem;
}

.promise-subhead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.promise-body {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== SECTION 3: WHO THIS IS FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

.who-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.who-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

.who-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.72;
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--blue);
  flex-shrink: 0;
}

/* ===== SECTION 4: APPROACH ACTIVATION SYSTEM ===== */
#method .container {
  max-width: var(--narrow);
}

.aas-intro {
  font-size: 1.05rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

.aas-pull-quote {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.aas-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.aas-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.aas-num {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  width: 88px;
  text-align: right;
  opacity: 0.88;
  padding-top: 0.05em;
}

.aas-step-body {
  padding-top: 0.25rem;
  flex: 1;
}

.aas-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.aas-step-body p {
  font-size: 0.98rem;
  color: var(--text-dim);
  line-height: 1.72;
}

.aas-closing {
  font-size: 1rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.78;
  margin-bottom: 1.5rem;
}

.aas-final {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* ===== SECTION 5: TRUE CONFIDENCE FRAMEWORK ===== */
.framework-intro-wrap {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.framework-intro {
  font-size: 1.02rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.framework-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pillar-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color var(--ease), transform var(--ease);
}

.pillar-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* ===== SECTION 6: ABOUT ADAM ===== */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.about-photo-placeholder {
  background-color: var(--card-bg);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-headline {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.about-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
}

.story-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.72;
}

.story-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.9rem;
  top: 0.05em;
}

/* About: expanded section (slides down on Read More) */
.about-expanded {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
  overflow: hidden;
}

.about-expanded.expanded {
  grid-template-rows: 1fr;
}

.about-expanded-wrap {
  overflow: hidden;
}

.about-expanded-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding-top: 3.5rem;
  align-items: start;
}

/* Single-column collage — images stacked, natural aspect ratios preserved */
.about-collage {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.collage-thumb {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  transition: opacity var(--ease), transform var(--ease);
}

.collage-thumb:hover {
  opacity: 0.85;
  transform: scale(1.015);
}

.collage-thumb:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.collage-thumb img {
  width: 100%;
  height: auto;          /* natural aspect ratio — no cropping */
  display: block;
  border-radius: var(--radius-sm);
}

.read-more-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more-btn:hover {
  color: #3da0ff;
}

.read-more-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Authority strip */
.authority-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.authority-thumb {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.authority-thumb:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
}

.authority-thumb:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.authority-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.authority-caption {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.4;
}

/* ===== SECTION 7: TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.testimonial-card {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--ease), transform var(--ease);
  display: block;
  width: 100%;
}

.testimonial-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
}

.testimonial-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 1.25rem;
}

/* ===== SECTION 8: FREE MINI TRAINING (PRIMARY CTA) ===== */
#training {
  padding: var(--pad-section) 0;
  background-color: #020c18;
  border-top: 1px solid rgba(30, 144, 255, 0.18);
  border-bottom: 1px solid rgba(30, 144, 255, 0.18);
}

.training-box {
  border: 1px solid rgba(30, 144, 255, 0.22);
  border-radius: var(--radius);
  background-color: rgba(30, 144, 255, 0.02);
  padding: 4rem;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
}

.training-pitch {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.training-headline {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 0.6rem;
}

.training-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}

.training-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.training-name {
  color: var(--text);
  font-weight: 700;
}

.training-body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.training-list-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.1rem;
  margin-top: 0.5rem;
}

.training-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  counter-reset: training-counter;
}

.training-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.68;
  counter-increment: training-counter;
}

.training-list li::before {
  content: counter(training-counter);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* Form card */
.training-form-col {
  position: sticky;
  top: 96px;
}

.training-form-card {
  background-color: #030e1c;
  border: 1px solid rgba(30, 144, 255, 0.22);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
}

.form-card-heading {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.025em;
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--ease), background-color var(--ease);
  outline: none;
}

.form-input:focus {
  border-color: var(--blue);
  background-color: rgba(30, 144, 255, 0.04);
}

.form-input::placeholder {
  color: var(--text-faint);
}

.training-form .btn {
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.77rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.85rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ===== SECTION 9: 1:1 COACHING ===== */
.coaching-intro-wrap {
  max-width: 660px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.coaching-intro {
  font-size: 1.02rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.coaching-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.coaching-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.coaching-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

/* Featured (flagship) card */
.coaching-card-featured {
  background-color: #07101e;
  border-color: var(--blue-border);
  transform: scale(1.025);
}

.coaching-card-featured:hover {
  border-color: rgba(30, 144, 255, 0.55);
  transform: scale(1.025) translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 144, 255, 0.1);
}

.coaching-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--blue);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.coaching-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.coaching-price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1;
}

.coaching-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.68;
}

.coaching-footnote {
  text-align: center;
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 2.5rem auto 0;
  line-height: 1.65;
}

.coaching-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.coaching-cta-note {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ===== SECTION 10: FAQ ===== */
#faq .section-title-center {
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--ease);
}

.faq-question:hover {
  color: rgba(255, 255, 255, 0.8);
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
}

/* ===== FOOTER ===== */
#footer {
  background-color: var(--black);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.1rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--blue);
  transition: color var(--ease);
}

.footer-email:hover {
  color: #3da0ff;
}

.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}

.footer-links-col ul,
.footer-connect-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a,
.footer-connect-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-links-col a:hover,
.footer-connect-col a:hover {
  color: var(--text);
}

/* Aligned AF company attribution */
.footer-company {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-aligned-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-company-attr {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-company-attr strong {
  color: var(--text);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-faint);
  transition: color var(--ease);
}

.footer-legal a:hover {
  color: var(--text-muted);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(90vw, 860px);
  cursor: default;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
  padding: 0.25rem 0.5rem;
}

.lightbox-close:hover {
  color: var(--text);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  :root {
    --pad-section: 90px;
  }

  .hero-content {
    max-width: 500px;
  }

  .hero-portrait img {
    max-width: 43vw;
  }

  .who-grid {
    grid-template-columns: 200px 1fr;
    gap: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
  }

  .training-grid {
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
  }

  .framework-pillars {
    gap: 1.1rem;
  }

  .coaching-cards {
    gap: 1.1rem;
  }

  .authority-strip {
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  :root {
    --pad-section: 70px;
  }

  /* Nav */
  .nav-inner {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    background-position: 68% center;
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  #hero::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.3)  100%
    );
  }

  .hero-vertical {
    display: none;
  }

  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-portrait {
    display: none;
  }

  .curve-labels {
    display: none;
  }

  /* Sections */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aas-step {
    gap: 1.25rem;
  }

  .aas-num {
    font-size: 2.6rem;
    width: 60px;
  }

  .framework-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-expanded-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  /* collage stays single column on mobile too */

  .authority-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .training-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .training-form-col {
    position: static;
  }

  .coaching-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 2.5rem;
  }

  .coaching-card-featured {
    transform: none;
    order: -1;
  }

  .coaching-card-featured:hover {
    transform: translateY(-3px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-approach,
  .hero-confidence {
    font-size: 3rem;
  }

  .authority-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .nav-inner {
    padding: 0.9rem 1rem;
  }
}
