/* ============================================================
   FUTURE TECHNOLOGIES, Page-Specific Styles
   ============================================================ */

/* -- Level Color Variables ---------------------------------- */
:root {
  --l1:      #3B82F6;
  --l1-pale: #EFF6FF;
  --l2:      #F46832;
  --l2-pale: #FFF0E8;
  --l3:      #8B5CF6;
  --l3-pale: #F5F3FF;
}


/* ============================================================
   Enhanced Page Hero (dot grid + circle deco)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,104,50,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: var(--cobalt-pale);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.page-hero-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--cobalt);
  display: inline-block;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.page-hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--cobalt);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.page-hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}


/* ============================================================
   Level Navigation, refined sticky tab strip
   ============================================================ */
.level-nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rule);
  padding-block: 0.5rem;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.level-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0;
  font-family: inherit;
}
.level-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.level-tab::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s ease, background 0.25s ease;
}
.level-tab:hover { color: var(--ink); }
.level-tab.l1:hover { background: var(--l1-pale); }
.level-tab.l2:hover { background: var(--l2-pale); }
.level-tab.l3:hover { background: var(--l3-pale); }

.level-tab.l1.active { color: var(--l1); background: var(--l1-pale); border-color: rgba(59,130,246,0.18); }
.level-tab.l2.active { color: var(--l2); background: var(--l2-pale); border-color: rgba(244,104,50,0.18); }
.level-tab.l3.active { color: var(--l3); background: var(--l3-pale); border-color: rgba(139,92,246,0.18); }

.level-tab.active::after { width: 28px; }
.level-tab.l1.active::after { background: var(--l1); }
.level-tab.l2.active::after { background: var(--l2); }
.level-tab.l3.active::after { background: var(--l3); }

.level-tab-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.l1 .level-tab-badge { background: var(--l1); }
.l2 .level-tab-badge { background: var(--l2); }
.l3 .level-tab-badge { background: var(--l3); }
.level-tab.active .level-tab-badge {
  transform: scale(1.06);
}
.level-tab.l1.active .level-tab-badge { box-shadow: 0 4px 10px rgba(59,130,246,0.35); }
.level-tab.l2.active .level-tab-badge { box-shadow: 0 4px 10px rgba(244,104,50,0.35); }
.level-tab.l3.active .level-tab-badge { box-shadow: 0 4px 10px rgba(139,92,246,0.35); }


/* ============================================================
   Level Blocks
   ============================================================ */
.levels-section {
  padding-block: 0 5rem;
}
.level-block {
  display: none;
  padding-block: 3rem 1rem;
}
.level-block.active {
  display: block;
  animation: levelFadeIn 0.25s ease;
}
@keyframes levelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.level-header {
  max-width: 760px;
  margin-bottom: 3rem;
}
.level-body {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: start;
}

/* -- Badge & Labels ----------------------------------------- */
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.level-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.l1 .level-num { background: var(--l1); }
.l2 .level-num { background: var(--l2); }
.l3 .level-num { background: var(--l3); }

.level-label-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.l1 .level-label-text { color: var(--l1); }
.l2 .level-label-text { color: var(--l2); }
.l3 .level-label-text { color: var(--l3); }

.level-name {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.level-focus {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* -- Level gallery (auto-rotating slideshow) ---------------- */
.level-gallery {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(12,14,26,0.06), 0 22px 56px rgba(12,14,26,0.14);
  isolation: isolate;
  background: var(--bg);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 6s ease;
  z-index: 1;
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,14,26,0.6) 100%);
  pointer-events: none;
}
.level-gallery::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 42px; height: 4px;
  border-radius: 4px;
  z-index: 4;
}
.l1 .level-gallery::after { background: var(--l1); }
.l2 .level-gallery::after { background: var(--l2); }
.l3 .level-gallery::after { background: var(--l3); }

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 70px;
  bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.gallery-tier {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(12,14,26,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.gallery-tier::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.l1 .gallery-tier::before { background: var(--l1); box-shadow: 0 0 0 2px rgba(59,130,246,0.4); }
.l2 .gallery-tier::before { background: var(--l2); box-shadow: 0 0 0 2px rgba(244,104,50,0.4); }
.l3 .gallery-tier::before { background: var(--l3); box-shadow: 0 0 0 2px rgba(139,92,246,0.4); }

.gallery-dots {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}
.gallery-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* -- Goals heading (replaces outcome box) ------------------- */
.goals-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.goals-overline::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
}
.l1 .goals-overline::before { background: var(--l1); }
.l2 .goals-overline::before { background: var(--l2); }
.l3 .goals-overline::before { background: var(--l3); }
.l1 .goals-overline { color: var(--l1); }
.l2 .goals-overline { color: var(--l2); }
.l3 .goals-overline { color: var(--l3); }

.goals-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* -- Tools -------------------------------------------------- */
.level-tools-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.level-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.level-tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid;
}
.l1 .level-tool-tag { color: var(--l1); border-color: var(--l1); background: var(--l1-pale); }
.l2 .level-tool-tag { color: var(--l2); border-color: var(--l2); background: var(--l2-pale); }
.l3 .level-tool-tag { color: var(--l3); border-color: var(--l3); background: var(--l3-pale); }


