/* ═════════════════════════════════════════════════════
   EDENAT AI — Bordeaux / Anthracite Identity
   Organic, warm, serious. No blue.
   Mobile-first. No framework dependencies.
═════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
  --bordeaux:      #6B252F;
  --bordeaux-dark: #501E25;
  --bordeaux-light:#8B3D4A;
  --bordeaux-glow: rgba(107, 37, 47, 0.12);
  --anthra:        #2C2C2C;
  --anthra-light:  #3D3D3D;
  --anthra-muted:  #5A5A5A;
  --cream:         #FAF6F1;
  --cream-dark:    #F0E8DF;
  --cream-mid:     #F5EFE8;
  --warm-white:    #FDFCFA;
  --bone:          #E8E0D5;
  --rust:          #A33B2A;
  --gold:          #C4953A;
  --text-primary:  #2C2C2C;
  --text-secondary:#5A5A5A;
  --text-muted:    #8A8178;
  --border:        rgba(44, 44, 44, 0.1);
  --border-strong: rgba(44, 44, 44, 0.18);
  --shadow-sm:     0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md:     0 4px 20px rgba(44, 44, 44, 0.1);
  --shadow-lg:     0 8px 40px rgba(44, 44, 44, 0.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     28px;
  --transition:    0.25s ease;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem);   letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { line-height: 1.7; }

/* ── Layout helpers ──────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 18px;
  position: relative;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--bordeaux);
  margin-right: 10px;
  vertical-align: middle;
}

.section-title {
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--bordeaux);
  color: var(--warm-white);
  box-shadow: 0 2px 12px rgba(107, 37, 47, 0.25);
}
.btn-primary:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 37, 47, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
}
.btn-ghost:hover {
  background: var(--bordeaux-glow);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
  background: var(--warm-white);
  color: var(--anthra);
  box-shadow: var(--shadow-sm);
}
.btn-sm:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
}

/* ── Animations ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes flame-flicker {
  0%, 100% { transform: scale(1)    rotate(0deg); opacity: 1; }
  33%       { transform: scale(1.04) rotate(1deg); opacity: 0.92; }
  66%       { transform: scale(0.97) rotate(-1deg); opacity: 0.97; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.95); opacity: 1; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease-out both;
}
.animate-fade-up-delay-1 { animation-delay: 0.15s; }
.animate-fade-up-delay-2 { animation-delay: 0.3s; }
.animate-fade-up-delay-3 { animation-delay: 0.45s; }
.animate-fade-up-delay-4 { animation-delay: 0.6s; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--anthra);
  letter-spacing: 0.02em;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--bordeaux);
}
.nav-cta { }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
  margin-left: 24px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--anthra-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--anthra); background: var(--cream-dark); }
.nav-link-active { color: var(--bordeaux) !important; font-weight: 600; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Organic background circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 37, 47, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 44, 44, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 37, 47, 0.07);
  border: 1px solid rgba(107, 37, 47, 0.15);
  color: var(--bordeaux);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--bordeaux);
  border-radius: 50%;
  position: relative;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--bordeaux);
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0.5;
}
.hero-title {
  margin-bottom: 22px;
}
.hero-title-accent {
  color: var(--bordeaux);
  position: relative;
  display: inline-block;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--gold));
  border-radius: 2px;
}
.hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-form {
  margin-bottom: 16px;
}
.hero-form .input-group {
  display: flex;
  gap: 12px;
  max-width: 440px;
}
.hero-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-strong);
  background: var(--warm-white);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.hero-form input::placeholder { color: var(--text-muted); }
.hero-form input:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px var(--bordeaux-glow);
}
.hero-form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 20px;
  margin-top: 8px;
  font-weight: 500;
}
.hero-proof {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-proof::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(107, 37, 47, 0.12);
  animation: fadeIn 1s ease-out 0.5s both;
}
.hero-logo-ring:nth-child(2) {
  inset: -32px;
  border-color: rgba(107, 37, 47, 0.07);
  animation-delay: 0.7s;
}
.hero-logo-img {
  width: 240px;
  height: 240px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
  animation: flame-flicker 8s ease-in-out infinite;
}

/* ═══════════════ PAIN ═══════════════ */
.pain-section {
  background: var(--anthra);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: 'PROBLÈME';
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}
.pain-section .section-label { color: var(--gold); }
.pain-section .section-label::before { background: var(--gold); }
.pain-section .section-title { color: var(--warm-white); }
.pain-section .section-desc { color: rgba(255,255,255,0.55); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(107, 37, 47, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: rgba(250, 246, 241, 0.6);
}
.pain-card h3 {
  color: var(--warm-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.pain-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ═══════════════ SOLUTION ═══════════════ */
.solution-section {
  background: var(--cream);
  padding: 100px 0;
}
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 36px;
}
.pathway-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--warm-white);
  transition: all var(--transition);
  position: relative;
}
.pathway-card:hover {
  border-color: var(--bordeaux-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pathway-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--bordeaux-light));
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.pathway-card:hover::after { opacity: 1; }
.pathway-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pathway-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pathway-card:nth-child(1) .pathway-icon-wrap { background: rgba(107, 37, 47, 0.08); }
.pathway-card:nth-child(1) .pathway-icon-wrap svg { color: var(--bordeaux); }
.pathway-card:nth-child(2) .pathway-icon-wrap { background: rgba(44, 44, 44, 0.07); }
.pathway-card:nth-child(2) .pathway-icon-wrap svg { color: var(--anthra); }
.pathway-card:nth-child(3) .pathway-icon-wrap { background: rgba(196, 149, 58, 0.1); }
.pathway-card:nth-child(3) .pathway-icon-wrap svg { color: var(--gold); }
.pathway-card:nth-child(4) .pathway-icon-wrap { background: rgba(163, 59, 42, 0.08); }
.pathway-card:nth-child(4) .pathway-icon-wrap svg { color: var(--bordeaux-light); }

