/* =============================================
   WorkWise Academy — Professional Agency Design
   Light-mode first · Inter · Warm editorial
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ──────────────────────────── */
:root {
  /* Backgrounds */
  --bg:         #FAFAF8;   /* warm white — primary */
  --bg-alt:     #F0EEEB;   /* warm grey — alternating */
  --bg-navy:    #0C1D36;   /* deep navy — impact sections */
  --bg-navy-2:  #0F2444;   /* navy mid */

  /* Text */
  --text:       #1C1C1A;   /* near-black, warm */
  --text-2:     #5A5A54;   /* secondary body */
  --text-3:     #96948E;   /* muted / tertiary */
  --text-inv:   #F5F3EF;   /* text on navy */
  --text-inv-2: rgba(245,243,239,0.62);

  /* Accent */
  --accent:         #0B7B6B;
  --accent-hover:   #096558;
  --accent-light:   rgba(11,123,107,0.08);
  --accent-border:  rgba(11,123,107,0.22);

  /* Borders */
  --border:     #E6E3DC;
  --border-2:   #D4D1C9;
  --border-inv: rgba(255,255,255,0.10);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-mockup: 0 20px 60px rgba(12,29,54,0.14), 0 4px 16px rgba(12,29,54,0.08);

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

  /* Layout */
  --section-padding:   96px;
  --container-max:     1160px;
  --container-padding: 28px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  /* Transitions */
  --t-fast: 140ms ease;
  --t-base: 200ms ease;
  --t-slow: 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Compat aliases — used across inner-page HTML */
  --color-white:          var(--bg);
  --color-cream:          var(--bg-alt);
  --color-warm-grey:      var(--bg-alt);
  --color-light-grey:     var(--bg-alt);
  --color-border:         var(--border);
  --color-border-dark:    var(--border-inv);
  --color-muted:          var(--text-2);
  --color-text:           var(--text);
  --color-text-secondary: var(--text-2);
  --color-text-light:     var(--text-inv);
  --color-navy:           var(--bg-navy);
  --color-navy-mid:       var(--bg-navy-2);
  --color-charcoal:       var(--bg-navy);
  --color-teal:           var(--accent);
  --color-teal-hover:     var(--accent-hover);
  --color-teal-subtle:    var(--accent-light);
  --color-teal-muted:     var(--accent-border);
  --color-amber:          #C2850C;
  --font-sans:            var(--font);
  --font-serif:           Georgia, 'Times New Roman', serif;
  --container-padding:    var(--container-padding);
  --radius-sm:            var(--radius-sm);
  --radius-md:            var(--radius-md);
  --radius-lg:            var(--radius-lg);
  --radius-xl:            var(--radius-xl);
  --shadow-xs:            var(--shadow-xs);
  --shadow-sm:            var(--shadow-sm);
  --shadow-md:            var(--shadow-md);
  --shadow-lg:            var(--shadow-lg);
  --shadow-mockup:        var(--shadow-mockup);
  --transition-fast:      var(--t-fast);
  --transition-base:      var(--t-base);
  --transition-slow:      var(--t-slow);
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── Utility ────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ─── Section Backgrounds ────────────────────── */
.section--white     { background: var(--bg); }
.section--cream     { background: var(--bg-alt); }
.section--light-grey { background: var(--bg-alt); }
.section--dark      { background: var(--bg-navy); color: var(--text-inv); }
.section--charcoal  { background: var(--bg-navy); color: var(--text-inv); }
.section--teal      { background: var(--bg-navy); color: var(--text-inv); }

/* ─── Section Spacing ────────────────────────── */
.section            { padding: var(--section-padding) 0; }
.section--compact   { padding: 56px 0; }

/* ─── Typography ─────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section--dark .section-label,
.section--charcoal .section-label,
.section--teal .section-label { color: rgba(245,243,239,0.55); }

.headline-xl {
  font-size: clamp(2.25rem, 4.5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.headline-lg {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
}

.headline-md {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.headline-sm {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section--dark .headline-xl,
.section--dark .headline-lg,
.section--dark .headline-md,
.section--dark .headline-sm,
.section--charcoal .headline-xl,
.section--charcoal .headline-lg,
.section--charcoal .headline-md,
.section--teal .headline-xl,
.section--teal .headline-lg,
.section--teal .headline-md { color: var(--text-inv); }

.text-serif {
  font-style: italic;
  font-weight: 700;
  color: inherit;
}

.headline-xl .text-serif { font-weight: 800; }

.subheadline {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 600px;
  font-weight: 400;
}

.section--dark .subheadline,
.section--charcoal .subheadline,
.section--teal .subheadline { color: var(--text-inv-2); }

.text-muted { color: var(--text-2); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  white-space: nowrap;
  letter-spacing: -0.005em;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 8px rgba(11,123,107,0.22);
}

.btn--outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  padding: 11px 21px;
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.02);
}

.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--text-inv);
  padding: 11px 21px;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

.btn--white {
  background: #fff;
  color: var(--bg-navy);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--bg-alt);
}

.btn--link {
  padding: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
}
.btn--link:hover { color: var(--accent-hover); }

.btn--lg { padding: 14px 28px; font-size: 0.9375rem; }

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

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base);
}
.nav.is-scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }

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

.nav__logo {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg-navy);
  color: #fff;
  border-radius: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-right: 9px;
  flex-shrink: 0;
}
.nav__logo-text span {
  color: var(--text-3);
  font-weight: 400;
  margin-left: 1px;
}

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

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t-fast);
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link--active { color: var(--text); font-weight: 600; }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text);
}

.nav__cta { padding: 8px 18px; font-size: 0.8125rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 24px var(--container-padding);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  color: var(--text-2);
}
.nav__mobile .nav__link:hover { color: var(--text); }
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .btn {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
}

/* ─── Hero ───────────────────────────────────── */
.hero { padding: 56px 0 0; }

.hero--home {
  text-align: center;
  padding: 64px 0 72px;
  background: var(--bg);
}

.hero--centered {
  text-align: center;
  padding: 64px 0 72px;
  background: var(--bg);
}
.hero--centered .subheadline { margin: 0 auto; }

.hero__content--centered {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero--home .hero__actions,
.hero--centered .hero__actions { justify-content: center; }

/* Enrollment pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Product Mockup ─────────────────────────── */
.hero-mockup-wrap {
  margin-top: 56px;
  padding: 0 20px;
}

.product-mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 980px;
  margin: 0 auto;
}

.pm-chrome {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  gap: 7px;
}
.pm-dot { width: 8px; height: 8px; border-radius: 50%; }
.pm-dot--r { background: #E8665A; }
.pm-dot--y { background: #E5BF3C; }
.pm-dot--g { background: #62C554; }
.pm-url {
  margin-left: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 0.6875rem;
  color: var(--text-3);
  flex: 1;
  max-width: 280px;
}

.pm-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

.pm-sidebar {
  background: var(--bg-navy);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pm-sidebar-logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  padding: 0 6px 16px;
  border-bottom: 1px solid var(--border-inv);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pm-sidebar-logo span { color: rgba(255,255,255,0.38); font-weight: 400; }

.pm-nav-item {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.42);
  padding: 7px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.pm-nav-item svg { width: 14px; height: 14px; opacity: 0.45; }
.pm-nav-item--active { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.9); }
.pm-nav-item--active svg { opacity: 0.85; }

.pm-main { display: grid; grid-template-columns: 1fr 1.3fr; border-left: 1px solid var(--border); }

.pm-chat {
  padding: 20px 16px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.pm-chat-header {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pm-msg { display: flex; gap: 8px; max-width: 95%; }
.pm-msg--user { align-self: flex-end; flex-direction: row-reverse; }

.pm-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
}
.pm-avatar--user { background: var(--bg-navy); color: #fff; }
.pm-avatar--ai { background: var(--bg-alt); color: var(--text-2); font-size: 0.6875rem; font-style: italic; }

.pm-bubble { padding: 8px 12px; border-radius: 8px; font-size: 0.6875rem; line-height: 1.5; }
.pm-msg--user .pm-bubble { background: var(--bg-navy); color: rgba(255,255,255,0.9); border-bottom-right-radius: 2px; }
.pm-msg--ai .pm-bubble { background: #fff; border: 1px solid var(--border); color: var(--text-2); border-bottom-left-radius: 2px; }

.pm-preview {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-preview-header { display: flex; justify-content: space-between; align-items: center; }
.pm-preview-title { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.pm-preview-badge { font-size: 0.5625rem; font-weight: 600; color: #16803C; background: #ECFDF5; padding: 2px 7px; border-radius: 3px; }

.pm-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pm-kpi { padding: 10px; background: var(--bg-alt); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.pm-kpi-label { font-size: 0.5625rem; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.pm-kpi-value { font-size: 1.0625rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-top: 2px; }
.pm-kpi-change { font-size: 0.5625rem; font-weight: 600; color: #16803C; margin-top: 1px; }

.pm-chart-area { flex: 1; display: flex; flex-direction: column; }
.pm-chart-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.pm-chart-label { font-size: 0.625rem; font-weight: 600; color: var(--text-2); }
.pm-chart-sub { font-size: 0.5625rem; color: var(--text-3); }
.pm-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; flex: 1; }
.pm-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.pm-bar { width: 70%; border-radius: 2px 2px 0 0; }
.pm-bar--dark { background: var(--bg-navy); }
.pm-bar--light { background: #D5D3CD; }
.pm-bar-lbl { font-size: 0.5rem; color: var(--text-3); font-weight: 500; }

.pm-table { margin-top: 4px; }
.pm-table-header { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 0.5625rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; }
.pm-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 0.625rem; color: var(--text-2); }
.pm-table-row span:last-child { color: #16803C; font-weight: 600; }

/* ─── Credential Bar ─────────────────────────── */
.credential-bar {
  padding: 28px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credential-bar__grid {
  display: flex;
  justify-content: center;
}
.credential-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.credential-bar__item:last-child { border-right: none; }

.credential-bar__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential-bar__icon svg { width: 16px; height: 16px; color: var(--text-2); }
.credential-bar__text { font-size: 0.8125rem; font-weight: 600; color: var(--text); white-space: nowrap; }

/* ─── Section Header ─────────────────────────── */
.section-header { max-width: 560px; margin-bottom: 52px; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header .headline-lg { margin-bottom: 12px; }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-inv);
}
.card--dark:hover { background: rgba(255,255,255,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.25); transform: translateY(-2px); }

.card--featured {
  border-color: var(--accent-border);
  background: rgba(11,123,107,0.04);
  position: relative;
}
.card--dark.card--featured {
  background: rgba(11,123,107,0.08);
  border-color: rgba(11,123,107,0.35);
}

.card__badge {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}

.card__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.section--dark .card__number { color: rgba(255,255,255,0.12); }

.card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 18px; height: 18px; color: var(--text-2); }
.section--dark .card__icon { background: rgba(255,255,255,0.06); border-color: var(--border-inv); }
.section--dark .card__icon svg { color: var(--text-inv-2); }

.card__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.card--dark .card__label { color: rgba(245,243,239,0.5); }

.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card--dark .card__title { color: var(--text-inv); }

.card__text { color: var(--text-2); font-size: 0.875rem; line-height: 1.65; margin-bottom: 14px; }
.card--dark .card__text { color: var(--text-inv-2); }

.card__detail {
  font-size: 0.8125rem;
  color: var(--text-3);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.card--dark .card__detail { border-color: var(--border-inv); color: rgba(245,243,239,0.38); }

/* ─── Grids ──────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ─── Steps ──────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: var(--border);
}

.step { text-align: center; position: relative; }

.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.step__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.step__text { color: var(--text-2); font-size: 0.875rem; line-height: 1.65; }

/* ─── Outcome Cards ──────────────────────────── */
.outcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.outcome-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.outcome-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.outcome-card__icon svg { width: 18px; height: 18px; color: var(--text-2); }
.outcome-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.outcome-card__text { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ─── Featured Quote ─────────────────────────── */
.featured-quote {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.featured-quote__mark {
  font-size: 4rem;
  line-height: 0.65;
  color: var(--border-2);
  margin-bottom: 12px;
  font-style: italic;
  font-weight: 700;
}
.featured-quote__text {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 500;
}
.featured-quote__attribution { font-size: 0.8125rem; color: var(--text-3); font-weight: 500; }
.featured-quote__attribution strong { color: var(--text-2); font-weight: 600; }

/* ─── CTA Band ───────────────────────────────── */
.cta-band { padding: 72px 0; text-align: center; }
.cta-band .headline-lg { color: var(--text-inv); margin-bottom: 12px; }
.cta-band .subheadline { color: var(--text-inv-2); margin: 0 auto 28px; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* "The Shift" editorial section */
.shift-body {
  max-width: 720px;
  margin: 0 auto;
}
.shift-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 20px;
}
.shift-body p:last-child { margin-bottom: 0; }
.shift-body p strong { color: var(--text); font-weight: 600; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--bg-navy);
  color: var(--text-inv);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { font-size: 1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--text-inv); }
.footer__logo span { color: rgba(245,243,239,0.38); font-weight: 400; }
.footer__tagline { font-size: 0.8125rem; color: var(--text-inv-2); line-height: 1.65; }
.footer__heading { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,243,239,0.35); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__link { font-size: 0.8125rem; color: rgba(245,243,239,0.52); transition: color var(--t-fast); }
.footer__link:hover { color: var(--text-inv); }
.footer__bottom { border-top: 1px solid var(--border-inv); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(245,243,239,0.28); }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a:hover { color: rgba(245,243,239,0.5); }

/* ─── FAQ Accordion ──────────────────────────── */
.accordion { max-width: 720px; margin: 0 auto; }
.accordion__item { border-bottom: 1px solid var(--border); }

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.accordion__trigger:hover { color: var(--text-2); }
.accordion__trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 3px; }

.accordion__icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-3); transition: transform var(--t-base); }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }

.accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.accordion__body { padding-bottom: 20px; font-size: 0.9375rem; color: var(--text-2); line-height: 1.75; }

/* ─── Forms ──────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__label { font-size: 0.8125rem; font-weight: 600; color: var(--text); }

.form__input,
.form__select,
.form__textarea {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form__textarea { min-height: 120px; resize: vertical; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6B63' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
}

/* ─── Resource Cards ─────────────────────────── */
.resource-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--t-base), transform var(--t-base); }
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.resource-card__image { height: 172px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 0.75rem; border-bottom: 1px solid var(--border); }
.resource-card__body { padding: 22px; }
.resource-card__meta { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.resource-card__tag { font-size: 0.625rem; font-weight: 600; padding: 2px 7px; border-radius: 3px; background: var(--bg-alt); color: var(--text-2); border: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; }
.resource-card__date { font-size: 0.6875rem; color: var(--text-3); }
.resource-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; line-height: 1.35; letter-spacing: -0.01em; }
.resource-card__excerpt { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; }

/* ─── Filter Tabs ────────────────────────────── */
.filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 6px 16px; font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-sm); border: 1px solid var(--border); color: var(--text-2); background: #fff; transition: all var(--t-fast); cursor: pointer; }
.filter-btn:hover { border-color: var(--text); color: var(--text); }
.filter-btn.is-active { background: var(--bg-navy); color: #fff; border-color: var(--bg-navy); }

/* ─── Case Cards ─────────────────────────────── */
.case-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow var(--t-base), transform var(--t-base); }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-card__role { font-size: 0.6875rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.case-card__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.case-card__text { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 12px; }
.case-card__impact { display: flex; align-items: center; gap: 7px; padding: 9px 12px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; color: var(--text-2); margin-bottom: 14px; }
.case-card__quote { font-style: italic; font-size: 0.9375rem; color: var(--text-2); padding-left: 14px; border-left: 2px solid var(--border-2); line-height: 1.6; }

/* ─── Contact ────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-info__heading { font-size: clamp(1.875rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 14px; }
.contact-info__text { color: var(--text-2); font-size: 0.9375rem; margin-bottom: 28px; line-height: 1.75; }
.contact-detail { display: flex; align-items: center; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.contact-detail__icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon svg { width: 16px; height: 16px; color: var(--text-2); }
.contact-detail__label { font-size: 0.6875rem; color: var(--text-3); }
.contact-detail__value { font-weight: 600; font-size: 0.875rem; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }

/* ─── About ──────────────────────────────────── */
.about-hero__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.about-photo { width: 100%; aspect-ratio: 3/4; background: var(--bg-alt); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 0.75rem; border: 1px solid var(--border); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.approach-card { padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); }
.approach-card__number { font-size: 2rem; font-weight: 800; color: var(--border-2); line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em; }
.approach-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.approach-card__text { font-size: 0.8125rem; color: var(--text-2); line-height: 1.65; }

/* ─── Timeline ───────────────────────────────── */
.timeline { position: relative; max-width: 620px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1.5px; background: var(--border); }
.timeline__item { padding-left: 28px; padding-bottom: 32px; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -3.5px; top: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--bg-navy); }
.timeline__year { font-size: 0.6875rem; font-weight: 600; color: var(--text-3); margin-bottom: 3px; }
.timeline__title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 3px; letter-spacing: -0.01em; }
.timeline__text { font-size: 0.8125rem; color: var(--text-2); line-height: 1.65; }

/* ─── Programs ───────────────────────────────── */
.program-detail { display: grid; grid-template-columns: 1.8fr 1fr; gap: 48px; align-items: start; }
.program-detail__sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 84px; box-shadow: var(--shadow-sm); }
.section--dark .program-detail__sidebar { background: rgba(255,255,255,0.05); border-color: var(--border-inv); }
.section--cream .program-detail__sidebar { background: var(--bg); }
.sidebar__price { font-size: 1.625rem; font-weight: 700; color: var(--text); margin-bottom: 2px; letter-spacing: -0.03em; }
.sidebar__price-note { font-size: 0.75rem; color: var(--text-3); margin-bottom: 20px; }
.sidebar__features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.sidebar__feature { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-2); }
.sidebar__feature svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.section--dark .sidebar__feature { color: var(--text-inv-2); }
.module-list { display: flex; flex-direction: column; gap: 12px; }
.module { display: flex; gap: 12px; align-items: flex-start; }
.module__number { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); color: var(--text-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; flex-shrink: 0; }
.section--dark .module__number { background: rgba(255,255,255,0.07); border-color: var(--border-inv); color: var(--text-inv-2); }
.module__title { font-weight: 600; margin-bottom: 2px; font-size: 0.875rem; letter-spacing: -0.01em; }
.module__text { font-size: 0.75rem; color: var(--text-2); line-height: 1.55; }
.section--dark .module__text { color: var(--text-inv-2); }

/* ─── Enterprise ─────────────────────────────── */
.enterprise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.enterprise-feature { display: flex; gap: 12px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-inv); border-radius: var(--radius-md); transition: background var(--t-fast); }
.enterprise-feature:hover { background: rgba(255,255,255,0.07); }
.enterprise-feature__icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.enterprise-feature__icon svg { width: 16px; height: 16px; color: var(--text-inv-2); }
.enterprise-feature__title { font-weight: 600; margin-bottom: 2px; color: var(--text-inv); font-size: 0.875rem; letter-spacing: -0.01em; }
.enterprise-feature__text { font-size: 0.75rem; color: var(--text-inv-2); line-height: 1.55; }

.calendar-placeholder { background: var(--bg-alt); border: 1.5px dashed var(--border-2); border-radius: var(--radius-lg); padding: 48px; text-align: center; color: var(--text-3); margin-top: 36px; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pm-body { grid-template-columns: 1fr; }
  .pm-sidebar { display: none; }
  .pm-main { grid-template-columns: 1fr; }
  .pm-chat { border-right: none; border-bottom: 1px solid var(--border); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .program-detail { grid-template-columns: 1fr; }
  .program-detail__sidebar { position: static; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .enterprise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .credential-bar__grid { flex-wrap: wrap; gap: 0; }
  .credential-bar__item { border-right: none; padding: 14px 20px; flex: 0 0 calc(50% - 0px); border-bottom: 1px solid var(--border); }
  .credential-bar__item:nth-last-child(-n+2) { border-bottom: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .approach-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .hero { padding: 40px 0 0; }
  .hero--home { padding: 48px 0 56px; }
  .hero--centered { padding: 48px 0 56px; }
  .hero-mockup-wrap { padding: 0; margin-top: 40px; }
  .pm-kpis { grid-template-columns: 1fr; }
  .featured-quote { padding: 28px 20px; }
}

@media (max-width: 480px) {
  :root { --section-padding: 56px; }
  .product-mockup { display: none; }
  .credential-bar__item { flex: 0 0 100%; border-bottom: 1px solid var(--border); }
  .credential-bar__item:last-child { border-bottom: none; }
}