/* ============================================================
   Goal Tabs, segmented pill control
   ============================================================ */
.goal-tabs {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 4px;
  border-radius: 999px;
  gap: 2px;
  margin-bottom: 1.75rem;
  max-width: 100%;
}
.goal-tab {
  background: transparent;
  border: none;
  padding: 0.55rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.005em;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.goal-tab:hover { color: var(--ink); }
.goal-tab.active {
  color: #fff;
  box-shadow: 0 1px 2px rgba(12,14,26,0.08), 0 4px 12px rgba(12,14,26,0.08);
}
.l1 .goal-tab.active { background: var(--l1); }
.l2 .goal-tab.active { background: var(--l2); }
.l3 .goal-tab.active { background: var(--l3); }

.goal-panel { display: none; }
.goal-panel.active {
  display: block;
  animation: goalFadeIn 0.22s ease;
}
@keyframes goalFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.goal-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
}
.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 0.1rem;
}
.goal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.l1 .goal-dot { background: var(--l1); }
.l2 .goal-dot { background: var(--l2); }
.l3 .goal-dot { background: var(--l3); }


/* ============================================================
   Competition Badge
   ============================================================ */
.competition-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.competition-badge svg {
  width: 14px;
  height: 14px;
}


/* ============================================================
   Placement Section
   ============================================================ */
.placement-section {
  position: relative;
  background: linear-gradient(180deg, #FFFCF5 0%, #FFF7E6 100%);
  padding-block: 5.5rem;
  overflow: hidden;
}
.placement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(244,104,50,0.10) 0, transparent 38%),
    radial-gradient(circle at 90% 12%, rgba(59,130,246,0.10) 0, transparent 42%),
    radial-gradient(circle at 75% 95%, rgba(139,92,246,0.10) 0, transparent 45%);
  pointer-events: none;
}
.placement-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(12,14,26,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.placement-section .container {
  position: relative;
  z-index: 1;
}
.placement-section .overline {
  color: var(--orange);
}
.placement-section .overline::before {
  background: var(--orange);
}
.placement-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.placement-lead {
  max-width: 640px;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 3rem;
}
.placement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.placement-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 1px 2px rgba(12,14,26,0.04), 0 14px 32px -16px rgba(12,14,26,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.placement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(12,14,26,0.06), 0 22px 44px -18px rgba(12,14,26,0.16);
}
.placement-step {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.placement-step::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 0.35rem;
  transform: translateY(-0.1em);
}

/* per-card accent (rotated through level colors + cobalt) */
.placement-card:nth-child(1)                  { border-color: rgba(244,104,50,0.22); }
.placement-card:nth-child(1):hover            { border-color: var(--orange); }
.placement-card:nth-child(1) .placement-step  { color: var(--orange); }
.placement-card:nth-child(1) .placement-step::after { background: var(--orange); }

.placement-card:nth-child(2)                  { border-color: rgba(59,130,246,0.22); }
.placement-card:nth-child(2):hover            { border-color: var(--l1); }
.placement-card:nth-child(2) .placement-step  { color: var(--l1); }
.placement-card:nth-child(2) .placement-step::after { background: var(--l1); }

.placement-card:nth-child(3)                  { border-color: rgba(139,92,246,0.22); }
.placement-card:nth-child(3):hover            { border-color: var(--l3); }
.placement-card:nth-child(3) .placement-step  { color: var(--l3); }
.placement-card:nth-child(3) .placement-step::after { background: var(--l3); }

.placement-card:nth-child(4)                  { border-color: rgba(28,108,255,0.22); }
.placement-card:nth-child(4):hover            { border-color: var(--cobalt); }
.placement-card:nth-child(4) .placement-step  { color: var(--cobalt); }
.placement-card:nth-child(4) .placement-step::after { background: var(--cobalt); }

.placement-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.placement-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ============================================================
   FTC CTA Banner
   ============================================================ */
.ftc-cta {
  background: var(--cobalt);
  padding-block: 4rem;
  text-align: center;
}
.ftc-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.ftc-cta p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.ftc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   FTC Signup Section (replaces inline styles)
   ============================================================ */
.ftc-signup-section {
  padding-block: 5rem;
  background: var(--bg);
}
.ftc-signup-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 5rem;
  align-items: start;
}