.pathway-header h3 { color: var(--anthra); }
.pathway-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pathway-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pathway-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bordeaux);
  opacity: 0.5;
}
.pathway-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--bordeaux);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════ CONTENT ═══════════════ */
.contenu-section {
  background: var(--anthra);
  padding: 100px 0;
}
.contenu-section .section-label { color: var(--gold); }
.contenu-section .section-label::before { background: var(--gold); }
.contenu-section .section-title { color: var(--warm-white); }
.contenu-section .section-desc { color: rgba(255,255,255,0.55); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.module-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
  border-color: rgba(196, 149, 58, 0.3);
}
.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.module-card:nth-child(1) .module-icon { background: rgba(196, 149, 58, 0.15); }
.module-card:nth-child(1) .module-icon svg { color: var(--gold); }
.module-card:nth-child(2) .module-icon { background: rgba(107, 37, 47, 0.2); }
.module-card:nth-child(2) .module-icon svg { color: rgba(250, 246, 241, 0.7); }
.module-card:nth-child(3) .module-icon { background: rgba(196, 149, 58, 0.1); }
.module-card:nth-child(3) .module-icon svg { color: var(--gold); }
.module-card:nth-child(4) .module-icon { background: rgba(163, 59, 42, 0.18); }
.module-card:nth-child(4) .module-icon svg { color: rgba(250, 246, 241, 0.6); }
.module-card:nth-child(5) .module-icon { background: rgba(255, 255, 255, 0.07); }
.module-card:nth-child(5) .module-icon svg { color: rgba(250, 246, 241, 0.5); }

.module-card h4 { color: var(--warm-white); margin-bottom: 8px; }
.module-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

/* ═══════════════ FOUNDER ═══════════════ */
.founder-section {
  background: var(--warm-white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-border {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--bordeaux);
  border-radius: var(--radius-xl);
  opacity: 0.15;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.founder-text {}
.founder-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 14px;
}
.founder-name { margin-bottom: 6px; }
.founder-title {
  color: var(--bordeaux);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-style: italic;
}
.founder-bio {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.founder-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.credential {
  background: var(--cream-dark);
  color: var(--anthra);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* ═══════════════ CTA FOOTER ═══════════════ */
.cta-section {
  background: var(--cream-dark);
  padding: 100px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 37, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { }
.cta-title { margin-bottom: 16px; }
.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.cta-form .input-group {
  display: flex;
  gap: 12px;
  max-width: 460px;
  width: 100%;
}
.cta-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-strong);
  background: var(--warm-white);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px var(--bordeaux-glow);
}
.cta-form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 20px;
  margin-top: 8px;
  font-weight: 500;
}
.cta-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 14px;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--anthra);
  margin-top: 80px;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.footer-logo em { font-style: normal; color: var(--bordeaux-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { order: 1; }
  .hero-right { order: 0; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-form { display: flex; flex-direction: column; align-items: center; }
  .hero-proof { justify-content: center; }
  .hero-logo-img { width: 160px; height: 160px; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 100px 0 60px; }
  .hero-form .input-group { flex-direction: column; width: 100%; }
  .hero-form .btn-primary { width: 100%; }
  .cta-form .input-group { flex-direction: column; }
  .cta-form .btn-primary { width: 100%; }
  .pathways-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}