:root {
  --cream: #fff5e1;
  --cream-soft: #f5f0eb;
  --brown: #5d4037;
  --brown-dark: #3e2723;
  --violet: #341e60;
  --teal: #00b09f;
  --teal-soft: rgba(0, 176, 159, 0.12);
  --orange: #f58f00;
  --muted: #6d5c54;
  --white: #ffffff;
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(52, 30, 96, 0.1);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--brown-dark);
  background: var(--cream-soft);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(120deg, var(--violet), var(--teal), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93, 64, 55, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  height: 44px;
  width: auto;
  margin: 0;
}

.nav {
  display: none;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--brown), var(--violet));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 30, 96, 0.2);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brown-dark);
  padding: 10px 0;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0, 176, 159, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(52, 30, 96, 0.1), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.hero-below {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 64, 55, 0.1);
  max-width: 540px;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5a4a42;
  margin: 0 0 20px;
}

.hero-lead strong {
  color: var(--brown-dark);
  font-weight: 700;
}

.hero-skills-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(93, 64, 55, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(52, 30, 96, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-badges li i {
  font-size: 0.95rem;
  color: var(--teal);
  flex-shrink: 0;
}

.hero-badges li:hover {
  border-color: rgba(0, 176, 159, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 176, 159, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions .btn-primary {
  gap: 10px;
  padding-right: 18px;
}

.btn-fee {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.hero-actions .btn-secondary {
  gap: 8px;
}

.hero-actions .btn-secondary i {
  font-size: 1rem;
  transition: transform 0.2s;
}

.hero-actions .btn-secondary:hover i {
  transform: translateX(3px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-note > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown), var(--violet));
  color: #fff;
  box-shadow: 0 10px 28px rgba(52, 30, 96, 0.2);
}

.btn-secondary {
  background: #fff;
  color: var(--brown);
  border: 2px solid rgba(93, 64, 55, 0.15);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--violet);
}

.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-steps li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(93, 64, 55, 0.08);
  font-size: 14px;
}

.journey-steps li:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-steps li.is-active .step-num {
  background: var(--teal);
  color: #fff;
}

.step-body strong {
  display: block;
  color: var(--brown-dark);
}

.step-body span {
  font-size: 12px;
  color: var(--muted);
}

/* Sections */
section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Curriculum */
.curriculum {
  background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
  position: relative;
  overflow: hidden;
}

.curriculum::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 176, 159, 0.06), transparent 70%);
  pointer-events: none;
}

.curriculum .container {
  position: relative;
  z-index: 1;
}

.section-head--curriculum .section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.curriculum-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 960px) {
  .curriculum-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
  }
}

.curriculum-card {
  --card-accent: var(--teal);
  --card-accent-soft: var(--teal-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(93, 64, 55, 0.08);
  box-shadow: 0 4px 20px rgba(52, 30, 96, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.curriculum-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-accent), transparent);
  opacity: 0.85;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 176, 159, 0.2);
  box-shadow: 0 16px 40px rgba(52, 30, 96, 0.1);
}

.curriculum-card--manual {
  --card-accent: #00897b;
  --card-accent-soft: rgba(0, 137, 123, 0.12);
}

.curriculum-card--auto {
  --card-accent: #f58f00;
  --card-accent-soft: rgba(245, 143, 0, 0.12);
}

.curriculum-card--api {
  --card-accent: #5c6bc0;
  --card-accent-soft: rgba(92, 107, 192, 0.12);
}

.curriculum-card--ai {
  --card-accent: #7b1fa2;
  --card-accent-soft: rgba(123, 31, 162, 0.12);
}

.curriculum-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.curriculum-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  flex-shrink: 0;
}

.curriculum-card__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.curriculum-card__step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(93, 64, 55, 0.35);
}

.curriculum-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brown-dark);
  letter-spacing: -0.01em;
}

.curriculum-card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}

.curriculum-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-card__topics li {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.curriculum-card:hover .curriculum-card__topics li {
  border-color: rgba(0, 0, 0, 0.04);
}

/* Program roadmap — left to right */
.program-roadmap {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 50%, var(--cream-soft) 100%);
  overflow: hidden;
}

.section-head--program .section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(52, 30, 96, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

.program-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 0;
  padding: 8px 0 0;
  margin: 0 -8px;
}

.program-track__rail {
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 4px;
  z-index: 0;
  pointer-events: none;
}

.program-track__line {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #00897b 0%,
    var(--teal) 25%,
    #f58f00 50%,
    #5c6bc0 75%,
    #7b1fa2 100%
  );
  opacity: 0.35;
}

