/* ============================================================
   INVOKE WILLPOWER — STYLES
   Colors: Turquoise #1DD9C1 | Teal Dark #0FA39F | Deep Teal #0B5F54
           Charcoal #1A1815 | Cream #F5F1ED | Dark Green #059669
   Fonts: Playfair Display (headings) | Poppins (body) | IBM Plex Mono (labels)
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #008080;
  color: #1A1815;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.mono-text, .tagline-mono, .section-label, .process-label, .pricing-tier-label,
.invest-label, .outcome-label, .faq-group-title {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1DD9C1;
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: #1DD9C1;
  color: #0B5F54;
  border-color: #1DD9C1;
}
.btn-primary:hover {
  background: #0FA39F;
  border-color: #0FA39F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,217,193,0.25);
}
.btn-ghost {
  background: transparent;
  color: #1A1815;
  border-color: #1A1815;
}
.btn-ghost:hover {
  background: #1A1815;
  color: #F5F1ED;
  transform: translateY(-2px);
}
.btn-ghost--light {
  color: #F5F1ED;
  border-color: rgba(245,241,237,0.5);
}
.btn-ghost--light:hover {
  background: rgba(245,241,237,0.15);
  border-color: #F5F1ED;
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.logo-mark {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.6) saturate(1.4) drop-shadow(0 0 6px rgba(29,217,193,0.35)); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7FFFF4 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #7EEEE6;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #ffffff;
  background: rgba(64,224,208,0.15);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #40E0D0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,95,84,0.72);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  color: #F5F1ED;
  text-align: center;
}
.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1DD9C1;
  display: block;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #F5F1ED;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(245,241,237,0.85);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-body {
  font-size: 1rem;
  color: rgba(245,241,237,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero .btn-ghost {
  color: #F5F1ED;
  border-color: rgba(245,241,237,0.45);
}
.hero .btn-ghost:hover {
  background: rgba(245,241,237,0.12);
  border-color: #F5F1ED;
  color: #F5F1ED;
}
.hero-tagline { margin-top: 2rem; }
.tagline-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(245,241,237,0.5);
}
.tagline-mono--dark { color: rgba(26,24,21,0.45); }
.tagline-mono-wrap { margin-top: 1.5rem; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.page-hero--cream { background: #F5F1ED; }
.page-hero--dark { background: #1A1815; }
.page-hero--session { background: #0B5F54; position: relative; }
.page-hero--session > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,26,0.58);
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content--centered { text-align: center; }
.page-hero--dark .page-hero-content h1,
.page-hero--dark .page-hero-content .hero-sub,
.page-hero--dark .page-hero-content .hero-label,
.page-hero--session .page-hero-content h1,
.page-hero--session .page-hero-content .hero-sub,
.page-hero--session .page-hero-content .hero-label { color: #F5F1ED !important; }
.page-hero--dark .page-hero-content h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.9);
}
.page-hero--dark .page-hero-content .hero-sub {
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
}
.page-hero--dark .page-hero-content .hero-label {
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.page-hero--session .page-hero-content h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.page-hero--session .page-hero-content .hero-sub {
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.page-hero--session .page-hero-content .hero-label {
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.page-hero--dark .hero-sub,
.page-hero--session .hero-sub { color: rgba(245,241,237,0.8); }
.page-hero--cream h1 { color: #1A1815; }
.page-hero--cream .hero-sub { color: rgba(26,24,21,0.65); }
.page-hero--cream .hero-label { color: #1DD9C1; }
.hero-price-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: rgba(245,241,237,0.6);
  margin-top: 1rem;
}

/* ---- PILLARS SECTION ---- */
.pillars {
  padding: 100px 24px;
  background: #1DD9C1;
}
.pillars .section-label,
.pillars .section-title {
  text-align: center;
}
.section-title {
  margin-bottom: 3rem;
  color: #0B3D36;
  text-shadow: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  background: rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 48px 36px;
  border: 1px solid rgba(11,61,54,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}
.pillars-grid .pillar-card:nth-child(1),
.pillars-grid .pillar-card:nth-child(3) {
  background: rgba(255,255,255,0.55);
  border-color: rgba(11,61,54,0.18);
}
.pillars-grid .pillar-card:nth-child(1) h3,
.pillars-grid .pillar-card:nth-child(3) h3 { color: #0B3D36; }
.pillars-grid .pillar-card:nth-child(1) .pillar-step,
.pillars-grid .pillar-card:nth-child(3) .pillar-step { color: rgba(11,61,54,0.35); }
.pillars-grid .pillar-card:nth-child(1) .pillar-tagline,
.pillars-grid .pillar-card:nth-child(3) .pillar-tagline { color: #0B5F54; }
.pillars-grid .pillar-card:nth-child(1) p,
.pillars-grid .pillar-card:nth-child(3) p { color: rgba(11,40,35,0.78); }

.pillar-card--featured {
  background: #0B5F54;
  color: #F5F1ED;
  border-color: rgba(29,217,193,0.4);
}
.pillar-card--featured h3,
.pillar-card--featured .pillar-tagline,
.pillar-card--featured p { color: #F5F1ED; }
.pillar-card--featured .pillar-step { color: rgba(245,241,237,0.35); }
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.pillar-icon--diagnosis { background: rgba(11,61,54,0.15); color: #0B5F54; }
.pillar-icon--transformation { background: rgba(5,150,105,0.15); color: #059669; }
.pillar-icon--foundation { background: rgba(11,61,54,0.15); color: #0B5F54; }
.pillar-card--featured .pillar-icon--transformation { background: rgba(5,150,105,0.25); }
.pillar-step {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(11,61,54,0.4);
  margin-bottom: 0.5rem;
}
.pillar-card h3 { margin-bottom: 0.5rem; color: #0B3D36; }
.pillar-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: #0B5F54;
  margin-bottom: 1rem;
  display: block;
}
.pillar-card--featured .pillar-tagline { color: #1DD9C1; }
.pillar-card p { font-size: 0.92rem; line-height: 1.75; color: rgba(11,40,35,0.75); }
.pillar-card--featured p { color: rgba(245,241,237,0.85); }

/* ---- PROOF STRIP ---- */
.proof-strip {
  background: #0B5F54;
  padding: 72px 24px;
}
.proof-strip--light { background: #F5F1ED; }
.proof-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.proof-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #F5F1ED;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.proof-quote--dark p { color: #1A1815; }
.proof-quote cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: rgba(245,241,237,0.55);
  letter-spacing: 0.08em;
  font-style: normal;
}
.proof-quote--dark cite { color: rgba(26,24,21,0.45); }

/* ---- FOR SECTION ---- */
.for-section { padding: 100px 24px; background: #fff; }
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.for-text h2 { margin-bottom: 1.5rem; }
.for-list { margin-bottom: 2.5rem; }
.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,24,21,0.06);
  font-size: 0.95rem;
  color: rgba(26,24,21,0.8);
}
.for-list li i { color: #1DD9C1; margin-top: 4px; flex-shrink: 0; }
.for-image { position: relative; }
.for-image img {
  border-radius: 8px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: #0B4A42;
  padding: 100px 24px;
  text-align: center;
}
.cta-banner h2 { color: #F5F1ED; margin-bottom: 1rem; }
.cta-banner p { color: rgba(245,241,237,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: rgba(245,241,237,0.4);
  margin-top: 1.2rem;
  letter-spacing: 0.08em;
}
.cta-secondary-link { margin-top: 1.5rem; }
.cta-secondary-link a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: rgba(245,241,237,0.45);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.cta-secondary-link a:hover { color: rgba(245,241,237,0.75); }

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 900;
  background: #1DD9C1;
  color: #0B5F54;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-sm {
  background: #0B5F54;
  color: #F5F1ED;
  border-color: #0B5F54;
  padding: 7px 18px;
  font-size: 0.82rem;
}
.sticky-cta .btn-sm:hover { background: #1A1815; border-color: #1A1815; }

/* ---- STORY SECTION ---- */
.story-section { padding: 100px 24px; background: #F5F1ED; }
.story-arc { display: flex; flex-direction: column; gap: 0; }
.story-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(26,24,21,0.08);
}
.story-block:last-child { border-bottom: none; }
.story-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,24,21,0.08);
  line-height: 1;
  padding-top: 4px;
}
.story-text h3 { color: #0B5F54; margin-bottom: 1rem; }
.story-text p { color: rgba(26,24,21,0.72); line-height: 1.85; margin-bottom: 1rem; }
.story-text p:last-child { margin-bottom: 0; }

/* ---- DIFFERENTIATORS ---- */
.diff-section { padding: 100px 24px; background: #fff; }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-text h2 { margin-bottom: 1rem; }
.diff-text > p { color: rgba(26,24,21,0.65); margin-bottom: 2rem; }
.diff-list { display: flex; flex-direction: column; gap: 20px; }
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff-list li i { color: #1DD9C1; font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.diff-list li div { display: flex; flex-direction: column; gap: 3px; }
.diff-list li strong { font-weight: 600; color: #1A1815; font-size: 0.95rem; }
.diff-list li span { font-size: 0.88rem; color: rgba(26,24,21,0.6); }
.diff-image { position: relative; overflow: visible; }
.diff-image img {
  border-radius: 8px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 15%;
}
.diff-image-label {
  position: static;
  display: block;
  text-align: center;
  margin-top: 12px;
  white-space: nowrap;
  background: rgba(11,95,84,0.92);
  padding: 10px 18px;
  border-radius: 4px;
}
.diff-image-label .mono-text {
  font-size: 0.72rem;
  color: #1DD9C1;
  letter-spacing: 0.1em;
}

/* ---- PROCESS STEPS ---- */
.process-step { padding: 100px 24px; }
.process-step--light { background: #F5F1ED; }
.process-step--turquoise { background: #40E0D0; }
.process-step--turquoise .process-content h2 { color: #0a3d35; }
.process-step--turquoise .process-content > p { color: rgba(10,61,53,0.8); }
.process-step--turquoise .process-list li { color: rgba(10,61,53,0.8); }
.process-step--turquoise .process-outcome { color: rgba(10,61,53,0.8); background: rgba(10,61,53,0.08); }
.process-step--dark { background: #1A1815; }
.process-step--teal { background: #0B5F54; }
.process-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
.process-grid--reverse { }
.process-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.process-icon-wrap--diagnosis { background: rgba(11,95,84,0.55); color: #1DD9C1; }
.process-icon-wrap--transformation { background: rgba(5,150,105,0.15); color: #059669; }
.process-icon-wrap--foundation { background: rgba(11,95,84,0.55); color: #1DD9C1; }
.process-connector {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: rgba(29,217,193,0.2);
  margin-top: 16px;
}
.process-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #1DD9C1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.process-content h2 { margin-bottom: 0.4rem; }
.process-step--dark .process-content h2,
.process-step--teal .process-content h2 { color: #F5F1ED; }
.process-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  color: #1DD9C1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.process-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: rgba(29,217,193,0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.process-content > p {
  color: rgba(26,24,21,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.process-step--dark .process-content > p,
.process-step--teal .process-content > p { color: rgba(245,241,237,0.72); }
.process-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 10px; }
.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(26,24,21,0.75);
}
.process-step--dark .process-list li,
.process-step--teal .process-list li { color: rgba(245,241,237,0.75); }
.process-list li i { color: #1DD9C1; margin-top: 4px; font-size: 0.7rem; flex-shrink: 0; }
.process-outcome {
  background: rgba(29,217,193,0.08);
  border-left: 3px solid #1DD9C1;
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: rgba(26,24,21,0.75);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.process-step--dark .process-outcome,
.process-step--teal .process-outcome { color: rgba(245,241,237,0.72); background: rgba(29,217,193,0.06); }
.outcome-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #1DD9C1;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 2px;
}

/* ---- DIAGNOSTIC SECTION ---- */
.diag-section { padding: 100px 24px; background: #F5F1ED; }
.diag-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.diag-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(26,24,21,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.diag-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.diag-card-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.diag-card h3 { margin-bottom: 0.8rem; }
.diag-card p { font-size: 0.92rem; color: rgba(26,24,21,0.68); line-height: 1.75; }

/* ---- TIMELINE ---- */
.timeline-section { padding: 100px 24px; background: #1A1815; }
.timeline-section .section-label { color: #1DD9C1; }
.timeline-section .section-title { color: #F5F1ED; margin-bottom: 3rem; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(245,241,237,0.07);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #1DD9C1;
  letter-spacing: 0.05em;
  padding-top: 4px;
  white-space: nowrap;
}
.timeline-content h4 {
  font-family: 'Playfair Display', serif;
  color: #F5F1ED;
  margin-bottom: 0.5rem;
}
.timeline-content p { font-size: 0.9rem; color: rgba(245,241,237,0.6); line-height: 1.75; }

/* ---- FOR WHO SECTION ---- */
.for-who-section { padding: 100px 24px; background: #fff; }
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.for-who-card {
  border-radius: 8px;
  padding: 48px 40px;
}
.for-who-card--yes {
  background: rgba(11,95,84,0.05);
  border: 1px solid rgba(11,95,84,0.15);
}
.for-who-card--no {
  background: rgba(26,24,21,0.03);
  border: 1px solid rgba(26,24,21,0.08);
}
.for-who-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.for-who-card--yes h3 { color: #0B5F54; }
.for-who-card--yes h3 i { color: #059669; }
.for-who-card--no h3 { color: rgba(26,24,21,0.6); }
.for-who-card--no h3 i { color: rgba(26,24,21,0.35); }
.for-who-card ul { display: flex; flex-direction: column; gap: 12px; }
.for-who-card ul li {
  font-size: 0.9rem;
  color: rgba(26,24,21,0.72);
  padding-left: 12px;
  border-left: 2px solid rgba(29,217,193,0.3);
  line-height: 1.6;
}
.for-who-card--no ul li { border-left-color: rgba(26,24,21,0.12); }

/* ---- BOOK SECTION ---- */
.book-section { padding: 100px 24px; background: #F5F1ED; text-align: center; }
.book-section h2 { margin-bottom: 1rem; }
.book-desc { color: rgba(26,24,21,0.65); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.book-investment {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(26,24,21,0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.book-invest-item {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(26,24,21,0.1);
}
.book-invest-item:last-child { border-right: none; }
.invest-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,24,21,0.4);
}
.invest-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B5F54;
}
.book-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.book-or {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(26,24,21,0.35);
  letter-spacing: 0.1em;
}
.book-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(26,24,21,0.5);
}
.book-note a { color: #0B5F54; text-decoration: underline; text-underline-offset: 3px; }

/* ---- COACHING INTRO ---- */
.coaching-intro { padding: 100px 24px; background: #F5F1ED; }
.coaching-intro h2 { margin-bottom: 1rem; }
.coaching-intro > .container--narrow > p {
  color: rgba(26,24,21,0.68);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.coaching-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(26,24,21,0.09);
  border-radius: 8px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(26,24,21,0.09);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0B5F54;
  line-height: 1;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(26,24,21,0.45);
  letter-spacing: 0.08em;
}

/* ---- PRICING ---- */
.pricing-section { padding: 100px 24px; background: #fff; }
.pricing-sub {
  color: rgba(26,24,21,0.6);
  margin-bottom: 3rem;
  max-width: 560px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid rgba(26,24,21,0.1);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.pricing-card--featured {
  background: #0B5F54;
  border-color: #0B5F54;
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1DD9C1;
  color: #0B5F54;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1DD9C1;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1815;
  margin-bottom: 0.5rem;
}
.pricing-card--featured .pricing-name { color: #F5F1ED; }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0B5F54;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.pricing-card--featured .pricing-price { color: #1DD9C1; }
.pricing-price span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(26,24,21,0.45);
}
.pricing-card--featured .pricing-price span { color: rgba(245,241,237,0.5); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(26,24,21,0.72);
}
.pricing-card--featured .pricing-features li { color: rgba(245,241,237,0.8); }
.pricing-features li i { color: #1DD9C1; flex-shrink: 0; margin-top: 3px; }
.pricing-feature--off { opacity: 0.4; }
.pricing-feature--off i { color: rgba(26,24,21,0.3) !important; }
.pricing-card--featured .pricing-feature--off { opacity: 0.35; }
.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: rgba(26,24,21,0.5);
}
.pricing-note a { color: #0B5F54; text-decoration: underline; text-underline-offset: 3px; }

/* ---- OFFER CARDS ---- */
.offer-cards-section { padding: 100px 24px; background: #fff; }
.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.offer-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.offer-card--primary { border: 2px solid #534AB7; }
.offer-card--mid { border: 2px solid #C8922A; }
.offer-card--secondary { border: 1px solid rgba(26,24,21,0.12); }
.offer-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.offer-badge--purple { background: #EEEDFE; color: #3C3489; }
.offer-badge--amber { background: #FEF3E2; color: #8A5C10; }
.offer-badge--teal { background: #E1F5EE; color: #085041; }
.offer-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1A1A2E;
  line-height: 1.3;
}
.offer-divider {
  height: 1px;
  background: rgba(26,24,21,0.1);
}
.offer-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(26,24,21,0.45);
  margin-bottom: 0.25rem;
}
.offer-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offer-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,24,21,0.07);
  font-size: 0.875rem;
  color: rgba(26,24,21,0.72);
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}
.offer-items li:last-child { border-bottom: none; }
.offer-icon {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 13px;
}
.offer-icon--purple { color: #7F77DD; }
.offer-icon--amber { color: #C8922A; }
.offer-icon--teal { color: #1D9E75; }
.offer-for-block {
  background: #F5F1ED;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: rgba(26,24,21,0.65);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  margin-top: auto;
}
.offer-card .btn { margin-top: 0.5rem; text-align: center; }

/* ---- CHANGES SECTION ---- */
.changes-section { padding: 100px 24px; background: #F5F1ED; }
.changes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.change-item {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid rgba(26,24,21,0.07);
}
.change-item i { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.change-item h4 { margin-bottom: 0.6rem; }
.change-item p { font-size: 0.88rem; color: rgba(26,24,21,0.62); line-height: 1.7; }

/* ---- FAQ ---- */
.faq-section { padding: 100px 24px; background: #F5F1ED; }
.faq-group { margin-bottom: 3.5rem; }
.faq-group-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,24,21,0.4);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,24,21,0.08);
}
.faq-item { border-bottom: 1px solid rgba(26,24,21,0.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1815;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: #0B5F54; }
.faq-icon {
  font-size: 0.85rem;
  color: #1DD9C1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.92rem; color: rgba(26,24,21,0.68); line-height: 1.85; }

/* ---- CONTACT ---- */
.contact-section { padding: 100px 24px; background: #F5F1ED; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap > p { color: rgba(26,24,21,0.6); margin-bottom: 2rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(26,24,21,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(26,24,21,0.15);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #1A1815;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1DD9C1;
  box-shadow: 0 0 0 3px rgba(29,217,193,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 28px;
  border: 1px solid rgba(26,24,21,0.08);
}
.contact-info-card--quiet { background: transparent; border-style: dashed; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.contact-info-card p { font-size: 0.88rem; color: rgba(26,24,21,0.62); margin-bottom: 1.2rem; line-height: 1.7; }
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a:not(.btn) { color: #0B5F54; text-decoration: underline; text-underline-offset: 3px; }
.contact-info-card--quiet .mono-text {
  font-size: 0.72rem;
  color: rgba(26,24,21,0.4);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

/* ---- FOOTER ---- */
.footer {
  background: #1A1815;
  padding: 72px 24px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 1.44rem;
  width: auto;
  filter: brightness(1.5);
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #7FFFF4;
}
.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(245,241,237,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(245,241,237,0.55);
  transition: color 0.2s;
}
.footer-social:hover { color: #1DD9C1; }
.footer-nav h4,
.footer-contact h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,237,0.35);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(245,241,237,0.55);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: #1DD9C1; }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(245,241,237,0.5);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.footer-contact .btn-ghost {
  color: rgba(245,241,237,0.7);
  border-color: rgba(245,241,237,0.2);
  margin-bottom: 1.5rem;
}
.footer-contact .btn-ghost:hover {
  background: rgba(245,241,237,0.08);
  border-color: rgba(245,241,237,0.4);
  color: #F5F1ED;
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(245,241,237,0.25) !important;
  line-height: 1.6 !important;
}
.footer-bottom {
  border-top: 1px solid rgba(245,241,237,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(245,241,237,0.3); }

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .for-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 80px 1fr; gap: 32px; }
  .diag-cards { grid-template-columns: 1fr; max-width: 500px; margin: 3rem auto 0; }
  .for-who-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .offer-cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 3rem auto 0; }
  .offer-card--mid { border: 2px solid #C8922A; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .changes-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pillars-grid { max-width: 100%; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(245,241,237,0.98);
    backdrop-filter: blur(8px);
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(26,24,21,0.08);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .page-hero { padding: 110px 24px 60px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-icon-col { flex-direction: row; }
  .process-connector { display: none; }
  .story-block { grid-template-columns: 1fr; gap: 12px; }
  .story-number { font-size: 1.8rem; }
  .diff-image img { height: 300px; }
  .for-image img { height: 300px; }
  .changes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .coaching-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(26,24,21,0.09); }
  .stat-item:last-child { border-bottom: none; }
  .book-investment { flex-direction: column; }
  .book-invest-item { border-right: none; border-bottom: 1px solid rgba(26,24,21,0.1); }
  .book-invest-item:last-child { border-bottom: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .sticky-cta { flex-direction: column; gap: 8px; padding: 12px 16px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 0.95rem; }
  .for-who-card { padding: 32px 24px; }
  .pillar-card { padding: 36px 24px; }
  .diag-card { padding: 32px 24px; }
  .pricing-card { padding: 32px 24px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hero-sub { font-size: 1rem; }
}
