* { box-sizing: border-box; }
html,
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f6f9fc;
  color: #0b1f33;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-sub { color: #5f728a; font-size: 20px;}

.calc-card, 
.demo-card {
  transform: none;
}

/* =========================STICKY BANNER========================= */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Banner text */
.banner-text {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap; /* desktop behavior */
}

.banner-text strong {
  font-weight: 800;
  color: #4f46e5;
}

/* CTA button */
.banner-cta {
  background: linear-gradient(135deg, #6f5cff, #1fbad6);
  color: #ffffff;

  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;

  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.35);
}

/* =========================HERO========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 140px;
  overflow: hidden;
  color: #ffffff;

  background:
    radial-gradient(
      1200px 600px at 10% 20%,
      rgba(31,186,214,0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 10%,
      rgba(111,92,255,0.35),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      #071a2f 0%,
      #0b1f3f 45%,
      #2b2e83 100%
    );
}

/* Hero background image layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("images/lightbeam.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .3;
  pointer-events: none;
  z-index: 0;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.45;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: #6f5cff;
  top: -180px;
  right: -180px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: #1fbad6;
  bottom: -180px;
  left: -180px;
}

/* Content */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto;
}

.hero-sub,
.hero p {
  margin-top: 18px;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Actions */
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary CTA */
.primary-btn {
  will-change: transform;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  background: linear-gradient(135deg,#6f5cff,#1fbad6);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 44px rgba(79,70,229,0.2);
  transition: transform .15s ease, box-shadow .15s ease;
  z-index: 1;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(79,70,229,0.9);
}

.primary-btn--calm {
  box-shadow: 0 8px 18px rgba(79,70,229,0.18);
}
.primary-btn--calm:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(79,70,229,0.22);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid rgba(199,214,255,0.35);
  color: #e6ecff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.secondary-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(199,214,255,0.55);
  transform: translateY(-5px);
}

/* =========================METRICS========================= */
.metrics {
  position: relative;
  margin-top: -70px;
  overflow: hidden; /* contains orb blur so it can't create horizontal scroll */
}
.metrics-orb {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(111,92,255,0.18), transparent 70%);
}
.metrics-sentinel {
  height: 1px;
}
.metrics-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.metric-value {
  display: block;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg,#6f5cff,#1fbad6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label {
  font-size: 18px;
  color: #556b82;
  font-weight: 500;
}
.metric-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 50px;
  color: rgba(79, 70, 229, 0.75);
  filter: drop-shadow(0 2px 6px rgba(79,70,229,0.15));
  margin-bottom: 2px;

  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}
/* INLINE METRICS — canonical layout */
.metrics:not(.is-rail) .metrics-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.metrics:not(.is-rail) .metric {
  align-items: center;
  text-align: center;
}

/* =========================METRICS — RAIL MODE========================= */
.metrics:not(.is-rail) .metric-detail {
  display: none;
}
.metrics.is-rail .metrics-card {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;

  width: 56px;
  padding: 16px 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  border-radius: 0 18px 18px 0;
  transition: width 180ms ease-out;
  overflow: hidden;

/* Rail exists but is not yet visible */
  opacity: 0;
  transform: translate(-24px, -50%);
}

/* Rail fully entered */
.metrics.is-rail.is-visible .metrics-card {
  opacity: 1;
  transform: translate(0, -50%);
  transition:
    opacity 2000ms ease-in,
    transform 1000ms cubic-bezier(0.22, 0, 0.36, 2),
    width 100ms linear;
}

/* Expanded width */
.metrics.is-rail .metrics-card.is-open {
  gap: 18px;
  width: 240px;
  overflow: visible;
}