.program-step {
  --step-color: var(--teal);
  --step-soft: var(--teal-soft);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.program-step--1 {
  --step-color: #00897b;
  --step-soft: rgba(0, 137, 123, 0.14);
}

.program-step--2 {
  --step-color: #f58f00;
  --step-soft: rgba(245, 143, 0, 0.14);
}

.program-step--3 {
  --step-color: #5c6bc0;
  --step-soft: rgba(92, 107, 192, 0.14);
}

.program-step--4 {
  --step-color: #7b1fa2;
  --step-soft: rgba(123, 31, 162, 0.14);
}

.program-step__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.program-step__bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--step-color);
  box-shadow:
    0 0 0 6px var(--step-soft),
    0 12px 28px rgba(52, 30, 96, 0.12);
  color: var(--step-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-step__bubble i {
  font-size: 1.65rem;
  line-height: 1;
}

.program-step:hover .program-step__bubble {
  transform: scale(1.06);
  box-shadow:
    0 0 0 8px var(--step-soft),
    0 16px 36px rgba(52, 30, 96, 0.16);
}

.program-step__arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(93, 64, 55, 0.35);
  font-size: 1.25rem;
  line-height: 1;
}

.program-step--4 .program-step__arrow {
  display: none;
}

.program-step__card {
  width: 100%;
  padding: 20px 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(93, 64, 55, 0.1);
  box-shadow: 0 8px 24px rgba(52, 30, 96, 0.06);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.program-step:hover .program-step__card {
  transform: translateY(-4px);
  border-color: var(--step-color);
  box-shadow: 0 14px 32px rgba(52, 30, 96, 0.1);
}

.program-step__phase {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--step-color);
  margin-bottom: 6px;
}

.program-step__card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
}

.program-step__subtitle {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.program-step__desc {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-align: left;
}

.program-step__tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-step__tools li {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--step-soft);
  color: var(--step-color);
}

.program-track__hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.program-track__hint i {
  color: var(--teal);
  font-size: 1rem;
}

@media (max-width: 959px) {
  .program-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 8px 16px 24px;
    margin: 0 -4%;
    -webkit-overflow-scrolling: touch;
  }

  .program-track__rail {
    display: none;
  }

  .program-step {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: center;
    padding: 0 4px;
  }

  .program-step__arrow {
    display: none;
  }

  .program-track__hint {
    display: flex;
  }
}

@media (min-width: 960px) and (max-width: 1100px) {
  .program-track {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  .program-step__bubble {
    width: 64px;
    height: 64px;
  }

  .program-step__bubble i {
    font-size: 1.4rem;
  }

  .program-step__desc {
    font-size: 11px;
  }
}

/* Tools stack */
.tools-stack {
  position: relative;
  color: #fff;
  padding: 72px 0 56px;
  background: linear-gradient(145deg, #2a1548 0%, var(--violet) 45%, #1a0f30 100%);
  overflow: hidden;
}

.tools-stack__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(0, 176, 159, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 70%, rgba(245, 143, 0, 0.15), transparent 50%);
}

.tools-stack .container {
  position: relative;
  z-index: 1;
}

.section-head--tools h2,
.section-head--tools p {
  color: #fff;
}

.section-head--tools p {
  opacity: 0.88;
}

.section-eyebrow--light {
  color: #b2dfdb;
  background: rgba(255, 255, 255, 0.12);
}

.tools-board {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .tools-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.tools-board__col {
  --col-accent: var(--teal);
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tools-board__col:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.tools-board__col--manual { --col-accent: #80cbc4; }
.tools-board__col--auto { --col-accent: #ffb74d; }
.tools-board__col--devops { --col-accent: #9fa8da; }
.tools-board__col--code { --col-accent: #ce93d8; }

.tools-board__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tools-board__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--col-accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tools-board__icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.tools-board__head h3 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tools-board__head p {
  margin: 0;
  font-size: 11px;
  opacity: 0.75;
}

.tools-board__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tools-board__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, transform 0.2s;
}

.tools-board__list li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  font-size: 1rem;
  color: var(--col-accent);
  flex-shrink: 0;
  line-height: 1;
}

.tools-board__list li:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.tools-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 4px 0;
}

.tools-marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: tools-marquee 28s linear infinite;
}

.tools-marquee__track span {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

@keyframes tools-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tools-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* Outcomes */
.outcomes-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.outcome-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 4px;
}

.outcome-card span {
  font-size: 14px;
  color: var(--muted);
}

/* Pricing CTA */
.pricing-cta {
  background: #fff;
}

.pricing-box {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-box {
    grid-template-columns: 1fr 1fr;
  }
}

.price-card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 2px solid rgba(93, 64, 55, 0.1);
  background: var(--cream-soft);
}

.price-card--featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, #fff, var(--teal-soft));
  position: relative;
}

.price-card--featured::before {
  content: "Start here";
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--teal);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin: 0 0 16px;
}

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0 6px 22px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at 100% 0%, rgba(0, 176, 159, 0.08), transparent 65%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.section-head--contact {
  margin-bottom: 40px;
}

