/* IC TechDojo — main.css (design épuré : blanc/off-white + navy/orange, aligné sur le design validé)
   Variables → Reset → Layout → Composants → Sections partagées → Pages → Footer → Animations → Responsive
   ──────────────────────────────────────────────────────────────────────────────────────────────────── */

/* =============================================================================
   1. CUSTOM PROPERTIES
   ============================================================================= */
:root {
  --navy:          #101B4C;
  --navy-light:    #16215C;
  --navy-mid:      #1C2B6B;
  --orange:        #F5A623;
  --orange-dark:   #E8941A;
  --coral:         #E85C4A;
  --blue:          #3B5BDB;
  --green:         #2ECC71;
  --white:         #FFFFFF;
  --offwhite:      #F7F8FC;
  --text:          #12172E;
  --muted:         #5B6178;
  --muted-onDark:  #B9C2E8;
  --grey:          var(--muted); /* alias kept for inline styles authored before the --muted rename */
  --border:        #ECEDF5;

  --card-bg:       #FFFFFF;
  --card-border:   var(--border);

  /* Page accent — surchargé par data-page */
  --accent:        var(--orange);
  --accent-dark:   var(--orange-dark);
  --accent-tint:   #FFF9F0;
  --accent-tint-border: #F5D9A8;
  --accent-text:   #8A4A1F;

  --navbar-h:      124px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-sm:     10px;
  --radius-pill:   999px;
  --container:     1100px;
  --gap:           1.5rem;

  --shadow-card:   0 6px 20px rgba(16,27,76,0.06);
  --shadow-accent: 0 8px 22px rgba(245,166,35,0.28);

  --ease:          0.2s ease;
  --font-display:  'Baloo 2', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
}

