:root {
  --primary: #ec5b13;
  --primary-soft: rgba(236, 91, 19, 0.12);
  --primary-strong: #d84b05;
  --bg: #f8f6f6;
  --bg-muted: #f4efe8;
  --surface: #ffffff;
  --surface-strong: #fffdfb;
  --text: #221610;
  --text-soft: #65574c;
  --line: rgba(34, 22, 16, 0.09);
  --line-strong: rgba(34, 22, 16, 0.14);
  --radius: 18px;
  --shadow: 0 18px 45px rgba(34, 22, 16, 0.06);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: "Public Sans", sans-serif;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
p {
  margin: 0;
}
a {
  color: inherit;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  position: relative;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.mobile-menu {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-panel {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu:not(.open) .mobile-menu-panel {
  transform: translateX(100%);
}
.hamburger-line {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.brand-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  color: #c7d2ea;
}
.nav-links a {
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(
      820px 420px at 10% -10%,
      rgba(236, 91, 19, 0.16),
      transparent 60%
    ),
    radial-gradient(
      680px 360px at 100% 8%,
      rgba(255, 181, 65, 0.16),
      transparent 62%
    ),
    linear-gradient(135deg, #fffdfb 0%, #f9f2ea 100%);
  color: var(--text);
  padding: 128px 0 80px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 112px 0 64px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-carousel {
  position: relative;
  width: min(100%, 520px);
  max-width: 100%;
  height: 100%;
}
.carousel-slides {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 100%;
}
.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}
.carousel-slide.active {
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}
.hero-carousel:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}
.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(17, 17, 17, 0.85);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}
.carousel-arrow--prev {
  left: -20px;
}
.carousel-arrow--next {
  right: -20px;
}
@media (max-width: 900px) {
  .hero-carousel .carousel-arrow {
    width: 42px;
    height: 42px;
    opacity: 1;
    pointer-events: auto;
  }
  .carousel-arrow--prev {
    left: 12px;
    right: auto;
  }
  .carousel-arrow--next {
    left: auto;
    right: 12px;
  }
}
.video-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 22, 16, 0.08);
  box-shadow: 0 28px 64px rgba(34, 22, 16, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.video-frame {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  flex: 1;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 22, 16, 0.08),
    rgba(34, 22, 16, 0.32)
  );
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12),
    transparent 42%
  );
}
.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 20px 46px rgba(236, 91, 19, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.video-frame:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 26px 54px rgba(236, 91, 19, 0.36);
}
.video-labels {
  padding: 28px 28px 32px;
}
.video-labels span {
  display: block;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.video-labels strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.38;
  color: var(--text);
}
@media (max-width: 900px) {
  .hero-media {
    padding-top: 24px;
  }
  .hero-carousel {
    width: 100%;
  }
  .video-frame {
    min-height: 280px;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(236, 91, 19, 0.2);
  background: rgba(236, 91, 19, 0.08);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
}
.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(236, 91, 19, 0.3);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.45rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  max-width: 720px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero p.lead {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(236, 91, 19, 0.2);
}
.btn-primary:hover {
  background: var(--primary-strong);
}
.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover {
  background: #34231a;
}
.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats > div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 160px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(34, 22, 16, 0.03);
}
@media (max-width: 600px) {
  .hero-stats > div {
    width: 100%;
    min-width: 0;
  }
}
.hero-stats .n {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.hero-stats .l {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-media {
  display: flex;
  justify-content: center;
}
.hero-media-grid {
  display: grid;
  gap: 18px;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-media-grid {
    grid-template-columns: minmax(140px, 1fr) minmax(340px, 1.15fr) minmax(
        140px,
        1fr
      );
    align-items: center;
  }
}
.side-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 240px;
  background: #fff;
  border: 1px solid rgba(34, 22, 16, 0.08);
  box-shadow: 0 18px 40px rgba(34, 22, 16, 0.08);
}
.side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.side-image:hover img {
  transform: scale(1.06);
}
.video-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 22, 16, 0.08);
  box-shadow: 0 28px 64px rgba(34, 22, 16, 0.12);
}
.video-frame {
  position: relative;
  min-height: 260px;
  background-image: url("./images/robotics-classes.jpg");
  background-size: cover;
  background-position: center;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 22, 16, 0.12),
    rgba(34, 22, 16, 0.36)
  );
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.14),
    transparent 42%
  );
}
.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 18px 42px rgba(236, 91, 19, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.video-frame:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 24px 48px rgba(236, 91, 19, 0.34);
}
.video-labels {
  padding: 26px 26px 30px;
}
.video-labels span {
  display: block;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.video-labels strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text);
}
.hero-carousel .video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero-carousel .video-frame {
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 42vw, 430px);
  overflow: hidden;
  background-color: #1b1714;
  background-size: cover;
  background-position: center;
  flex: 1;
}
.hero-carousel .video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 13, 10, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.hero-carousel .video-frame::before,
.hero-carousel .video-overlay {
  z-index: 1;
  pointer-events: none;
}
.hero-carousel .play-circle {
  z-index: 2;
}
.hero-carousel .video-frame--portrait::after {
  opacity: 1;
}
.hero-carousel .video-frame.is-playing {
  background-image: none !important;
}
.hero-carousel .video-frame.is-playing::before,
.hero-carousel .video-frame.is-playing::after,
.hero-carousel .video-frame.is-playing .video-overlay,
.hero-carousel .video-frame.is-playing .play-circle {
  opacity: 0;
  pointer-events: none;
}
.youtube-embed-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}
.video-frame--landscape .youtube-embed-shell {
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.video-frame--portrait .youtube-embed-shell {
  width: min(58%, 245px);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
}
.youtube-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .hero-carousel .video-frame {
    min-height: 320px;
  }
  .hero-carousel .video-frame--landscape.is-playing {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .video-frame--landscape .youtube-embed-shell {
    height: auto;
    min-height: 0;
  }
  .video-frame--portrait .youtube-embed-shell {
    width: min(62%, 210px);
    border-radius: 20px;
  }
}
@media (max-width: 520px) {
  .hero-carousel .video-frame {
    min-height: 300px;
  }
  .hero-carousel .video-frame--landscape.is-playing {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .video-frame--portrait .youtube-embed-shell {
    width: min(64vw, 200px);
  }
}
@media (max-width: 900px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
  }
  .side-image {
    min-height: 200px;
  }
}

/* ---------- SECTION HEADERS ---------- */
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.sec-head {
  max-width: 690px;
  margin-bottom: 44px;
}
.sec-head h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}
.sec-head p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.light {
  padding: 84px 0;
}
@media (max-width: 768px) {
  .light {
    padding: 72px 0;
  }
}
.tint {
  background: var(--bg-muted);
}
.dark {
  background: linear-gradient(135deg, var(--text) 0%, #34231a 100%);
  color: #fff;
}
.dark .sec-head h2 {
  color: #fff;
}
.dark .sec-head p {
  color: #d7c7b8;
}
.dark .eyebrow {
  color: #ffb57b;
}

/* ---------- WHY GRID (skills) ---------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.skill-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 600;
}
.skill-cell span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- DIFFERENTIATOR CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(34, 22, 16, 0.08);
}
.card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- INFRA REQUIREMENTS ---------- */
.infra-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .infra-wrap {
    grid-template-columns: 1fr;
  }
}
.infra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.infra-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.infra-list li:first-child {
  border-top: 1px solid var(--line);
}
.infra-list .k {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.infra-list .v {
  font-weight: 700;
  font-family: "Public Sans", sans-serif;
  text-align: right;
  color: var(--text);
}
.spec-panel {
  background: linear-gradient(135deg, var(--text) 0%, #34231a 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.spec-panel .line {
  color: #b5aac2;
  margin-bottom: 4px;
}
.spec-panel .val {
  color: #ffb57b;
}
.spec-panel .row {
  margin-bottom: 16px;
}

/* ---------- EQUIPMENT TABS ---------- */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .eq-grid {
    grid-template-columns: 1fr;
  }
}
.eq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.eq-card h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "JetBrains Mono", monospace;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
}
.eq-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eq-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  color: var(--text-soft);
}
.eq-card li:first-child {
  border-top: none;
}