.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
  }
}

.contact-form-card {
  background: #fff;
  padding: 28px 28px 32px;
  border-radius: 22px;
  border: 1px solid rgba(93, 64, 55, 0.08);
  box-shadow: 0 20px 50px rgba(52, 30, 96, 0.08);
}

.contact-form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(93, 64, 55, 0.08);
}

.contact-form-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
}

.contact-form-card__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.contact-form-card__head h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brown-dark);
}

.contact-form-card__head p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 18px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-item label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--cream-soft);
  border: 1.5px solid rgba(93, 64, 55, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input-wrap:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.form-input-wrap > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 13px 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--brown-dark);
  outline: none;
}

.form-input-wrap select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235d4037' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-input-wrap--select {
  padding-right: 12px;
}

.form-input-wrap--textarea {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.form-input-wrap--textarea i {
  margin-top: 4px;
}

.form-input-wrap textarea {
  min-height: 96px;
  resize: vertical;
  padding: 4px 0;
}

.form-item--full {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
  gap: 10px;
  margin-top: 4px;
  padding: 16px 24px;
  font-size: 15px;
}

.btn-submit i {
  font-size: 1rem;
  line-height: 1;
}

.error-text {
  display: none;
  color: #c62828;
  font-size: 12px;
  margin-top: 6px;
}

.form-input-wrap:has(+ .error-text[style*="block"]) {
  border-color: #c62828;
}

.form-item input.input-error,
.form-item select.input-error,
.form-item textarea.input-error {
  /* legacy hook — border on wrap via JS could be added later */
}

.form-item:has(.input-error) .form-input-wrap {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(93, 64, 55, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.contact-channel--static {
  cursor: default;
}

a.contact-channel:hover {
  transform: translateX(4px);
  border-color: rgba(0, 176, 159, 0.35);
  box-shadow: 0 8px 20px rgba(52, 30, 96, 0.08);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
}

.contact-channel__icon i {
  font-size: 1.2rem;
  line-height: 1;
}

.contact-channel__icon--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.contact-channel__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-channel__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-channel__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
}

.contact-channel__go {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}

a.contact-channel:hover .contact-channel__go {
  color: var(--teal);
  transform: translate(2px, -2px);
}

.contact-aside__cta {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(0, 176, 159, 0.4);
  text-align: center;
}

.contact-aside__cta-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.btn-exam-cta {
  width: 100%;
  gap: 10px;
  font-size: 14px;
  padding: 14px 18px;
}

.btn-exam-cta i {
  font-size: 1.1rem;
  line-height: 1;
}

.contact-aside__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.contact-aside__note i {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #2c1810 0%, var(--brown-dark) 40%, #1a100c 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 0 28px;
  overflow: hidden;
}

.site-footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #f58f00, var(--violet));
}

.site-footer__grid {
  display: grid;
  gap: 36px;
  padding: 48px 0 36px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.site-footer__brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo__word {
  display: inline-block;
  padding: 8px 14px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  background: transparent;
}

.footer-logo__academy {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding-left: 4px;
}

.footer-logo:hover .footer-logo__word {
  border-color: var(--teal);
  color: #fff;
}

.site-footer__desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(0, 176, 159, 0.5);
  background: rgba(0, 176, 159, 0.12);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.site-footer__cta i {
  font-size: 1rem;
  line-height: 1;
  color: var(--teal);
}

.site-footer__cta:hover {
  background: rgba(0, 176, 159, 0.22);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.site-footer__col h4 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}

.site-footer__col a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s ease;
}

.site-footer__col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer__col a:hover::before {
  width: 12px;
}

.site-footer__col a i {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--teal);
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Popups from legacy script */
.dt-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.dt-popup-overlay.is-open {
  display: flex;
}

.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
}

.loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(93, 64, 55, 0.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