/* -- Left info column --------------------------------------- */
.ftc-signup-info {}
.ftc-signup-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.ftc-signup-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* -- Info list (location, time, price, levels) -------------- */
.ftc-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ftc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ftc-info-icon {
  width: 36px;
  height: 36px;
  background: var(--cobalt-pale);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ftc-info-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.ftc-info-sub {
  font-size: 0.84rem;
  color: var(--muted);
}

/* -- Form card ---------------------------------------------- */
.ftc-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(12,14,26,0.06), 0 12px 36px rgba(12,14,26,0.10);
}
.ftc-form-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ftc-form-note {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* -- Form fields -------------------------------------------- */
.ftc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ftc-form-group {
  margin-bottom: 1.25rem;
}
.ftc-form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.ftc-form-input,
.ftc-form-select,
.ftc-form-textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  outline: none;
  appearance: none;
  transition: border-color 0.15s;
}
.ftc-form-input:focus,
.ftc-form-select:focus,
.ftc-form-textarea:focus {
  border-color: var(--cobalt);
  background: #fff;
}
.ftc-form-textarea {
  resize: vertical;
  min-height: 90px;
}
.ftc-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23687085' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.ftc-form-submit {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--cobalt);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 0.25rem;
}
.ftc-form-submit:hover {
  background: var(--cobalt-dark);
  transform: translateY(-1px);
}

.ftc-form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
}
.ftc-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cobalt);
  cursor: pointer;
}

/* -- Success message ---------------------------------------- */
.ftc-form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.ftc-form-success .success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.ftc-form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.ftc-form-success p {
  font-size: 0.9rem;
  color: var(--muted);
}


/* ============================================================
   Responsive, Future Technologies
   ============================================================ */
@media (max-width: 1024px) {
  .level-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .placement-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftc-signup-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .level-nav {
    padding-block: 0.4rem;
  }
  .level-nav-inner {
    gap: 0.35rem;
  }
  .level-tab {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.55rem 0.5rem;
    font-size: 0.82rem;
    border-radius: 12px;
  }
  .level-tab::after {
    display: none;
  }
  .level-tab-badge {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
  .level-tab.active .level-tab-badge {
    transform: none;
  }
  .placement-grid {
    grid-template-columns: 1fr;
  }
  .goal-tabs {
    display: flex;
    width: 100%;
  }
  .goal-tab {
    flex: 1;
    padding: 0.55rem 0.5rem;
    font-size: 0.82rem;
  }
  .level-gallery {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
  .ftc-form-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PILOT LAUNCH — Hero CTA buttons + fact pills
   ============================================================ */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-cta-row .btn {
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
}
.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.fact-pill svg {
  width: 14px;
  height: 14px;
  color: var(--cobalt);
  flex-shrink: 0;
}


/* ============================================================
   PILOT SECTION — Wann/Wo + Preis + Schnuppern cards
   ============================================================ */
.pilot-section {
  padding-block: 4.5rem 3.5rem;
  background: var(--bg);
}
.pilot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pilot-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.pilot-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.pilot-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cobalt-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pilot-card-icon svg { width: 18px; height: 18px; color: var(--cobalt); }
.pilot-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.pilot-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}
.pilot-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pilot-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cobalt);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.pilot-link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--cobalt);
  font-weight: 600;
}
.pilot-link:hover { color: var(--cobalt-dark); text-decoration: underline; }

.pilot-card .pilot-cta-btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  gap: 0.55rem;
}
.pilot-cta-btn svg { flex-shrink: 0; }

