/* ============================================
   YESIMI DIXULU — CANDY GRADIENT DESIGN SYSTEM
   ============================================ */


:root {
  --pink: #f472b6;
  --pink-light: #fce7f3;
  --purple: #a855f7;
  --purple-light: #f3e8ff;
  --blue: #60a5fa;
  --blue-light: #dbeafe;
  --teal: #2dd4bf;
  --teal-light: #ccfbf1;

  --grad-primary: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #60a5fa 100%);
  --grad-secondary: linear-gradient(135deg, #a855f7 0%, #60a5fa 50%, #2dd4bf 100%);
  --grad-warm: linear-gradient(135deg, #f9a8d4 0%, #c084fc 50%, #93c5fd 100%);
  --grad-hero: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #eff6ff 100%);

  --text-dark: #1e1033;
  --text-body: #3d3055;
  --text-muted: #7c6d94;
  --text-light: #b8aece;

  --surface: #fefcff;
  --surface-alt: #f8f4ff;
  --surface-card: #ffffff;
  --border-light: rgba(168, 85, 247, 0.12);
  --border-medium: rgba(168, 85, 247, 0.22);

  --shadow-sm: 0 2px 8px rgba(168, 85, 247, 0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(168, 85, 247, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(168, 85, 247, 0.16), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 60px rgba(168, 85, 247, 0.2), 0 8px 24px rgba(0,0,0,0.1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-narrow: 900px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body.canvas {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background: var(--surface);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul { list-style: none; }


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; line-height: 1.3; color: var(--text-dark); }
p { font-size: 1rem; line-height: 1.7; color: var(--text-body); }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-wide {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
}
.section-contained {
  max-width: var(--container-max);
  padding: var(--space-2xl) var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(254, 252, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--purple);
  background: var(--purple-light);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--purple-light); }
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


.mini-nav {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mini-nav.visible {
  opacity: 1;
  pointer-events: all;
}
.mini-nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mini-nav-pill:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   MOBILE FULLSCREEN DRAWER
   ============================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer.open {
  opacity: 1;
  pointer-events: all;
}
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.drawer-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.drawer-link {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.drawer-link:hover {
  opacity: 1;
  transform: translateX(6px);
}
.stage-curtain {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.stage {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  padding-top: var(--nav-height);
}
.stage-image {
  position: relative;
  overflow: hidden;
}
.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.stage-image:hover img {
  transform: scale(1.04);
}
.stage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) var(--space-lg);
  background: var(--grad-hero);
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stage-heading {
  margin-bottom: var(--space-md);
}
.stage-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  max-width: 460px;
  line-height: 1.75;
}
.stage-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-medium);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--purple-light);
  border-color: var(--purple);
  transform: translateY(-2px);
  color: var(--purple);
}
.btn-ghost.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-medium);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--surface-alt);
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.label-tag {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

/* ============================================
   GALLERY / GRID SECTIONS
   ============================================ */
.gallery {
  display: grid;
  gap: var(--space-md);
  container-type: inline-size;
  container-name: gallery-container;
}
.gallery-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-2 { grid-template-columns: repeat(2, 1fr); }

@container gallery-container (max-width: 900px) {
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
}
@container gallery-container (max-width: 600px) {
  .gallery-4, .gallery-3, .gallery-2 { grid-template-columns: 1fr; }
}

/* ============================================
   SHELF CARDS (Problem section)
   ============================================ */
.shelf-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-sm);
  container-type: inline-size;
}
.shelf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}
.shelf-card.spotlight {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface-card), var(--surface-card)) padding-box,
              var(--grad-primary) border-box;
}
.shelf-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}
.gradient-icon {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}
.shelf-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.05rem;
}
.shelf-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  background: var(--surface-alt);
}

/* ============================================
   COURSE INTRO SECTION
   ============================================ */