/* Individual metric blocks */
.metrics.is-rail .metric {
  width: 100%;
  padding: 4px 6px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.metrics.is-rail .metrics-card:hover .metric {
  padding: 4px 6px;
}

/* TEXT — fully collapsed in rail mode */
.metrics.is-rail .metric-value,
.metrics.is-rail .metric-label,
.metrics.is-rail .metric p {
  opacity: 0;
  transform: translateX(-6px);

  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;

  transition:
    opacity 120ms ease-out,
    transform 120ms ease-out,
    max-height 160ms ease-out;
}

/* Reveal text on expand */
.metrics.is-rail .metrics-card.is-open .metric-value,
.metrics.is-rail .metrics-card.is-open .metric-label,
.metrics.is-rail .metrics-card.is-open .metric p {
  opacity: 1;
  transform: translateX(0);
  max-height: 200px; /* safely larger than content */
}


/* Reveal text on hover */
.metrics.is-rail .metrics-card.is-open .metric-value,
.metrics.is-rail .metrics-card.is-open .metric-label,
.metrics.is-rail .metrics-card.is-open .metric p {
  opacity: 1;
  transform: translateX(0);
}

/* Safety: never clip vertically */
.metrics.is-rail {
  overflow: visible;
}

/* =========================METRIC DETAIL EXPANSION========================= */

.metrics.is-rail .metric {
  position: relative; /* anchor for detail panel */
}

/* Hidden by default */
.metrics.is-rail .metric-detail {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(4px);

  width: 320px;               /* ⬅ wider */
  padding: 20px 22px;         /* ⬅ more breathing room */

  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 140ms ease,
    transform 160ms ease;
  transition-delay: 300ms;

  z-index: 1000;
}

/* Locked state — same as hover */
.metrics.is-rail .metric.is-active:not(:hover) .metric-detail {
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
  pointer-events: auto;
}

/* If user is hovering a different metric, suppress the locked panel so it doesn't look stuck */
.metrics.is-rail .metrics-card.suspend-active .metric.is-active .metric-detail {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-12px);
}


/* Reveal detail only when rail is open AND metric is hovered */
.metrics.is-rail .metrics-card.is-open .metric:hover .metric-detail {
  opacity: 1;
  transform: translateY(-50%) translateX(12px);
  pointer-events: auto;
  transition-delay: 0ms;
}

/* ==== Metric detail extras ===== */
.metric-detail p {
  margin: 0 0 14px;
  font-size: 15.5px;      /* ⬅ up from ~14 */
  line-height: 1.55;      /* ⬅ easier scanning */
  color: #1f2937;
}


