/* ===== CSS VARIABLES ===== */
:root {
  --blue: #2F2FE4;
  --navy: #162E93;
  --deep: #1A1953;
  --bg: #080616;
  --yellow: #FFD400;
  --white: #FFFFFF;
  --text: #E8E8FF;
  --muted: #8888BB;
  --card: #0F0E2A;
  --border: rgba(47, 47, 228, 0.18);
  --border2: rgba(255, 255, 255, 0.07);
  --success: #1DB87A;
  --error: #FF4D6D;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  z-index: 100;
}

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

/* ===== UTILITIES ===== */
.btn-yellow {
  background: var(--yellow);
  color: var(--bg);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  box-shadow: 0 0 24px rgba(255, 212, 0, 0.3);
  transition: all 0.25s ease;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

.btn-yellow:hover {
  box-shadow: 0 0 44px rgba(255, 212, 0, 0.55);
  transform: translateY(-2px);
}

.btn-yellow:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(47, 47, 228, 0.45);
  color: #9999FF;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
  text-align: center;
}

.btn-ghost:hover {
  border-color: rgba(47, 47, 228, 0.8);
  color: var(--white);
}

.btn-ghost:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ===== CALENDLY DIRECT BOOKING BUTTONS ===== */

/* Hero section */
.hero-book-direct {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.hero-book-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-book-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* Offer section */
.offer-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.offer-or-divider::before,
.offer-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.offer-or-divider span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-book-direct {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid rgba(47, 47, 228, 0.35);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-book-direct:hover {
  border-color: rgba(47, 47, 228, 0.7);
  color: #ffffff;
  background: rgba(47, 47, 228, 0.08);
}

.offer-book-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Final CTA section */
.cta-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px auto;
  max-width: 300px;
}

.cta-or-divider::before,
.cta-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.cta-or-divider span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-cta-book {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid rgba(47, 47, 228, 0.35);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-cta-book:hover {
  border-color: rgba(47, 47, 228, 0.7);
  color: #ffffff;
  background: rgba(47, 47, 228, 0.08);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.07);
  border: 1px solid rgba(255, 212, 0, 0.25);
  padding: 6px 16px;
  border-radius: 99px;
}

.pill-blue {
  color: var(--blue);
  background: rgba(47, 47, 228, 0.07);
  border-color: rgba(47, 47, 228, 0.25);
}

.pill-yellow {
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.07);
  border-color: rgba(255, 212, 0, 0.25);
}

.pill-dot {
  font-size: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-top: 14px;
  line-height: 1.2;
}

.section-header .subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.section-how {
  background: #080616;
  padding: 100px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  position: relative;
  z-index: 2;
}

.section-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2F2FE4;
  background: rgba(47,47,228,0.1);
  border: 1px solid rgba(47,47,228,0.25);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: #8888BB;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Step card */