[data-page="devsecops"] {
  --accent:        var(--blue);
  --accent-dark:   #2C46B0;
  --accent-tint:   #EEF1FB;
  --accent-tint-border: #DCE1F5;
  --accent-text:   #28306B;
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a  { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* =============================================================================
   3. LAYOUT
   ============================================================================= */
.container { max-width: var(--container); margin-inline: auto; }

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
  position: relative;
  background:
    radial-gradient(circle at 8% 0%, rgba(59,91,219,0.035), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(245,166,35,0.035), transparent 42%),
    var(--white);
}
.section-sm { padding: clamp(2.5rem, 5vw, 3.5rem) 2rem; background: var(--white); }

.stripe-bg {
  background:
    radial-gradient(circle at 90% 0%, rgba(59,91,219,0.04), transparent 45%),
    radial-gradient(circle at 5% 100%, rgba(232,92,74,0.03), transparent 45%),
    var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.text-center { text-align: center; }

/* =============================================================================
   4. TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem);     font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.2rem;  font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.98rem; font-weight: 700; }

.text-orange { color: var(--orange); }
.text-coral  { color: var(--coral); }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.text-grey   { color: var(--muted); }
.text-accent { color: var(--accent); }

.subtitle { font-size: 1.05rem; color: var(--muted); max-width: 660px; margin-inline: auto; margin-top: 1rem; line-height: 1.75; }
.divider  { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 1.5rem 0; }
.divider-center { margin-inline: auto; }

/* Dark-navy sections (hero, process, cta) — force white typography + dark-aware pills */
.page-hero h1, .page-hero h2, .section-process h2, .section-cta-dark h2 { color: var(--white); }
.page-hero .tag, .section-process .tag, .section-cta-dark .tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: #F0D6A6;
}
.page-hero .tag.tag-blue, .section-process .tag.tag-blue, .section-cta-dark .tag.tag-blue { color: #C9D3F5; }
.page-hero .tag::before, .section-process .tag::before, .section-cta-dark .tag::before { background: var(--orange); }
.page-hero .tag.tag-blue::before, .section-process .tag.tag-blue::before, .section-cta-dark .tag.tag-blue::before { background: #5B8DEF; }

/* =============================================================================
   5. COMPONENTS
   ============================================================================= */

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--navbar-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar__brand { display: flex; align-items: center; gap: 10px; }
.navbar__logo  { height: 100px; width: auto; }
.navbar__name  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.navbar__nav   { display: flex; align-items: center; }
.navbar__link {
  position: relative; display: flex; align-items: center; height: var(--navbar-h);
  padding-inline: 1.1rem; font-size: 0.92rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.2px; white-space: nowrap; transition: color var(--ease);
}
.navbar__link:hover, .navbar__link[aria-current="page"] { color: var(--navy); }
.navbar__link[aria-current="page"]::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem; height: 3px;
  background: var(--orange); border-radius: 3px 3px 0 0;
}
.navbar__cta {
  margin-left: 1rem; padding: 0.55rem 1.3rem; background: var(--navy); color: var(--white);
  border-radius: var(--radius-pill); font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 6px 16px rgba(16,27,76,0.22);
  transition: background var(--ease), transform var(--ease);
}
.navbar__cta:hover { background: var(--navy-light); color: var(--white); transform: translateY(-1px); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.navbar__toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 700;
  white-space: nowrap; text-decoration: none; transition: all var(--ease); border: none;
}
.btn-primary { background: var(--orange); color: var(--navy); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--orange-dark); color: var(--navy); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost-dark:hover { border-color: var(--navy); background: var(--offwhite); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 8px 22px rgba(59,91,219,0.28); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }
.btn-xl { padding: 1.2rem 3rem;    font-size: 1.1rem; }

/* ── Tags / pill badges (dot + label, teinte pastel) ─────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tag-orange { background: #FFF9F0; color: #8A4A1F; border: 1px solid #F5D9A8; }
.tag-orange::before { background: var(--orange); }
.tag-coral  { background: #FFF3F1; color: #8A2E22; border: 1px solid #F7CFC7; }
.tag-coral::before  { background: var(--coral); }
.tag-green  { background: #E9F9EF; color: #1F6B3D; border: 1px solid #CFF3DC; }
.tag-green::before  { background: var(--green); }
.tag-blue   { background: #EEF1FB; color: #28306B; border: 1px solid #DCE1F5; }
.tag-blue::before   { background: var(--blue); }
.tag-red    { background: #FDEEEB; color: #8A2E22; border: 1px solid #F7CFC7; }
.tag-red::before    { background: var(--coral); }
.tag-accent { background: var(--accent-tint); color: var(--accent-text); border: 1px solid var(--accent-tint-border); }
.tag-accent::before { background: var(--accent); }

/* Tags placed on dark backgrounds (hero, process, cta) */
.on-dark .tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: #F0D6A6; }
.on-dark .tag.tag-blue { color: #C9D3F5; }
.on-dark .tag::before { background: var(--orange); }
.on-dark .tag.tag-blue::before { background: #5B8DEF; }

/* ── Card (generic) ──────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,27,76,0.10); }

/* ── Pill list (tech tags) ───────────────────────────────────────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { padding: 3px 11px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; background: var(--offwhite); color: var(--muted); border: 1px solid var(--border); }

/* =============================================================================
   6. SHARED SECTIONS
   ============================================================================= */
.section-header { text-align: center; margin-bottom: 3rem; }

/* ── Page hero (inner pages) — toujours en navy ──────────────────────────── */
.page-hero {
  min-height: 60vh; display: flex; align-items: center;
  padding-top: calc(var(--navbar-h) + 3rem); padding-bottom: 4rem; padding-inline: 2rem;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%),
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.14) 1px, transparent 1.4px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 1px, transparent 1.4px);
  background-size: 100% 100%, 200px 200px, 240px 240px;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -100px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.2), transparent 70%); filter: blur(8px); pointer-events: none;
}
.page-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; }
.page-hero__logo { width: 150px; height: auto; display: block; }
.page-hero__logo-frame {
  width: 210px; height: 210px; border-radius: 28px; background: var(--white);
  border: 3px solid #0A0F2E; display: flex; align-items: center; justify-content: center;
  padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.35); animation: floatLogo 4s ease-in-out infinite;
}
.page-hero__logo-frame--orange { border-color: var(--orange); }
@keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.page-hero__lead { font-size: 1.08rem; color: var(--muted-onDark); max-width: 620px; line-height: 1.75; margin-block: 1.2rem 2rem; }
.page-hero__proof { margin-top: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.page-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── IA callout ──────────────────────────────────────────────────────────── */
.ia-callout {
  background: var(--navy); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem;
}
.ia-callout__icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(245,166,35,0.16); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.ia-callout p { font-size: 0.92rem; color: var(--muted-onDark); line-height: 1.7; margin: 0; }

/* ── Feature grid ("Ce qui change") ──────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-card); }
.feature-card__check {
  width: 32px; height: 32px; border-radius: 50%; background: #E9F9EF; color: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── Process (dark, timeline vertical) ───────────────────────────────────── */
.section-process {
  background-image: linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden;
}
.section-process::before {
  content: ''; position: absolute; top: 20%; right: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.16), transparent 70%); filter: blur(8px); pointer-events: none;
}
.process-v { position: relative; display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 3rem auto 0; }
.process-v__step { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2.5rem; position: relative; }
.process-v__step:not(:last-child)::before { content: ''; position: absolute; left: 21px; top: 46px; bottom: 0; width: 2px; background: rgba(255,255,255,0.16); }
.process-v__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy-light);
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 20px 4px rgba(91,141,239,0.35); z-index: 1;
}
.process-v__step:nth-child(even) .process-v__num { box-shadow: 0 0 20px 4px rgba(245,166,35,0.35); }
.process-v__body h4 { color: var(--white); margin-bottom: 0.3rem; }
.process-v__body p  { color: var(--muted-onDark); font-size: 0.9rem; margin: 0; }