.metric-detail .metric-link {
  display: inline-block;

  margin-top: 4px;
  padding: 6px 10px;     /* ⬅ bigger hit box */
  border-radius: 8px;
  background: rgba(79, 70, 229, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

.metric-detail .metric-link:hover {
  background: rgba(79, 70, 229, 0.2);
  text-decoration: none;
}


.metric-languages {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.metric-languages span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;

  padding: 4px 8px;
  border-radius: 6px;

  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
}
/* ==============================MOBILE FIXES STATS============================= */
@media (max-width: 768px) {
  /* Banner: keep sticky, but make it wrap + stack */
  .banner-inner {
    position: sticky;
    flex-direction: column;
    gap: 6px;
    padding: 10px 14px;
  }
  .banner-text {
    white-space: normal; /* critical: removes forced single-line overflow */
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
  }

  /* Hero spacing */
  .hero { padding: 96px 18px 120px; }
  .hero h1 { font-size: clamp(34px, 8vw, 46px); }
  .hero-sub { font-size: 16px; }

  /* Metrics: stack so nothing “hangs” off the card */
  .metrics-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 18px;
  }
  .metric-label { text-align: center; font-size: 16px; }

  /* Calculator: preserve the “first screenshot” layout on narrow screens */
  .calculator { padding: 110px 0; font-size: 20px; }
  .calc-card { padding: 18px 18px; }
  .calc-card label { font-size: 16px; }
  .calc-card input {
    width: 20%;
    font-size: 18px;
  }
  .calc-result { font-size: 20px; }
  .calc-result strong { font-size: 28px; }
}
@media (max-width: 768px) {
  /* Disable rail entirely */
  .metrics.is-rail {
    position: static;
  }
  .metrics:not(.is-rail) .metrics-card {
    grid-template-columns: 1fr;
  }
  .metrics.is-rail .metrics-card {
    position: static;
    width: auto;
    transform: none;
    opacity: 1;
  }
  /* Inline-only behavior */
  .metrics .metric {
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
  }

  /* Mobile detail panel = inline accordion */
  .metrics .metric-detail {
    display: block;
    margin-top: 14px;
    padding: 14px 16px;

    border-radius: 12px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .metrics .metric.is-active .metric-detail {
    display: block;
  }
  .metric::after {
    content: "›";
    margin-top: 1px;
    font-size: 30px;
    opacity: 0.5;
    transition: transform 120ms ease;
  }

  .metric.is-active::after {
    transform: rotate(90deg);
    opacity: 1;
  }
}
/* ==============================HOW IT WORKS============================== */
.how-it-works {
  padding: 96px 0 56px;
  background: #f6f9fc;
}

.how-it-works .container {
  max-width: 1100px;
}

.how-it-works h2 {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #0b1f3f;
}

.how-sub {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.78);
}

.how-note {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-weight: 700;
  font-size: 13px;
  vertical-align: middle;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.how-step {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 20px 50px rgba(2, 12, 27, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(2, 12, 27, 0.12);
}

.how-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.how-step__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.55);
}

.how-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border-radius: 12px;

  background: linear-gradient(135deg, rgba(111,92,255,0.16), rgba(31,186,214,0.14));
  color: rgba(79, 70, 229, 0.95);

  /* If you’re using Material Symbols, this makes the icon render correctly */
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48;
  font-size: 22px;
  line-height: 1;
}

.how-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #0b1f3f;
}

.how-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.76);
}

/* Responsive */
@media (max-width: 1024px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 72px 0 40px;
  }
  .how-sub {
    font-size: 16px;
    margin-bottom: 22px;
    padding: 0 14px;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 14px;
  }
}

/* =============================CAPABILITIES MODAL============================= */

.capabilities-trigger {
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: rgba(79,70,229,0.08);
  color: #4f46e5;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.capabilities-trigger:hover {
  background: rgba(79,70,229,0.14);
}

/* Modal shell */
.capabilities-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.capabilities-modal.is-open {
  display: block;
}

/* Backdrop */
.capabilities-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(6px);
}

/* Panel */
.capabilities-panel {
  position: relative;
  max-width: 720px;
  max-height: auto;
  overflow-y: auto;
  margin: 8vh auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);

  animation: modalEnter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Close button */
.capabilities-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
}

.capabilities-close:hover {
  color: #1f2937;
}

/* Content */
.capabilities-panel h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.capabilities-intro {
  margin-bottom: 26px;
  color: #475569;
}

.capability-tier {
  margin-bottom: 26px;
}

.capability-tier h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.capability-tier ul {
  padding-left: 18px;
  margin: 0 0 6px;
}

.capability-tier li {
  margin-bottom: 6px;
  line-height: 1.45;
}

.capability-addon {
  font-size: 13.5px;
  color: #475569;
}

/* Entrance animation */
@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Adjustment for Mobile */
@media (max-width: 768px) {
  .capabilities-panel {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/*==============================CALCULATOR==============================*/
.calculator {
  padding: 20px 0 80px;
  text-align: center;
  font-size: 24px;
}

.calc-card {
  position: relative;
  margin: 48px auto 0;
  background: white;
  max-width: 560px;
  padding: 26px 22px 24px;
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.15);
}

.calc-card::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(31,186,214,.6), rgba(111,92,255,.6));
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.calc-card > * { position: relative; z-index: 1; }

/* -------------------------Rows------------------------- */
.calc-row {
  margin: 18px 0;
  text-align: left;
}