.course-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  container-type: inline-size;
  container-name: course-grid;
}
@container course-grid (max-width: 700px) {
  .course-intro-grid { grid-template-columns: 1fr; }
}
.course-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.course-intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-intro-image:hover img { transform: scale(1.03); }
.glass-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.glass-badge i {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
}
.course-intro-content h2 {
  margin-bottom: var(--space-sm);
}
.course-intro-content p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}
.course-features {
  margin: var(--space-md) 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.course-features li i {
  color: var(--purple);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  container-type: inline-size;
  container-name: steps-container;
}
.step-item {
  flex: 1;
  padding: var(--space-lg);
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--grad-primary);
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.5;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.step-content h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@container steps-container (max-width: 800px) {
  .steps-row { flex-direction: column; }
  .step-connector { width: 2px; height: 30px; margin: 0 0 0 60px; }
}

/* ============================================
   GLASS PANEL SECTION
   ============================================ */
.glass-section {
  padding: var(--space-xl) var(--space-md);
}
.glass-panel {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 3px;
  box-shadow: var(--shadow-xl);
}
.glass-panel-inner {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  container-type: inline-size;
  container-name: glass-inner;
}
@container glass-inner (max-width: 650px) {
  .glass-panel-inner { grid-template-columns: 1fr; }
  .glass-panel-image { order: -1; }
}
.glass-panel-text h2 { margin-bottom: var(--space-sm); }
.glass-panel-text p { color: var(--text-muted); margin-bottom: var(--space-lg); line-height: 1.75; }
.glass-panel-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.glass-panel-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s;
}
.glass-panel-image:hover img { transform: scale(1.04); }
.glass-panel-centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--surface-alt);
}
.feature-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  container-type: inline-size;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(244, 114, 182, 0.3);
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}
.cta-inner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.cta-inner h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.cta-inner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-inner .btn-primary {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-inner .btn-primary:hover { color: var(--purple); }
.cta-inner .btn-ghost {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-inner .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  background: var(--grad-hero);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-content h1 {
  margin: var(--space-sm) 0;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   TWO COLUMN GRID
   ============================================ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  container-type: inline-size;
  container-name: two-col;
}
@container two-col (max-width: 700px) {
  .two-col-grid { grid-template-columns: 1fr; }
}
.two-col-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.two-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}
.two-col-image:hover img { transform: scale(1.03); }
.two-col-content h2 { margin-bottom: var(--space-md); }
.two-col-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  background: var(--surface-alt);
}
.value-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   WHO SECTION
   ============================================ */
.who-section {
  background: var(--surface);
}
.who-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  container-type: inline-size;
}
.who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.who-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.who-card:hover img { transform: scale(1.04); }
.who-card-content {
  padding: var(--space-md) var(--space-lg);
}
.who-card-content h3 { margin-bottom: 8px; font-size: 1.05rem; }
.who-card-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   APPROACH DETAIL
   ============================================ */
.approach-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  text-align: left;
}
.approach-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.approach-point i {
  color: var(--purple);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.approach-point div {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.approach-point strong { color: var(--text-dark); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: var(--surface-alt);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
  container-type: inline-size;
  container-name: pricing-grid;
}
@container pricing-grid (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.pricing-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface-card), var(--surface-card)) padding-box,
              var(--grad-primary) border-box;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.pricing-header { margin-bottom: var(--space-lg); }
.pricing-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-xl);
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.pricing-features li i {
  color: var(--purple);
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.pricing-note a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   CURRICULUM
   ============================================ */
.curriculum-section {
  background: var(--surface);
}
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
  border-radius: var(--radius-md);
  padding-left: var(--space-sm);
}
.curriculum-item:last-child { border-bottom: none; }
.curriculum-item:hover { background: var(--surface-alt); }
.curriculum-num {
  font-size: 1.8rem;
  font-weight: 800;
  min-width: 60px;
  line-height: 1;
  padding-top: 4px;
}
.curriculum-content { flex: 1; }
.curriculum-content h3 { margin-bottom: 6px; font-size: 1.05rem; }
.curriculum-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.curriculum-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.curriculum-tags span {
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--surface-alt);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  container-type: inline-size;
  container-name: faq-grid;
}
@container faq-grid (max-width: 650px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-item {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   SITUATIONS PAGE
   ============================================ */
.situations-section {
  background: var(--surface);
}
.situation-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-light);
  container-type: inline-size;
  container-name: situation;
}
.situation-block:last-child { border-bottom: none; }
@container situation (max-width: 600px) {
  .situation-block { grid-template-columns: 1fr; }
  .situation-icon { justify-self: start; }
}
.situation-block-alt {
  background: var(--surface-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: none;
}
.situation-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.situation-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.situation-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: var(--space-sm);
}
.situation-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}
.situation-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}
.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.tool-tag i { font-size: 0.8rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  container-type: inline-size;
  container-name: contact-grid;
}
@container contact-grid (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form-wrap h2 {
  margin-bottom: var(--space-lg);
}
.contact-form {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.form-step { display: flex; flex-direction: column; gap: var(--space-md); }
.form-step.hidden { display: none; }
.step-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-sm);
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
  transition: background 0.3s;
  flex-shrink: 0;
}
.step-dot.active {
  background: var(--grad-primary);
  box-shadow: 0 0 0 4px rgba(168,85,247,0.2);
}
.step-dot.done {
  background: var(--purple);
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  transition: background 0.3s;
}
.step-line.done {
  background: var(--grad-primary);
}
.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0 !important;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--purple);
  cursor: pointer;
}
.form-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-info-item p a {
  color: var(--purple);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-item p a:hover { color: var(--pink); }


.office-section {
  background: var(--surface-alt);
}
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  container-type: inline-size;
  container-name: office-grid;
}
@container office-grid (max-width: 650px) {
  .office-grid { grid-template-columns: 1fr; }
}
.office-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.office-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s;
}
.office-image:hover img { transform: scale(1.03); }
.office-content h2 { margin-bottom: var(--space-md); }
.office-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}
.office-features {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.office-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
}
.office-features span i {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.map-section { padding: 0; }
.map-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.map-wrap iframe { display: block; }

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-3xl);
  background: var(--grad-hero);
}
.thanks-inner {
  text-align: center;
  max-width: 560px;
}

