@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url(../fonts/WorkSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-2: #f0eef5;
  --surface-3: #1a1f36;
  --text: #2d2d3a;
  --text-muted: #6b6b7b;
  --text-light: #9a9aac;
  --accent: #c4553a;
  --accent-2: #e8a87c;
  --accent-3: #8b4513;
  --border: #e5e2dc;
  --border-light: #f0ede8;
  --success: #4a7c59;
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --fs-display: clamp(3.5rem, 7vw, 6rem);
  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h4: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.9rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26, 31, 54, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 31, 54, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 31, 54, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-3);
}

.skip-link {
  display: none;
}

.skip-link:focus {
  top: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.4rem;
}

.logo-line1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

.logo-line2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a.active {
  color: var(--accent);
}

.ad-notice {
  background: var(--surface-2);
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

.hero {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-index {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface-2) 100%);
}

.hero-program {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.cursor-blink {
  color: var(--accent);
  font-weight: 300;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-support {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.support-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.support-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.support-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent-3);
  border-color: var(--accent-3);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-light);
}

.hero-float-card.float-right {
  left: auto;
  right: -20px;
}

.float-icon {
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-float-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-float-card small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-cursor-deco {
  position: absolute;
  font-size: 12rem;
  font-family: var(--font-display);
  color: var(--accent);
  opacity: 0.05;
  top: 20%;
  right: -2rem;
  z-index: 0;
  animation: blink 1.5s infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.overline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.overline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
}

.overline.light {
  color: var(--accent-2);
}

.overline.light::before {
  background: var(--accent-2);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.stats-section {
  padding: var(--space-xl) 0;
  background: var(--surface-3);
  color: white;
  position: relative;
}

.stats-section .overline {
  color: var(--accent-2);
}

.stats-section .overline::before {
  background: var(--accent-2);
}

.stats-section h2 {
  color: white;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.paths-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

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

.path-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.path-card.path-yes {
  border-color: var(--success);
}

.path-card.path-no {
  border-color: #d9534f;
  background: #fdf5f4;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.path-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.path-no .path-icon {
  background: #fde8e6;
  color: #d9534f;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.path-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.path-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.path-list i {
  color: var(--success);
  font-size: 0.85rem;
}

.path-no .path-list i {
  color: #d9534f;
}

.path-tag {
  display: inline-block;
  background: var(--surface-2);
  color: var(--success);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.path-tag.tag-no {
  background: #fde8e6;
  color: #d9534f;
}

.advantages-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.adv-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.adv-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.adv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
}

.chip i {
  color: var(--accent);
  font-size: 0.95rem;
}

.adv-visual-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.adv-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.adv-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
}

.adv-step strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.adv-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fit-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fit-column {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid;
}

.fit-yes {
  background: #f4f9f5;
  border-color: var(--success);
}

.fit-no {
  background: #fdf5f4;
  border-color: #d9534f;
}

.fit-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.fit-head i {
  font-size: 1.75rem;
}

.fit-yes .fit-head i {
  color: var(--success);
}

.fit-no .fit-head i {
  color: #d9534f;
}

.fit-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.fit-list i {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.fit-yes .fit-list i {
  color: var(--success);
}

.fit-no .fit-list i {
  color: #d9534f;
}

.curriculum-section {
  padding: var(--space-xl) 0;
  background: var(--surface-3);
  color: white;
}

.curriculum-section .overline {
  color: var(--accent-2);
}

.curriculum-section .overline::before {
  background: var(--accent-2);
}

.curriculum-section h2 {
  color: white;
}

.curriculum-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.timeline-marker {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-2);
  min-width: 60px;
  line-height: 1;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.curriculum-cta {
  text-align: center;
}

.expect-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.expect-card-stack {
  position: relative;
  height: 400px;
}

.expect-card {
  position: absolute;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 280px;
  transition: all 0.3s ease;
}

.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.expect-card i {
  font-size: 2rem;
  color: var(--accent);
}

.expect-card span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.ec-1 {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.ec-2 {
  top: 120px;
  left: 60px;
  transform: rotate(2deg);
}

.ec-3 {
  top: 240px;
  left: 20px;
  transform: rotate(-2deg);
}

.expect-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.expect-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.expect-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-chip:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.service-chip i {
  font-size: 1.25rem;
  color: var(--accent);
}

.service-chip span {
  font-weight: 500;
  color: var(--text);
}

.disclaimer-small {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.faq-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 2rem;
}

.info-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.info-content>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-feature i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.info-feature strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.info-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-cta-block {
  background: var(--surface-3);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-inner small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface-2) 100%);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.program-intro,
.projects-intro {
  padding: var(--space-lg) 0;
  background: var(--surface);
}

.intro-banner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 3rem;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.intro-icon {
  font-size: 2.5rem;
  color: var(--accent);
  min-width: 60px;
}

.intro-banner h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.intro-banner p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.modules-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}
.module-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-card-highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, #fef7f4 100%);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.module-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.3;
}

.module-card>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.module-topics li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.module-topics i {
  color: var(--success);
  font-size: 0.85rem;
}

.audience-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.audience-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.audience-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.cta-banner {
  background: linear-gradient(135deg, var(--surface-3) 0%, #2d3458 100%);
  padding: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-lg);
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.path-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.path-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.path-module {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.path-module:hover {
  box-shadow: var(--shadow-md);
}

.path-module-final {
  border-color: var(--accent);
}

.path-module-head {
  display: flex;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-light);
}

.path-module-num {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.path-module-info {
  flex: 1;
}

.module-week {
  display: inline-block;
  background: var(--surface);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.path-module-info h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.module-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.module-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.path-module-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

.path-module-desc p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.path-module-outcomes h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.path-module-outcomes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.path-module-outcomes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.path-module-outcomes i {
  color: var(--accent);
  font-size: 0.85rem;
}

.after-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.after-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.after-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.after-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.after-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.after-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.project-types {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

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

.project-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.project-type {
  display: inline-block;
  background: var(--surface-2);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.project-card>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}

.project-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.project-details li i {
  color: var(--accent);
  font-size: 0.85rem;
}

.project-details li i.fa-lightbulb {
  color: var(--accent-2);
}

.project-meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

.meta-chip i {
  color: var(--accent);
  font-size: 0.85rem;
}

.ai-usage-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ai-content>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.ai-principles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.ai-principle {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ai-principle i {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.ai-principle i.fa-circle-check {
  color: var(--success);
}

.ai-principle i.fa-circle-xmark {
  color: #d9534f;
}

.ai-principle strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.ai-principle p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ai-workflow-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 120px;
}

.ai-workflow-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
  text-align: center;
}

.workflow-step {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.workflow-step:hover {
  transform: translateX(4px);
}

.wf-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.workflow-step strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.workflow-step small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.workflow-connector {
  text-align: center;
  padding: 0.5rem 0;
  color: var(--text-light);
}

.deliverables-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.deliverables-table {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  background: var(--surface-3);
  padding: 1.25rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: var(--surface-2);
}

.cell-type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
}

.cell-type i {
  color: var(--accent);
  font-size: 1.1rem;
}

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

.cell-value {
  color: var(--text-muted);
  line-height: 1.5;
}

.deliverables-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  font-style: italic;
}

.about-story {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.story-content>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.story-values h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.approach-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.approach-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.approach-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.approach-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.company-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.company-data {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.data-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.data-card:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.data-card i {
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 30px;
}

.data-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-card strong {
  font-size: 1rem;
  color: var(--text);
  display: block;
}

.data-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

.data-note i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.data-note p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.team-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

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

.team-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.team-role {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-full-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.faq-full-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-full {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.contact-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-info>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.contact-detail:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-detail i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail strong {
  font-size: 1rem;
  color: var(--text);
  display: block;
}

.contact-assurance h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-assurance ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-assurance li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-assurance i {
  color: var(--success);
}

.contact-form-wrap {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.form-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 85, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

.contact-footer-section {
  padding: var(--space-lg) 0;
  background: var(--surface-2);
}

.contact-footer-banner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  max-width: 900px;
  margin: 0 auto;
}

.cfb-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-footer-banner h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-footer-banner p {
  color: var(--text-muted);
  line-height: 1.7;
}

.thanks-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-card {
  background: var(--surface);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border-light);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--success);
  margin: 0 auto 2rem;
}

.thanks-card h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.thanks-name {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.thanks-email-note {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.thanks-email-note span {
  color: var(--accent);
  font-weight: 600;
}

.thanks-next {
  text-align: left;
  margin-bottom: 3rem;
}

.thanks-next h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
}

.thanks-step .step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.thanks-step strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.thanks-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.thanks-cta {
  margin-bottom: 2rem;
}

.thanks-contact {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.thanks-contact p {
  margin-bottom: 0.5rem;
}

.thanks-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface-2) 100%);
}

.legal-hero-content {
  max-width: 800px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-section {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--bg);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 3rem;
}

.legal-toc h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.legal-toc li a {
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  display: block;
  transition: color 0.2s ease;
}

.legal-toc li a:hover {
  color: var(--accent);
}

.legal-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  margin-bottom: 2.5rem;
}

.legal-callout i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.legal-callout p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1.25rem;
  color: var(--text);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.75rem 0 1rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin: 1rem 0 1.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-card p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-table {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin: 1rem 0 1.5rem;
  overflow: hidden;
}

.legal-table .table-head {
  background: var(--surface-3);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
}

.legal-table .table-row {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-table .table-row:last-child {
  border-bottom: none;
}

.site-footer {
  background: var(--surface-3);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo-line1,
.footer-brand .logo-line2 {
  color: white;
}

.footer-brand .logo-line2 {
  color: var(--accent-2);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--accent-2);
}

.footer-contact {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact strong {
  color: white;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .adv-grid,
  .expect-grid,
  .info-grid,
  .ai-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid,
  .paths-grid,
  .modules-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .path-module-body {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    word-break: break-word;
  }
  .header-inner {
    flex-wrap: wrap;
  }
    .cta-banner, .company-data {
      padding: 2rem;
    }
        .path-module-head, .contact-footer-banner {
          flex-direction: column;
        }

  .hamburger {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .stats-grid,
  .paths-grid,
  .modules-grid,
  .projects-grid,
  .team-grid,
  .audience-grid,
  .approach-grid,
  .fit-grid,
  .after-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .hero-support {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

  .expect-card-stack {
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .expect-card {
    position: relative;
    transform: none;
    width: 100%;
    top: auto;
    left: auto;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .thanks-card {
    padding: 2.5rem 1.5rem;
  }

  .intro-banner {
    flex-direction: column;
    padding: 2rem;
  }

  .legal-toc ul {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.35rem;
  }

  .header-inner {
    padding: 1rem !important;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
.footer-legal-nav {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-nav h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  padding-left: 1.25rem;
}

.footer-legal-nav h4::before {
  content: '§';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-weight: 700;
}

.legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.legal-links li {
  position: relative;
}

.legal-links li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--accent-2);
  border-radius: 50%;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  display: inline-block;
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover,
.legal-links a.active {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

.footer-disclaimer a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-disclaimer a:hover {
  color: white;
}

.callout-warning {
  background: #fef7f4;
  border-left-color: var(--accent);
}

.callout-warning i {
  color: var(--accent);
}

.callout-warning strong {
  color: var(--text);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-legal-nav {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .legal-links {
    flex-direction: column;
    gap: 0.25rem;
  }

  .legal-links li::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .modules-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .modules-section .container {
    max-width: 1440px;
  }

  .module-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .module-topics {
    margin-top: auto;
  }
}