/* ── Stats row ──────────────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
.stat-box strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.stat-box span   { font-size: 0.86rem; color: var(--muted); }

/* ── Founder quote ──────────────────────────────────────────────────────── */
.quote-founder { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.75rem 2.5rem; }
.quote-founder__mark { position: absolute; top: 30px; left: 34px; color: var(--orange); opacity: 0.4; font-family: Georgia, serif; font-size: 3.5rem; line-height: 0; }
.quote-founder blockquote { padding-left: 34px; font-size: 1.05rem; line-height: 1.8; color: var(--text); font-weight: 500; font-style: normal; }
.quote-founder cite { display: block; padding-left: 34px; margin-top: 1.1rem; font-size: 0.875rem; color: var(--muted); font-weight: 600; font-style: normal; }

/* ── Expert strip (fondateur) ─────────────────────────────────────────────── */
.expert-strip { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.75rem; display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center; box-shadow: var(--shadow-card); }
.expert-strip__avatar { width: 78px; height: 78px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--font-display); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.expert-strip__role { color: var(--orange); font-size: 0.88rem; font-weight: 700; margin-block: 0.3rem 0.8rem; }
.expert-strip__bio { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.expert-strip__badges { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.expert-badge { padding: 6px 14px; border-radius: var(--radius-sm); font-size: 0.76rem; font-weight: 700; text-align: center; white-space: nowrap; }
.expert-badge-blue   { background: #EEF1FB; color: var(--blue);  }
.expert-badge-green  { background: #E9F9EF; color: #1F6B3D; }
.expert-badge-orange { background: #FFF9F0; color: #8A4A1F; }

/* ── FAQ accordion ───────────────────────────────────────────────────────── */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item__q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-size: 0.97rem; font-weight: 700; padding: 1.1rem 1.35rem; transition: color var(--ease); }
.faq-item__q:hover { color: var(--orange); }
.faq-item__toggle { color: var(--muted); flex-shrink: 0; transition: transform var(--ease); display: flex; }
.faq-item__toggle svg { width: 18px; height: 18px; }
.faq-item__a { font-size: 0.9rem; color: var(--muted); line-height: 1.7; padding: 0 1.35rem 1.35rem; display: none; }
.faq-item.is-open .faq-item__a      { display: block; }
.faq-item.is-open .faq-item__toggle { transform: rotate(180deg); }

/* ── Process steps (grille horizontale, si utilisé) ──────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: 2.5rem; position: relative; }
.process-step { text-align: center; }
.process-step__num { width: 52px; height: 52px; border-radius: 50%; margin-inline: auto; margin-bottom: 1rem; background: var(--offwhite); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--orange); }
.process-step h4 { margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── Module cards ────────────────────────────────────────────────────────── */
.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.container-narrow { max-width: 780px; margin-inline: auto; }
.tag-centered { margin: 0 auto; width: fit-content; }
.process-heading { text-align: center; margin-top: 1rem; }
.heading-tight { margin-bottom: 0.75rem; }
.subtitle-tight { margin-bottom: 2.5rem; }
.cta-heading { margin-top: 1.25rem; }
.faq-heading { margin-bottom: 2rem; }
.text-block { color: var(--muted); line-height: 1.8; margin-top: 1rem; }
.text-block--first { color: var(--muted); line-height: 1.8; margin-top: 1.5rem; }
.pain-lead { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.75; }
.pfr-badge { background: #FFF9F0; color: var(--orange); }
.module-num-blue.pfr-badge { background: #FFF9F0; color: var(--orange); }
.track-meta-lead { color: var(--muted); font-size: 0.97rem; max-width: 680px; line-height: 1.75; }
.track-meta-lead strong { color: var(--text); }
.pfr-badge-text { color: var(--orange); }
.module-card, .module-card-dso, .expert-module {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
  display: grid; grid-template-columns: 44px 1fr; gap: 1rem; box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.module-card:hover, .module-card-dso:hover, .expert-module:hover { transform: translateX(4px); box-shadow: 0 10px 26px rgba(16,27,76,0.09); }
.module-num, .module-num-blue, .expert-num {
  width: 44px; height: 44px; border-radius: 10px; background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.module-num-blue { background: #EEF1FB; color: var(--blue); }
.expert-num { background: #EEF1FB; color: var(--blue); }
.expert-num.cloud { background: #E9F9EF; color: #1F6B3D; }
.module-card h4, .module-card-dso h4, .expert-module h4 { margin-bottom: 0.3rem; }
.module-card p, .module-card-dso p, .expert-module p  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.module-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 0.6rem; }
.module-tag  { padding: 2px 9px; border-radius: 5px; font-size: 0.72rem; font-weight: 600; background: var(--offwhite); color: var(--muted); font-family: ui-monospace, 'Fira Code', monospace; }
.check-inline { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 0.8rem; }
.check-inline li { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); }
.check-inline li::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ── Track tabs (bootcamp / expert) ──────────────────────────────────────── */
.track-tabs { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; max-width: 480px; background: var(--white); }
.track-meta-row { display: grid; grid-template-columns: 1fr auto; align-items: flex-start; gap: 2rem; margin-bottom: 2rem; }
.track-meta-box { text-align: center; flex-shrink: 0; }
.track-meta-box__label { font-size: 0.8rem; color: var(--muted); }
.track-meta-box__value { font-size: 2rem; font-weight: 900; }
@media (max-width: 640px) { .track-meta-row { grid-template-columns: 1fr; } }
.track-tab { flex: 1; padding: 0.75rem 1.5rem; font-size: 0.9rem; font-weight: 700; text-align: center; cursor: pointer; background: transparent; color: var(--muted); transition: background var(--ease), color var(--ease); }
.track-tab.is-active { background: var(--navy); color: var(--white); }
.track-section { display: none; }
.track-section.is-active { display: block; }

/* ── For-who grid ────────────────────────────────────────────────────────── */
.for-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.for-who-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow-card); }
.for-who-card h4 { margin-bottom: 0.3rem; }
.for-who-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── Tools grid ──────────────────────────────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center; box-shadow: var(--shadow-card); }
.tool-card__name { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.tool-card__cat  { font-size: 0.72rem; color: var(--muted); }

/* ── Gain checklist ──────────────────────────────────────────────────────── */
.gain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.gain-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; line-height: 1.5; }
.gain-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── CTA final (dark) ────────────────────────────────────────────────────── */
.section-cta-dark {
  background-image: linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%);
  padding: clamp(4.5rem, 8vw, 7rem) 0; text-align: center; position: relative; overflow: hidden;
}
.section-cta-dark::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%); filter: blur(8px); pointer-events: none;
}
.section-cta-dark h2 { position: relative; color: var(--white); margin-bottom: 1rem; }
.section-cta-dark p  { position: relative; color: var(--muted-onDark); max-width: 520px; margin: 0 auto 2rem; font-size: 0.95rem; }
.section-cta-dark .cta-note { position: relative; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1.25rem; }

/* =============================================================================
   7. PAGE — HOME
   ============================================================================= */
.hero-home {
  min-height: 92vh; display: flex; align-items: center;
  padding-top: calc(var(--navbar-h) + 3rem); padding-bottom: 4rem; padding-inline: 2rem;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%),
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.14) 1px, transparent 1.4px),
    radial-gradient(circle at 80% 65%, rgba(255,255,255,0.1) 1px, transparent 1.4px);
  background-size: 100% 100%, 210px 210px, 250px 250px;
}
.hero-home::before {
  content: ''; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.2), transparent 70%); filter: blur(8px); pointer-events: none;
}
.hero-home::after {
  content: ''; position: absolute; bottom: -140px; left: -100px; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,141,239,0.18), transparent 70%); filter: blur(8px); pointer-events: none;
}
.hero-home .container { position: relative; }
.hero-home__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #C9D3F5; margin-bottom: 1.75rem;
}
.hero-home__badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #5B8DEF; flex-shrink: 0; }
.hero-home h1    { max-width: 780px; margin-bottom: 1.5rem; color: var(--white); }
.hero-home__lead { font-size: 1.15rem; color: var(--muted-onDark); max-width: 620px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-home__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-proof { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }

/* Pain grid */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.pain-item { display: flex; gap: 1rem; align-items: flex-start; background: #FFF9F8; border: 1px solid #FBE4E0; border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-bottom: 1rem; }
.pain-item:last-child { margin-bottom: 0; }
.pain-item__icon-circle { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: #FDEEEB; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.pain-item h4 { margin-bottom: 0.3rem; }
.pain-item p  { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }

/* Coaching cards (home) */
.coaching-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.coaching-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.coaching-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(16,27,76,0.12); }
.coaching-card__icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.coaching-card-blue   .coaching-card__icon { background: #EEF1FB; }
.coaching-card-orange .coaching-card__icon { background: #FFF9F0; }
.coaching-card h3     { margin-bottom: 0.6rem; }
.coaching-card > p    { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.coaching-card .pill-list { margin-bottom: 1.5rem; }
.coaching-card__link { margin-top: auto; display: flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 700; transition: gap var(--ease); }
.coaching-card:hover .coaching-card__link { gap: 10px; }

/* =============================================================================
   8. FOOTER
   ============================================================================= */
.footer { background: #0D163E; padding: 2.25rem 2rem; text-align: center; font-size: 0.82rem; color: #8B96C4; }
.footer__logo { height: 34px; margin-inline: auto; margin-bottom: 0.9rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer a { color: var(--orange); transition: color var(--ease); }
.footer a:hover { color: var(--orange-dark); }
.footer__meta { margin-top: 0.4rem; }

/* =============================================================================
   9. ANIMATIONS
   ============================================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.anim-fade    { animation: fadeUp 0.7s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.hero-home__badge::after { content: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================================================
   10. RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .tools-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .coaching-cards, .for-who-grid, .process-steps, .feature-grid, .modules-grid { grid-template-columns: 1fr; }
  .gain-list  { grid-template-columns: 1fr; }
  .pain-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__logo { display: none; }
  .expert-strip { grid-template-columns: 1fr; text-align: center; }
  .expert-strip__badges { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --gap: 1rem; }
  .grid-2, .grid-3, .coaching-cards, .for-who-grid, .process-steps, .tools-grid, .modules-grid { grid-template-columns: 1fr; }
  .navbar__nav { display: none; }
  .navbar__nav.is-open {
    display: flex; flex-direction: column; position: fixed; top: var(--navbar-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
    padding-block: 1rem; z-index: 99;
  }
  .navbar__nav.is-open .navbar__link { height: auto; line-height: 1; padding: 1rem 2rem; }
  .navbar__nav.is-open .navbar__cta  { margin: 0.5rem 2rem; width: calc(100% - 4rem); justify-content: center; }
  .navbar__toggle { display: flex; }
  .expert-strip { padding: 1.75rem; }
  .section    { padding: 2.75rem 1.2rem; }
  .section-sm { padding: 2rem 1.2rem; }
  .track-tabs { max-width: 100%; }
}