/* Desktop: align all CTA buttons at the bottom of the cards (same height),
   while keeping a consistent minimum visual gap above the button. */
@media (min-width: 980px) {
  .pilot-card { display: flex; flex-direction: column; }
  .pilot-card > :nth-last-child(2) { margin-bottom: auto; }
  .pilot-card .pilot-cta-btn { margin-top: 2rem; }
}

.pilot-price-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pilot-price-tile {
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  padding: 0.85rem;
  position: relative;
}
.pilot-price-tile.early {
  border-color: var(--cobalt);
  background: var(--cobalt-pale);
}
.pilot-price-tile-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.pilot-price-tile.early .pilot-price-tile-tag { color: var(--cobalt-dark); }
.pilot-price-tile-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pilot-price-tile-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.pilot-price-note {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.pilot-price-note:last-of-type { margin-bottom: 0; }
.pilot-price-note strong { color: var(--ink); font-weight: 600; }

.pilot-substrip {
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--lime);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: var(--ink);
  text-align: center;
  font-weight: 500;
}


/* ============================================================
   THEMEN GRID — what you learn
   ============================================================ */
.themen-section {
  padding-block: 3.5rem 4.5rem;
}
.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.themen-tile {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.themen-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.themen-tile-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cobalt-pale);
}
.themen-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.themen-tile-body {
  padding: 1rem 1.25rem 1.25rem;
}
.themen-tile-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.themen-tile-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}


/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-section {
  padding-block: 4rem;
  background: var(--bg);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
  max-width: 820px;
}
.faq-list details {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--rule);
  padding: 0;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--cobalt);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cobalt);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   INTENT TOGGLE (form) + price-readonly + dynamic blocks
   ============================================================ */
.intent-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: var(--bg);
  border-radius: var(--r);
  padding: 0.35rem;
  margin-bottom: 1.5rem;
}
.intent-toggle button {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 0.5rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.intent-toggle button[aria-pressed="true"] {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244,104,50,0.25);
}
.intent-toggle button:not([aria-pressed="true"]):hover {
  color: var(--ink);
}

.intent-block { display: none; }
.intent-block.active { display: block; }

.schnupper-radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label.schnupper-radio,
.schnupper-radio {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  margin-bottom: 0;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.form-group label.schnupper-radio:hover,
.schnupper-radio:hover { border-color: var(--cobalt-mid); }
.form-group label.schnupper-radio input[type="radio"],
.schnupper-radio input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border: 1.5px solid var(--rule-mid) !important;
  border-radius: 5px !important;
  background-color: #fff !important;
  background-image: none !important;
  cursor: pointer;
  flex: 0 0 20px;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  transition: background-color 0.15s, border-color 0.15s;
}
.form-group label.schnupper-radio input[type="radio"]:hover,
.schnupper-radio input[type="radio"]:hover {
  border-color: var(--cobalt-mid) !important;
}
.form-group label.schnupper-radio input[type="radio"]:checked,
.schnupper-radio input[type="radio"]:checked {
  background-color: var(--cobalt) !important;
  border-color: var(--cobalt) !important;
}
.form-group label.schnupper-radio input[type="radio"]:checked::after,
.schnupper-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 47%;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.schnupper-radio input[type="radio"]:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
.schnupper-radio input[type="radio"]:checked ~ span {
  color: var(--cobalt-dark);
  font-weight: 600;
}
.form-group label.schnupper-radio.is-checked,
.form-group label.schnupper-radio:has(input:checked),
.schnupper-radio.is-checked,
.schnupper-radio:has(input:checked) {
  border-color: var(--cobalt) !important;
  background: var(--cobalt-pale) !important;
}

.price-readonly {
  background: var(--cobalt-pale);
  border-left: 3px solid var(--cobalt);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
}
.price-readonly strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--cobalt-dark);
}
.price-readonly-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.price-readonly-strike {
  display: inline-block;
  margin-left: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  letter-spacing: 0;
}

.form-trust-footer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}


/* ============================================================
   Responsive — pilot/themen/faq
   ============================================================ */
@media (max-width: 980px) {
  .pilot-grid { grid-template-columns: 1fr; }
  .themen-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .themen-grid { grid-template-columns: 1fr; }
  .pilot-price-tiles { grid-template-columns: 1fr; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .intent-toggle button { font-size: 0.82rem; }
}