/* ---------- CURRICULUM PATHWAY (signature) ---------- */
.pathway {
  position: relative;
  padding-top: 20px;
}
.path-track {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0 10px,
    transparent 10px 18px
  );
}
@media (max-width: 900px) {
  .path-track {
    display: none;
  }
}
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) {
  .stages {
    grid-template-columns: 1fr;
  }
}
.stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.stage .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(236, 91, 19, 0.16);
  position: absolute;
  top: -27px;
  left: 24px;
}
.stage .grade {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stage h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.stage ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ---------- METHOD LOOP ---------- */
.loop-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.loop-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  margin: 6px;
  background: rgba(255, 255, 255, 0.06);
}
.loop-step .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-family: "JetBrains Mono", monospace;
}
.loop-arrow {
  color: #ffb57b;
  font-size: 1.1rem;
  margin: 0 2px;
}

/* ---------- DELIVERABLES CHECKLIST ---------- */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
@media (max-width: 700px) {
  .deliv-grid {
    grid-template-columns: 1fr;
  }
}
.deliv {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.deliv .chk {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(236, 91, 19, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- IMPACT STRIP ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
.impact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.impact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.impact-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.faq-q .plus {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding-bottom: 22px;
  color: var(--text-soft);
  font-size: 0.94rem;
  max-width: 650px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background:
    radial-gradient(
      700px 380px at 50% 0%,
      rgba(236, 91, 19, 0.16),
      transparent 60%
    ),
    linear-gradient(135deg, var(--text) 0%, #34231a 100%);
  color: #fff;
  text-align: center;
  padding: 120px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 24px;
  }
}
.final-cta-card {
  margin: 0 auto;
  max-width: 860px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  border-radius: 32px;
  padding: 48px 44px;
  backdrop-filter: blur(18px);
}
@media (max-width: 768px) {
  .final-cta-card {
    padding: 32px 24px;
  }
}
.final-cta-card .badge {
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.final-cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.05;
}
.final-cta p {
  color: rgba(231, 216, 193, 0.9);
  margin-top: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.8;
}
.final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
.final-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.final-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
