/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #080c18;
  --bg-alt: #0a1028;
  --bg-card: #0e1425;
  --bg-elevated: #151d32;
  --text: #edf0f7;
  --text-muted: #9aa4b8;
  --text-faint: #4e576b;
  --accent: #7ba4e8;
  --accent-light: #a3c1f0;
  --accent-glow: rgba(123, 164, 232, 0.15);
  --sage: #8cc4b0;
  --sage-deep: #1a2e28;
  --rose: #a89bcc;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ===== TYPOGRAPHY ===== */
.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
}

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
}

.headline--xl { font-size: clamp(3rem, 7.5vw, 6rem); }
.headline--lg { font-size: clamp(2.25rem, 5vw, 4rem); }
.headline--md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

.headline em {
  font-style: italic;
  color: var(--accent);
}

.body-lg {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.75;
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  border-radius: 60px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 164, 232, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text-faint);
}

.btn--outline:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}

.btn--full { width: 100%; justify-content: center; }

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(8, 12, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--sage));
  opacity: 0.9;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.35rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(4rem, 10vh, 8rem);
}

.hero--short {
  min-height: auto;
  padding: clamp(9rem, 16vh, 12rem) 0 clamp(4rem, 8vh, 6rem);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(123, 164, 232, 0.12);
  top: -10%;
  right: 10%;
  animation: glowFloat 10s ease-in-out infinite;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(140, 196, 176, 0.08);
  bottom: 0;
  left: -5%;
  animation: glowFloat 12s ease-in-out infinite reverse;
}

.hero-glow--3 {
  width: 300px;
  height: 300px;
  background: rgba(168, 155, 204, 0.06);
  top: 40%;
  left: 40%;
  animation: glowFloat 8s ease-in-out infinite 2s;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-content .tag {
  margin-bottom: 1.75rem;
}

.hero-content .headline {
  margin-bottom: 1.5rem;
}

.hero-sub {
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 1.5rem;
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 1.25rem 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== EDITORIAL SECTION ===== */
.editorial {
  padding: clamp(6rem, 14vw, 10rem) 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.editorial-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 2rem;
}

.editorial-body p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PILLARS / FEATURES ===== */
.pillars {
  padding: clamp(6rem, 14vw, 10rem) 0;
  background: var(--bg-alt);
}

.pillars-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

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

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pillar:hover::before { opacity: 1; }

.pillar-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== RECORDINGS / SESSIONS ===== */
.sessions {
  padding: clamp(6rem, 14vw, 10rem) 0;
}

.sessions-header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}

.session-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  transition: background 0.3s;
}

.session-item:hover {
  background: var(--bg-elevated);
}

.session-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  width: 2rem;
}

.session-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.session-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.session-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: clamp(6rem, 14vw, 10rem) 0;
  background: var(--bg-alt);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 2.25rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.testimonial blockquote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial blockquote strong {
  color: var(--text);
}

.testimonial-author {
  font-size: 0.85rem;
}

.testimonial-author strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.1rem;
}

.testimonial-author span {
  color: var(--text-faint);
  font-size: 0.78rem;
}

/* ===== IMAGE SECTIONS ===== */
.image-break {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg), transparent 20%, transparent 80%, var(--bg));
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: clamp(6rem, 14vw, 10rem) 0;
  text-align: center;
  position: relative;
}

.cta-section .headline {
  margin-bottom: 1.25rem;
}

.cta-section .body-lg {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ===== FORM STYLES ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-elevated);
  transition: border-color 0.3s;
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9590' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== PROGRAM MODULES ===== */
.modules {
  padding: clamp(6rem, 14vw, 10rem) 0;
}

.module-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.module-card:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.module-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  width: 80px;
}

.module-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--text);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.module-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.module-meta {
  display: flex;
  gap: 1.5rem;
}

.module-meta span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== PRICING ===== */
.pricing {
  padding: clamp(6rem, 14vw, 10rem) 0;
  background: var(--bg-alt);
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage), var(--rose));
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
  padding: clamp(6rem, 14vw, 10rem) 0;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-faint);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== ENROLL LAYOUT ===== */
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.enroll-sidebar .tag { margin-bottom: 1rem; }

.enroll-sidebar .headline {
  margin-bottom: 1.5rem;
}

.enroll-perks {
  list-style: none;
  margin-top: 2rem;
}

.enroll-perks li {
  padding: 0.6rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.enroll-perks li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sage);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer .logo-text { font-size: 1.15rem; }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 250px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--text) !important;
  }

  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .editorial-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:last-child { grid-column: span 1; max-width: 100%; }

  .enroll-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

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

  .module-number { width: auto; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-tagline { margin-left: auto; margin-right: auto; }

  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