/* Stacked labels */
.calc-row label {
  display: block;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* Inline rows: keep content on the LEFT (not right-aligned) */
.calc-row--inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Wrap label + input together so the input is truly “next to the question” */
.calc-inline-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.calc-inline-group label {
  margin: 0;
  display: inline;
}

/* Purple percentage pill */
.calc-inline {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(79,70,229,0.12);
  color: #4f46e5;
  vertical-align: middle;
}

/* ------------------Input groups (prefix/suffix INSIDE, tight to input)----------------- */
.calc-input-group {
  display: inline-flex;
  align-items: center;

  border: 2px solid #d6e0ea;
  border-radius: 12px;
  background: transparent;

  padding: 0 10px;
  height: 42px; /* consistent box height */
}

.calc-input-group .calc-affix {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

/* space between input and affix */
.calc-input-group:not(.calc-input-group--prefix) input { margin-right: 8px; }
.calc-input-group--prefix .calc-affix { margin-right: 8px; }
.calc-input-group--prefix input { margin-right: 0; }

/* Number inputs (inside the group) */
.calc-input-group input[type="number"] {
  width: 54px;
  border: 0;
  outline: 0;
  background: transparent;

  text-align: center;
  font-size: 18px;
  font-weight: 800;
  padding: 0;
}

/* Focus ring on the group (not the input) */
.calc-input-group:hover,
.calc-input-group:focus-within {
  border-color: rgba(79,70,229,0.55);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}

/* -------------------------Sliders------------------------- */
.calc-row input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(79,70,229,0.22);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4f46e5;
  box-shadow: 0 10px 22px rgba(79,70,229,0.28);
  cursor: pointer;
}

.calc-row input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4f46e5;
  border: none;
  box-shadow: 0 10px 22px rgba(79,70,229,0.28);
  cursor: pointer;
}

/* -------------------------Helper text------------------------- */
.calc-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

/* -------------------------Result------------------------- */
.calc-result {
  margin-top: 22px;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.calc-result strong {
  font-size: 34px;
  background: linear-gradient(135deg,#16a34a,#22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.calc-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 0;
  padding-bottom: 18px;
}

.pulse { animation: pulse 0.35s ease; }
@keyframes pulse {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}


/* ============================NEXT STEPS / TIMELINE============================ */

.next-steps {
  padding: 20px 0;
  text-align: center;
  font-size: 24px;
}

.steps-timeline {
  margin: 48px auto 0;
  max-width: 820px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.step:first-child {
  border-top: none;
}

.step-index {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(79,70,229,0.12);
  color: #4f46e5;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  text-align: left;
}

.step-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.step-content p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4b5563;
}

.steps-footnote {
  margin-top: 0;
  font-size: 16px;
  color: #6b7280;
}

/* ============================DEMO VIDEO============================ */

.demo-section {
  padding: 40px 0;
  text-align: center;
  font-size: 24px;
}

.demo-highlights {
  margin: 28px auto 36px;
  max-width: 520px;
  padding: 0;
  list-style: none;
}

.demo-highlights li {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 6px 0;
}

.demo-card {
  margin: 0 auto 36px;
  max-width: 720px;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.15);
}

.demo-video {
  width: 100%;
  border-radius: 14px;
  outline: none;
  background: #000;
}
/* ============================FAQ============================ */
.faq {
  padding: 40px 0;
}

.faq h2 {
  text-align: center;
}

.faq .section-sub {
  text-align: center;
  margin-bottom: 48px;
}

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

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 8px;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #4f46e5;
}

.faq-icon {
  font-size: 22px;
  font-weight: 700;
  transition: transform 200ms ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 200ms ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 8px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .faq {
    padding: 110px 0;
  }

  .faq-question {
    font-size: 17px;
  }
}


/* ============================FOOTER============================ */
footer {
  background: #081a2b;
  color: #8fa9c4;
  text-align: center;
  padding: 32px;
}
