*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #205efe;
  --blue-dark: #082aa0;
  --blue-light: #eef3ff;
  --blue-mid: #d4e0fd;
  --blue-dim: rgba(32, 94, 254, 0.1);
  --white: #ffffff;
  --off-white: #f8faff;
  --ink: #0d1526;
  --ink-mid: #374163;
  --gray: #6b7a99;
  --gray-light: #e8edf8;
  --border: #dde4f5;
  --gradient: linear-gradient(135deg, #205efe 0%, #082aa0 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a {
  text-decoration: none;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 102;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-secondary-link {
  font-size: 12px !important;
  color: var(--gray) !important;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(32, 94, 254, 0.25);
  transition: opacity 0.2s ease, transform 0.15s ease !important;
}

.nav-cta:hover {
  opacity: 0.92 !important;
  transform: translateY(-1px) !important;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links a {
  display: block;
  color: var(--ink-mid);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-links a:hover {
  color: var(--blue);
}



.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--gradient);
  color: var(--white) !important;
  border-radius: 10px;
  border-bottom: 0 !important;
  padding: 14px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(32, 94, 254, 0.25);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 56px 100px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape-1 {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 94, 254, 0.1) 0%, transparent 70%);
}

.shape-2 {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 42, 160, 0.06) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(32, 94, 254, 0.2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 780px;
}

h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 22px;
}

.hero-body {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(32, 94, 254, 0.3);
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(32, 94, 254, 0.35);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.trust-signal {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-signal::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gray);
}

/* SHARED */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-cta-center {
  text-align: center;
  margin-top: 40px;
}

.problem-cta {
  margin-top: 24px;
}

/* PROBLEM */
#problem {
  padding: 100px 56px;
  background: var(--white);
}

.problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.problem-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.problem-body {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* HOW IT WORKS */
#how-it-works {
  padding: 100px 56px;
  background: var(--off-white);
}

.steps {
  display: grid;
  gap: 24px;
  position: relative;
}

.steps-3 {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--off-white), 0 4px 16px rgba(32, 94, 254, 0.25);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.steps-callout {
  margin-top: 52px;
  text-align: center;
  padding: 18px 32px;
  background: var(--blue-dim);
  border: 1px solid rgba(32, 94, 254, 0.18);
  border-radius: 12px;
  font-size: 15px;
  color: var(--blue-dark);
  font-style: italic;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* RESULTS */
#results {
  padding: 100px 56px;
  background: var(--white);
}



.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.stat-block {
  text-align: center;
  margin-bottom: 60px;
}

.results-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.results-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.results-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: visible;
  padding-bottom: 6px;
}

.results-stat-number {
  font-size: clamp(40px, 6vw, 72px);
  padding-bottom: 8px;
}

.stat-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.stat-sub {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
}

.video-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 16px 16px 16px 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32, 94, 254, 0.04), transparent);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(32, 94, 254, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-container:hover .play-btn {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(32, 94, 254, 0.45);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.video-label {
  font-size: 14px;
  color: var(--gray);
}

.video-quote {
  max-width: 760px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 28px 40px 32px;
  text-align: center;
}

.testimonial-quote {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* WHY SCOUT */
#why-scout {
  padding: 100px 56px;
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.diff-card:hover {
  border-color: rgba(32, 94, 254, 0.3);
  box-shadow: 0 6px 24px rgba(32, 94, 254, 0.08);
  transform: translateY(-3px);
}

.diff-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.diff-icon svg {
  width: 20px;
  height: 20px;
}

.diff-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.diff-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* CTA */
#free-sample {
  padding: 100px 56px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 10px;
}

.cta-bold {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 40px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

textarea {
  resize: vertical;
  min-height: 88px;
}

.btn-submit {
  width: 100%;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-submit:hover {
  opacity: 0.93;
  transform: translateY(-2px);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
}

/* FAQ */
#faq {
  padding: 100px 56px;
  background: var(--off-white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: rgba(32, 94, 254, 0.3);
}

.faq-q {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.3s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.faq-icon svg {
  width: 12px;
  height: 12px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 26px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 22px;
}

/* FOOTER */
footer {
  padding: 56px 56px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

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

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--blue);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav,
  #hero,
  #problem,
  #how-it-works,
  #results,
  #why-scout,
  #free-sample,
  #faq,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  nav {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  nav,
  #hero,
  #problem,
  #how-it-works,
  #results,
  #why-scout,
  #free-sample,
  #faq,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  nav {
    padding-left: 20px;
    padding-right: 20px;
    height: 64px;
  }

 .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 101;
  }
.mobile-menu.active {
  display: block;
}
  #hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .steps-3 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  nav,
  #hero,
  #problem,
  #how-it-works,
  #results,
  #why-scout,
  #faq,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  #free-sample {
    padding: 76px 14px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-body,
  .problem-body,
  .cta-body {
    font-size: 15px;
  }

  .hero-actions,
  .section-cta-center {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .section-cta-center .btn-primary {
    width: 100%;
  }

  .btn-primary,
  .btn-submit {
    min-height: 52px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-inner {
    max-width: 100%;
  }

  .cta-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cta-bold {
    margin-bottom: 28px;
  }

  .form-stack {
    gap: 10px;
  }

  input,
  textarea {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  textarea {
    min-height: 110px;
  }

  .results-stats {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .results-stat {
    padding: 0;
  }

  .results-divider {
    width: 100%;
    height: 1px;
  }

  .stat-label {
    font-size: 18px;
  }

  .video-container {
    border-radius: 14px 14px 0 0;
  }

  .video-quote {
    padding: 24px 20px 28px;
  }

  .faq-q {
    padding: 18px 18px;
    font-size: 15px;
  }

  .faq-a {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }

  .faq-item.open .faq-a {
    padding-bottom: 18px;
  }

  .diff-card {
    padding: 24px 20px;
  }

  .steps-callout {
    padding: 16px 18px;
  }

  .trust-signal {
    align-items: flex-start;
  }

  .trust-signal::before {
    margin-top: 11px;
    flex-shrink: 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}