.step-card {
  background: #0F0E2A;
  border: 1px solid rgba(47,47,228,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(47,47,228,0.45);
  transform: translateY(-4px);
}

.step-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.step-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.step-card:hover .step-image-wrap img {
  transform: scale(1.04);
}

.step-content {
  padding: 24px 26px 28px;
}

.step-week {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2F2FE4;
  background: rgba(47,47,228,0.12);
  border: 1px solid rgba(47,47,228,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.step-card .step-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.step-desc {
  font-size: 14px;
  color: #8888BB;
  line-height: 1.65;
}

/* ── RESULTS ────────────────────────────────────────────────── */
.results {
  background: #080616;
  padding: 100px 24px;
  border-top: 1px solid rgba(47,47,228,0.08);
}

.metrics-row {
  display: flex;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .metrics-row {
    flex-direction: column;
  }
}

.metrics-container {
  display: flex;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
  justify-content: center;
}

@media (max-width: 768px) {
  .metrics-container {
    flex-direction: column;
  }
}

.metric-card {
  flex: 1;
  background: #1A1953;
  border: 1px solid rgba(47,47,228,0.2);
  border-radius: 16px;
  padding: 44px 28px;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  min-width: 200px;
}

.metric-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-number {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  color: #2F2FE4;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.metric-sub {
  font-size: 13px;
  color: #8888BB;
  line-height: 1.5;
}

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(47,47,228,0.06);
  border: 1px solid rgba(47,47,228,0.18);
  border-left: 4px solid #2F2FE4;
  border-radius: 12px;
  padding: 28px 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  color: #E8E8FF;
  line-height: 1.7;
  margin: 0 0 16px;
}

.testimonial-attr {
  font-size: 13px;
  color: #8888BB;
}

.testimonial-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(47,47,228,0.06);
  border: 1px solid rgba(47,47,228,0.18);
  border-left: 4px solid #2F2FE4;
  border-radius: 12px;
  padding: 28px 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-box .testimonial-quote {
  font-size: 17px;
  font-style: italic;
  color: #E8E8FF;
  line-height: 1.7;
  margin: 0 0 16px;
}

.testimonial-box .testimonial-attr {
  font-size: 13px;
  color: #8888BB;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: #080616;
  padding: 100px 24px;
  border-top: 1px solid rgba(47,47,228,0.08);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #E8E8FF;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 22px;
  color: #2F2FE4;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  margin-top: 2px;
  display: block;
}

.faq-item.open .faq-question {
  color: #2F2FE4;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: #8888BB;
  line-height: 1.7;
  margin: 0;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 6, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 47, 228, 0.1);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

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

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

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8, 6, 22, 0.98);
  border-bottom: 1px solid rgba(47, 47, 228, 0.12);
  padding: 0;
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 300px;
  display: flex;
}

.mobile-menu .nav-link {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 16px;
}

@media (max-width: 768px) {
  .navbar-center {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .navbar-left img {
    height: 55px;
  }
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-image:
    radial-gradient(ellipse 60% 50% at 35% 55%, rgba(47, 47, 228, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(47, 47, 228, 0.06) 0%, transparent 70%);
}

.hero-inner {
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.hero-h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 16px;
}

.hero-h1-num {
  color: #FFD400;
  font-weight: 700;
}

.hero-h1-blue {
  color: #2F2FE4;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-sub strong {
  color: #FFFFFF;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-video-wrap {
  max-width: 760px;
  margin: 0 auto 32px;
  width: 100%;
}

.hero-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0F0E2A;
  border: 1px solid rgba(47, 47, 228, 0.2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(47, 47, 228, 0.08);
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}

.hero-video-play {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero-video-play:hover {
  transform: scale(1.08);
}

.hero-video-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.6;
}

.hero-video-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 36px;
}

/* ===== HERO PRICING STRIP ===== */
.hero-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-price-card {
  background: #0F0E2A;
  border: 1px solid rgba(47, 47, 228, 0.18);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  min-width: 145px;
  transition: border-color 0.2s;
}

.hero-price-card:hover {
  border-color: rgba(47, 47, 228, 0.45);
}

.hero-price-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 7px;
}

.hero-price-num {
  font-size: 19px;
  font-weight: 700;
  color: #2F2FE4;
  line-height: 1.1;
}

.hero-price-mo {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}

.hero-price-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 5px;
  line-height: 1.4;
}

.hero-price-arrow {
  font-size: 18px;
  color: rgba(47, 47, 228, 0.35);
}