.envelope-wrap {
  margin: 0 auto var(--space-xl);
  width: 120px;
  height: 100px;
  position: relative;
}
.envelope {
  width: 120px;
  height: 80px;
  position: relative;
  animation: envelopeBounce 0.6s ease 0.3s both;
}
.envelope-body {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  border-radius: var(--radius-md);
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.envelope-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  clip-path: polygon(0 0, 50% 60%, 100% 0);
  transform-origin: top center;
  animation: flapOpen 0.6s ease 0.8s both;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.envelope-letter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 70px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  animation: letterRise 0.6s ease 1.2s both;
  z-index: 2;
}
.letter-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  width: 100%;
}
.letter-lines span {
  display: block;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.letter-lines span:nth-child(1) { width: 100%; }
.letter-lines span:nth-child(2) { width: 80%; }
.letter-lines span:nth-child(3) { width: 60%; }
@keyframes envelopeBounce {
  0% { transform: scale(0.5) translateY(30px); opacity: 0; }
  60% { transform: scale(1.1) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}
@keyframes letterRise {
  0% { transform: translateX(-50%) translateY(0); opacity: 0; }
  100% { transform: translateX(-50%) translateY(-40px); opacity: 1; }
}
.thanks-content {
  animation: fadeInUp 0.6s ease 1.8s both;
}
@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.thanks-content h1 { margin-bottom: var(--space-sm); }
.thanks-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
  font-size: 1.05rem;
}
.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-3xl);
  align-items: start;
  container-type: inline-size;
  container-name: legal-page;
}
@container legal-page (max-width: 700px) {
  .legal-page { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
}
.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  padding-right: var(--space-xl);
}
.legal-sidebar-inner {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.legal-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.legal-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-sidebar-nav a {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.legal-sidebar-nav a:hover {
  background: var(--purple-light);
  color: var(--purple);
}
.legal-content {
  padding-left: var(--space-lg);
  border-left: 1px solid var(--border-light);
}
.legal-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}
.legal-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--space-xs);
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.legal-content section {
  margin-bottom: var(--space-2xl);
  scroll-margin-top: calc(var(--nav-height) + 20px);
}
.legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
  color: var(--text-dark);
}
.legal-content p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-info-block {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  margin: var(--space-sm) 0;
}
.legal-info-block p {
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.legal-info-block p:last-child { margin-bottom: 0; }
.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.cookie-table th {
  background: var(--surface-alt);
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}
.cookie-table td {
  padding: 10px 16px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: var(--surface-alt); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text-dark);
  margin-top: auto;
}
.footer-main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: start;
  container-type: inline-size;
  container-name: footer-main;
}
@container footer-main (max-width: 700px) {
  .footer-main { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.footer-logo-col img { opacity: 0.9; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  line-height: 1.5;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: #fff; }
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-col p i {
  color: var(--pink);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-col a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact-col a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   TIPPY CUSTOM THEME
   ============================================ */
.tippy-box[data-theme~='custom'] {
  background: var(--text-dark);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  padding: 2px 4px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--text-dark); }

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }
  .stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .stage-image {
    height: 50vw;
    min-height: 240px;
    max-height: 380px;
  }
  .stage-content {
    padding: var(--space-xl) var(--space-md);
  }
  .steps-row {
    flex-direction: column;
  }
  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0 0 0 28px;
  }
  .glass-panel-inner {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
  }
  .glass-panel-image { order: -1; }
  .gallery-3 { grid-template-columns: 1fr; }
  .gallery-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .situation-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links-col { align-items: flex-start; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .two-col-grid { grid-template-columns: 1fr; }
  .course-intro-grid { grid-template-columns: 1fr; }
  .curriculum-item { grid-template-columns: 1fr; flex-direction: column; }
  .curriculum-num { min-width: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .legal-page { grid-template-columns: 1fr; padding-top: calc(var(--nav-height) + var(--space-lg)); }
  .legal-sidebar { display: none; }
  .legal-content { padding-left: 0; border-left: none; }
}

@media (max-width: 480px) {
  .stage-actions { flex-direction: column; }
  .stage-actions .btn-primary,
  .stage-actions .btn-ghost { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost { justify-content: center; }
  .thanks-actions { flex-direction: column; align-items: stretch; }
  .thanks-actions .btn-primary,
  .thanks-actions .btn-ghost { justify-content: center; }
  .form-actions { flex-direction: column; }
  .form-actions .btn-ghost,
  .form-actions .btn-primary { justify-content: center; }
}