.hero-price-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-video-frame {
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  .hero-pricing {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hero-price-arrow {
    transform: rotate(90deg);
  }
  .hero-price-card {
    width: 100%;
    max-width: 260px;
  }
}

/* ===== OFFER ROI NOTE ===== */
.offer-roi-note {
  text-align: center;
  font-size: 13px;
  color: #555580;
  margin-top: 16px;
  line-height: 1.6;
}

.offer-roi-note strong {
  color: #1DB87A;
  font-weight: 600;
}

/* ===== PROBLEM BAR ===== */
.problem-bar {
  background: #0C0B22;
  border-top: 1px solid rgba(47, 47, 228, 0.1);
  border-bottom: 1px solid rgba(47, 47, 228, 0.1);
  padding: 28px 24px;
  text-align: center;
}

.problem-bar p {
  color: var(--text);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
}

.problem-bar .red {
  color: var(--error);
  font-weight: 700;
}

.problem-bar .blue {
  color: var(--blue);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg);
  padding: 100px 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  background: var(--card);
  border: 1px solid rgba(47, 47, 228, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card:hover {
  border-color: rgba(47, 47, 228, 0.45);
  transform: translateY(-4px);
}

.step-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.step-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.step-card:hover .step-image-wrap img {
  transform: scale(1.04);
}

.step-content {
  padding: 24px 26px 28px;
}

.step-number {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(47, 47, 228, 0.12);
  border: 1px solid rgba(47, 47, 228, 0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== RESULTS SECTION ===== */
.results {
  background: var(--bg);
  padding: 100px 24px;
}

.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .metrics-container {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  flex: 1;
  background: var(--deep);
  border: 1px solid rgba(47, 47, 228, 0.2);
  border-radius: 16px;
  padding: 44px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.metric-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.metric-number {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.metric-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.testimonial-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(47, 47, 228, 0.06);
  border: 1px solid rgba(47, 47, 228, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 28px 36px;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-box.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.testimonial-quote {
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-attr {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== OFFER SECTION ===== */
.offer {
  background: #0A0920;
  padding: 100px 24px;
  border-top: 1px solid rgba(47, 47, 228, 0.1);
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .offer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.offer-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(47, 47, 228, 0.15);
  border: 1px solid rgba(47, 47, 228, 0.35);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
}

.checklist-item:nth-child(1) .checkmark {
  transition: opacity 0.6s ease 0s, transform 0.6s ease 0s;
}
.checklist-item:nth-child(2) .checkmark {
  transition: opacity 0.6s ease 0.04s, transform 0.6s ease 0.04s;
}
.checklist-item:nth-child(3) .checkmark {
  transition: opacity 0.6s ease 0.08s, transform 0.6s ease 0.08s;
}
.checklist-item:nth-child(4) .checkmark {
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}
.checklist-item:nth-child(5) .checkmark {
  transition: opacity 0.6s ease 0.16s, transform 0.6s ease 0.16s;
}
.checklist-item:nth-child(6) .checkmark {
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.checklist-item:nth-child(7) .checkmark {
  transition: opacity 0.6s ease 0.24s, transform 0.6s ease 0.24s;
}
.checklist-item:nth-child(8) .checkmark {
  transition: opacity 0.6s ease 0.28s, transform 0.6s ease 0.28s;
}
.checklist-item:nth-child(9) .checkmark {
  transition: opacity 0.6s ease 0.32s, transform 0.6s ease 0.32s;
}
.checklist-item:nth-child(10) .checkmark {
  transition: opacity 0.6s ease 0.36s, transform 0.6s ease 0.36s;
}
.checklist-item:nth-child(11) .checkmark {
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.checklist-item.in-view .checkmark {
  opacity: 1;
  transform: translateY(0);
}

.checklist-item span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-card {
  background: linear-gradient(145deg, var(--deep) 0%, var(--card) 100%);
  border: 1px solid rgba(47, 47, 228, 0.3);
  border-radius: 20px;
  padding: 40px 36px;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 14px;
}

.pricing-card > p:nth-of-type(1) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

.pricing-divider {
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0 !important;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.pricing-row span:last-child {
  color: var(--white);
  font-weight: 600;
}

.pricing-fine {
  font-size: 11px;
  color: #555580;
  margin-top: 16px;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: var(--bg);
  padding: 100px 24px;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--white);
}

.faq-question:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.faq-icon {
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FINAL CTA BANNER ===== */
.final-cta {
  background: linear-gradient(145deg, var(--deep) 0%, #0A0920 50%, var(--bg) 100%);
  border-top: 1px solid rgba(47, 47, 228, 0.15);
  padding: 100px 24px;
  text-align: center;
}

.final-cta-logo {
  height: 44px;
  width: auto;
  margin-bottom: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.final-cta > p:first-of-type {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-yellow {
  margin-top: 36px;
}

.final-cta-fine {
  font-size: 12px;
  color: #444470;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #04030F;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

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

.footer-col img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  display: block;
  line-height: 2.2;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
  line-height: 2.2;
  display: block;
  width: 100%;
}

.footer-btn:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 12px;
  color: #444470;
  margin-top: 20px;
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555580;
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #333355;
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 3, 15, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  overflow-y: auto;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--card);
  border: 1px solid rgba(47, 47, 228, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.97) translateY(12px);
  transition: transform 0.25s ease;
  position: relative;
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 100vh;
  }
}

.modal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-header img {
  height: 28px;
  width: auto;
}

.modal-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.modal-progress-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.modal-progress-label {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}

.modal-progress-bar {
  width: 120px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transition: width 0.4s ease;
}

@media (max-width: 480px) {
  .modal-progress-bar {
    width: 80px;
  }

  .modal-progress-label {
    font-size: 9px;
  }
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.modal-close:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.modal-draft-banner {
  background: rgba(47, 47, 228, 0.1);
  border-bottom: 1px solid rgba(47, 47, 228, 0.2);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
}

.clear-draft-link {
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}

.clear-draft-link:hover {
  color: #6666FF;
}

.modal-form {
  padding: 24px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
  transition: opacity 0.2s ease;
}

.form-section-header:hover {
  opacity: 0.8;
}

.section-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(47, 47, 228, 0.15);
  border: 1px solid rgba(47, 47, 228, 0.3);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.section-num.complete {
  background: rgba(29, 184, 122, 0.15);
  border-color: rgba(29, 184, 122, 0.4);
  color: var(--success);
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.section-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.form-info-box {
  background: rgba(47, 47, 228, 0.07);
  border: 1px solid rgba(47, 47, 228, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #9999CC;
  line-height: 1.6;
  margin-bottom: 18px;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .form-fields {
    grid-template-columns: 1fr;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.field-label .req {
  color: var(--blue);
  margin-left: 2px;
}

.field-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field-input::placeholder {
  color: rgba(136, 136, 187, 0.45);
}

.field-input:focus {
  border-color: rgba(47, 47, 228, 0.6);
  background: rgba(47, 47, 228, 0.06);
}

.field-input.filled {
  border-color: rgba(29, 184, 122, 0.3);
}

.field-input.error {
  border-color: rgba(255, 77, 109, 0.6);
  background: rgba(255, 77, 109, 0.04);
}

.field-error-msg {
  font-size: 11px;
  color: var(--error);
  margin-top: 3px;
  display: none;
}

.field-error-msg.show {
  display: block;
}

.money-wrap {
  position: relative;
}

.money-wrap .currency {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}

.money-wrap .field-input {
  padding-left: 26px;
}

.field-hint {
  font-size: 11px;
  color: #555580;
  margin-top: 4px;
}

.form-divider {
  grid-column: span 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 20px 0 16px 0;
  opacity: 0.9;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  bottom: 0;
  background: var(--card);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-note {
  font-size: 12px;
  color: #555580;
  text-align: center;
  margin-top: 10px;
}

.modal-error-banner {
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--error);
  margin: 0 24px 24px;
}

/* ===== THANK YOU SCREEN ===== */
.thank-you-screen {
  padding: 40px 28px 32px;
  text-align: center;
}

.ty-header {
  max-width: 480px;
  margin: 0 auto 28px;
}

.ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29, 184, 122, 0.12);
  border: 2px solid var(--success);
  color: var(--success);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ty-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ty-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Divider with text */
.ty-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 24px;
  max-width: 600px;
}

.ty-divider::before,
.ty-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(47, 47, 228, 0.2);
}

.ty-divider span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  white-space: nowrap;
}

/* Calendly embed container */
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 47, 228, 0.15);
  max-width: 760px;
  margin: 0 auto;
}

/* Skip link */
.ty-skip {
  margin-top: 20px;
  font-size: 13px;
  color: #444470;
}

.ty-skip-btn {
  background: none;
  border: none;
  color: #555580;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  margin-left: 4px;
  transition: color 0.2s;
}

.ty-skip-btn:hover {
  color: var(--muted);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .thank-you-screen {
    padding: 28px 16px 24px;
  }
  .calendly-inline-widget {
    height: 600px !important;
  }
  .ty-divider {
    gap: 10px;
  }
}

/* ===== COUNT UP ANIMATION ===== */
.count-up {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* ── AI LEAD ENGINE SECTION ────────────────────────────────── */
.section-ai-engine {
  background: #080616;
  padding: 100px 24px;
  border-top: 1px solid rgba(47, 47, 228, 0.08);
}

/* Sub-systems list */
.subsystems-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Vertical connector line running through numbers 01 → 05 */
.subsystems-list::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 70px;
  bottom: 70px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(47, 47, 228, 0.45),
    rgba(47, 47, 228, 0.12)
  );
  z-index: 0;
}

/* Each sub-system row */
.subsystem-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.subsystem-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.subsystem-item:last-child {
  border-bottom: none;
}

/* Number marker — icon watermark behind the number */
.subsystem-marker {
  position: relative;
  width: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0;
  background: var(--bg);
  z-index: 1;
}

.subsystem-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.3s;
}

.subsystem-item:hover .subsystem-icon {
  opacity: 0.8;
}

.subsystem-num {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 212, 0, 0.75);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
  text-shadow: 0 2px 12px rgba(8, 6, 22, 0.9);
}

.subsystem-item:hover .subsystem-num {
  color: #FFD400;
}

/* Content */
.subsystem-content {
  flex: 1;
}

.subsystem-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.subsystem-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.subsystem-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(47, 47, 228, 0.12);
  border: 1px solid rgba(47, 47, 228, 0.25);
  color: #6666FF;
  white-space: nowrap;
}

.subsystem-badge--live {
  background: rgba(29, 184, 122, 0.1);
  border-color: rgba(29, 184, 122, 0.3);
  color: #1DB87A;
}

.subsystem-desc {
  font-size: 15px;
  color: #8888BB;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Stats row */
.subsystem-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.subsystem-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-val {
  font-size: 22px;
  font-weight: 700;
  color: #2F2FE4;
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Bottom callout */
.ai-engine-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 60px;
  padding: 32px 40px;
  background: #0F0E2A;
  border: 1px solid rgba(47, 47, 228, 0.2);
  border-radius: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.callout-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2F2FE4;
  margin-bottom: 10px;
}

.callout-text {
  font-size: 16px;
  color: #E8E8FF;
  line-height: 1.65;
  max-width: 560px;
}

.callout-right {
  flex-shrink: 0;
  text-align: center;
}

.callout-num {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FFD400;
  line-height: 1;
}

.callout-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin-top: 6px;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .subsystems-list::before {
    display: none;
  }
  .subsystem-item {
    flex-direction: column;
    gap: 16px;
  }
  .subsystem-marker {
    width: auto;
    justify-content: flex-start;
    padding: 6px 0;
  }
  .subsystem-icon {
    left: 30px;
    width: 72px;
    height: 72px;
  }
  .subsystem-num {
    font-size: 36px;
  }
  .ai-engine-callout {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .callout-text {
    font-size: 15px;
  }
}
