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

:root {
  --black: #0B0B0B;
  --navy: #111827;
  --white: #FFFFFF;
  --grey: #9CA3AF;
  --gold: #3B82F6;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

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

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #93C5FD);
  z-index: 9999;
  transition: width .15s linear;
  width: 0
}

/* ===== GLOW CURSOR ===== */
.glow-cursor {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.navbar.scrolled {
  background: rgba(11, 11, 11, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.5px;
  display: flex;
  align-items: center
}

.nav-logo span {
  color: var(--gold)
}

.nav-logo-img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-right: 16px;
  border-radius: 8px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg)
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 16px;
  border-radius: 8px
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center
}

.nav-links a {
  font-size: .875rem;
  color: var(--grey);
  transition: color .3s;
  position: relative
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s cubic-bezier(.16, 1, .3, 1)
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem !important;
  transition: all .3s !important
}

.nav-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-1px)
}

.calendly-embed {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s
}

/* ===== HERO ===== */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(17, 24, 39, .6) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, .04) 0%, transparent 40%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
  z-index: 1
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85em;
}

.word-reveal {
  display: inline-block;
  animation: wordFadeIn .7s cubic-bezier(.16, 1, .3, 1) both
}

@keyframes wordFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px)
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0)
  }
}

.hero-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7
}

.hero-cta-blue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 18px 40px;
  border-radius: 14px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 6px 30px rgba(37, 99, 235, .35);
  animation: ctaPulseGlow 2.5s ease-in-out infinite
}

.hero-cta-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  animation: ctaSweep 3s ease-in-out infinite
}

.hero-cta-blue::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  pointer-events: none
}

.hero-cta-blue:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 50px rgba(37, 99, 235, .5)
}

.hero-cta-blue:active {
  transform: translateY(0) scale(.98)
}

.cta-blue-main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .5px;
  text-transform: uppercase
}

.cta-blue-main svg {
  flex-shrink: 0;
  animation: phoneRing 1.5s ease-in-out infinite
}

.cta-blue-sub {
  font-size: .75rem;
  opacity: .85;
  font-weight: 500;
  letter-spacing: .3px
}

@keyframes ctaSweep {
  0% {
    left: -100%
  }

  50% {
    left: 100%
  }

  100% {
    left: 100%
  }
}

@keyframes ctaPulseGlow {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(37, 99, 235, .35)
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 99, 235, .55), 0 0 60px rgba(59, 130, 246, .15)
  }
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0deg)
  }

  10% {
    transform: rotate(15deg)
  }

  20% {
    transform: rotate(-10deg)
  }

  30% {
    transform: rotate(10deg)
  }

  40% {
    transform: rotate(-5deg)
  }

  50% {
    transform: rotate(0deg)
  }
}

.hero-visual {
  position: relative
}

.hero-visual img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5)
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .15), transparent 50%);
  pointer-events: none;
  z-index: 1
}

.float-card {
  position: absolute;
  background: rgba(17, 24, 39, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 20px;
  z-index: 2;
  animation: float 6s ease-in-out infinite
}

.float-card.c1 {
  top: -10px;
  right: -20px;
  animation-delay: 0s
}

.float-card.c2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s
}

.float-card .fc-label {
  font-size: .7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px
}

.float-card .fc-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 120px 0;
  position: relative
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: all .3s ease;
  position: relative
}

/* — Problem: muted slate/blue-grey to match navy bg — */
.problem .section-tag {
  background: rgba(148, 163, 184, .08);
  border: 1px solid rgba(148, 163, 184, .18);
  color: #94a3b8
}

.problem .section-tag::before {
  content: '◈';
  margin-right: 2px;
  font-size: .65rem
}

/* — Services: electric blue — */
.services .section-tag {
  background: rgba(96, 165, 250, .08);
  border: 1px solid rgba(96, 165, 250, .2);
  color: #60a5fa
}

.services .section-tag::before {
  content: '◆';
  margin-right: 2px;
  font-size: .55rem
}

/* — Framework: gold (signature) — */
.framework .section-tag {
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .25);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(59, 130, 246, .06)
}

.framework .section-tag::before {
  content: '⟡';
  margin-right: 2px;
  font-size: .7rem
}

/* — Comparison: amber/orange — */
.comparison .section-tag {
  background: rgba(251, 191, 36, .08);
  border: 1px solid rgba(251, 191, 36, .2);
  color: #fbbf24
}

.comparison .section-tag::before {
  content: '⇄';
  margin-right: 2px;
  font-size: .7rem
}

/* — Why Us: emerald green — */
.why-us .section-tag {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .2);
  color: #34d399
}

.why-us .section-tag::before {
  content: '✦';
  margin-right: 2px;
  font-size: .65rem
}

/* — Speed: violet/purple — */
.speed .section-tag {
  background: rgba(167, 139, 250, .08);
  border: 1px solid rgba(167, 139, 250, .2);
  color: #a78bfa
}

/* — Videos: rose/pink — */
.videos .section-tag {
  background: rgba(244, 114, 182, .08);
  border: 1px solid rgba(244, 114, 182, .2);
  color: #f472b6
}

.videos .section-tag::before {
  content: '▶';
  margin-right: 2px;
  font-size: .6rem
}

/* — CTA: gold glow — */
.cta-section .section-tag {
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .3);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(59, 130, 246, .08)
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 20px
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.8
}

/* ===== DIVIDER LINE ===== */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0 30px
}

.problem .section-divider {
  width: 120px
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--navy);
  position: relative;
  padding: 72px 0 0
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .2), transparent)
}

.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 60px
}

.problem-text .section-desc {
  margin-bottom: 20px
}

.problem-visual img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  opacity: .85;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.problem-visual:hover img {
  transform: scale(1.02)
}

/* ===== TEASER STRIP ===== */
.teaser-wrap {
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(17,24,39,0.7) 100%);
  border-top: 1px solid rgba(59,130,246,0.2);
  padding: 36px 0
}

.teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.teaser-badge {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  color: #3B82F6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,0.25);
  margin-bottom: 10px
}

.teaser-title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px
}

.teaser-sub {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 460px
}

.teaser-right {
  flex-shrink: 0
}

.teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(37,99,235,0.35);
  transition: all 0.3s ease
}

.teaser-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(37,99,235,0.5)
}

/* Teaser inline form */
.teaser-form { width: 100% }

.teaser-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.teaser-email-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s
}

.teaser-email-input::placeholder { color: #6B7280 }
.teaser-email-input:focus { border-color: rgba(59,130,246,0.6) }

.teaser-fineprint {
  font-size: 11px;
  color: #6B7280;
  margin-top: 8px
}

.teaser-success {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.teaser-success-icon { font-size: 22px; margin-top: 2px }

.teaser-success-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.teaser-success-sub {
  font-size: 12px;
  color: var(--grey)
}

.teaser-scorecard-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3B82F6;
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  padding-bottom: 1px;
  transition: all 0.2s
}

.teaser-scorecard-link:hover {
  color: #93C5FD;
  border-bottom-color: rgba(147,197,253,0.5)
}


/* ===== SERVICES GRID ===== */
.services {
  position: relative
}

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

.services .header .section-desc {
  margin: 0 auto
}

.services .header .section-divider {
  margin: 20px auto 30px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column
}

.card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background .2s
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s
}

.service-card:hover {
  border-color: rgba(59, 130, 246, .2)
}

.service-card:hover::before {
  opacity: 1
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), background .4s
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(59, 130, 246, .18)
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white)
}

.service-card p {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.7
}

/* Card image panel */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
  filter: brightness(.85) saturate(.9)
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.04);
  filter: brightness(.95) saturate(1.05)
}

.card-img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, transparent 0%, var(--navy) 100%);
  pointer-events: none
}

.card-body {
  padding: 24px 28px 28px
}

/* ===== FRAMEWORK ===== */
.framework {
  background: var(--navy);
  position: relative
}

.framework::before,
.framework::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .2), transparent)
}

.framework::before {
  top: 0
}

.framework::after {
  bottom: 0
}

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

.framework .header .section-desc {
  margin: 0 auto
}

.framework .header .section-divider {
  margin: 20px auto 30px
}

.flow-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 48px
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 12px;
  flex: 1;
  min-width: 120px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.flow-step:hover {
  transform: translateY(-6px)
}

.flow-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  border: 1.5px solid rgba(59, 130, 246, .7);
  box-shadow: 0 0 14px rgba(59, 130, 246, .45), 0 0 4px rgba(59, 130, 246, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 14px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.flow-step:hover .flow-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(59, 130, 246, .7), 0 0 10px rgba(59, 130, 246, .5)
}

.flow-step h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px
}

.flow-arrow {
  color: rgba(59, 130, 246, .4);
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
  margin-top: 40px;
  align-self: flex-start
}

@keyframes arrowPulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: .9
  }
}

.framework-bottom {
  text-align: center;
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8
}

/* ===== COMPARISON ===== */
.comparison .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.comparison .header {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 20px
}

.comparison .header .section-desc {
  margin: 0 auto
}

.comparison .header .section-divider {
  margin: 20px auto 30px
}

.comp-col {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 40px 36px;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s
}

.comp-col:hover {
  transform: translateY(-4px)
}

.comp-col.fail {
  border-color: rgba(239, 68, 68, .15)
}

.comp-col.fail:hover {
  box-shadow: 0 20px 60px rgba(239, 68, 68, .06)
}

.comp-col.success {
  border-color: rgba(59, 130, 246, .2)
}

.comp-col.success:hover {
  box-shadow: 0 20px 60px rgba(59, 130, 246, .08)
}

.comp-col h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px
}

.comp-col.fail h3 {
  color: #f87171
}

.comp-col.success h3 {
  color: var(--gold)
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .95rem;
  color: var(--grey);
  transition: transform .3s, color .3s
}

.comp-item:hover {
  transform: translateX(6px);
  color: var(--white)
}

.comp-item:last-child {
  border-bottom: none
}

.comp-item .icon {
  flex-shrink: 0;
  margin-top: 2px
}

.comp-item .icon.fail {
  color: #f87171
}

.comp-item .icon.success {
  color: var(--gold)
}


/* ===== SPEED SECTION ===== */
.speed {
  background: var(--navy)
}

.speed .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.speed-list {
  list-style: none;
  margin: 28px 0
}

.speed-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--grey);
  transition: transform .3s, color .3s
}

.speed-list li:hover {
  transform: translateX(8px);
  color: var(--white)
}

.speed-list li .check {
  color: var(--gold);
  flex-shrink: 0
}

.speed-visual img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.speed-visual:hover img {
  transform: scale(1.02)
}

/* ===== YOUTUBE VIDEOS ===== */
.videos {
  position: relative;
  background: var(--black)
}

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

.videos .header .section-desc {
  margin: 0 auto
}

.videos .header .section-divider {
  margin: 20px auto 30px
}

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

.video-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  border-color: rgba(59, 130, 246, .2)
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none
}

.video-info {
  padding: 30px
}

.video-info h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white)
}

.video-info p {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.6
}

.videos-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px
}

.videos-yt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(59, 130, 246, .35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.videos-yt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(59, 130, 246, .03));
  opacity: 0;
  transition: opacity .4s
}

.videos-yt-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), #93C5FD);
  transition: width .4s cubic-bezier(.16, 1, .3, 1)
}

.videos-yt-cta:hover {
  border-color: rgba(59, 130, 246, .7);
  color: #93C5FD;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, .12)
}

.videos-yt-cta:hover::before {
  opacity: 1
}

.videos-yt-cta:hover::after {
  width: 100%
}

.videos-yt-cta svg {
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.videos-yt-cta:hover svg {
  transform: translateX(4px)
}

.videos-yt-cta .yt-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .3s
}

.videos-yt-cta:hover .yt-icon {
  opacity: 1
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, .06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite
}

@keyframes ctaGlow {

  0%,
  100% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15)
  }
}

.cta-section .section-desc {
  margin: 0 auto 40px
}

.cta-section .section-divider {
  margin: 20px auto 30px
}

.cta-section .hero-cta-blue {
  font-size: 1.05rem;
  padding: 20px 48px;
  margin-bottom: 8px
}

/* ===== FOOTER ===== */
.footer {
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
  border-top: none;
  background: linear-gradient(180deg, var(--black) 0%, rgba(17, 24, 39, .5) 100%)
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(59, 130, 246, .4) 30%, rgba(59, 130, 246, .6) 50%, rgba(59, 130, 246, .4) 70%, transparent 95%)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  margin-bottom: 12px
}

.footer-brand p {
  font-size: .88rem;
  color: var(--grey);
  max-width: 320px;
  line-height: 1.7
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, .08);
  border: 1px solid rgba(59, 130, 246, .18);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: .3px
}

.footer-trust-badge svg {
  color: #3B82F6;
  flex-shrink: 0
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 10px
}

.footer-col a {
  font-size: .88rem;
  color: var(--grey);
  transition: color .3s, transform .3s, padding-left .3s;
  display: inline-block
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px)
}

/* -- Newsletter -- */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.newsletter-content h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white)
}

.newsletter-content p {
  font-size: .85rem;
  color: var(--grey);
  max-width: 380px;
  line-height: 1.6
}

.newsletter-form {
  flex-shrink: 0
}

.newsletter-input-wrap {
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, .2);
  transition: border-color .3s, box-shadow .3s
}

.newsletter-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(59, 130, 246, .1)
}

.newsletter-input-wrap input {
  background: rgba(255, 255, 255, .04);
  border: none;
  color: var(--white);
  padding: 14px 18px;
  font-size: .9rem;
  font-family: var(--font-body);
  width: 260px;
  outline: none
}

.newsletter-input-wrap input::placeholder {
  color: rgba(156, 163, 175, .5)
}

.newsletter-input-wrap button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .85rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap
}

.newsletter-input-wrap button:hover {
  filter: brightness(1.15)
}

.newsletter-input-wrap button:disabled {
  opacity: .6;
  cursor: not-allowed
}

.newsletter-status {
  margin-top: 8px;
  font-size: .8rem;
  min-height: 20px;
  transition: all .3s
}

.newsletter-status.success {
  color: #34d399
}

.newsletter-status.error {
  color: #f87171
}

.newsletter-status.success,
.newsletter-status.error {
  animation: statusFadeIn .4s ease
}

@keyframes statusFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(156, 163, 175, .4);
  letter-spacing: .3px
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent)
}

.footer-regions li {
  font-size: .85rem;
  color: rgba(156, 163, 175, .7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  transition: color .3s
}

.footer-regions li:last-child {
  border-bottom: none
}

.footer-regions li:hover {
  color: var(--white)
}

/* ===== REMOVE OLD REVEAL (replaced by data-animate) ===== */
.reveal {
  opacity: 1;
  transform: none
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ===== TRUST-BUILDING ANIMATIONS ===== */

/* Subtle section entrance */
@keyframes trustFadeUp {
  from { opacity: 0; transform: translateY(30px) }
  to { opacity: 1; transform: translateY(0) }
}

/* Gradient shimmer for headings */
@keyframes gradientShimmer {
  0% { background-position: -200% center }
  100% { background-position: 200% center }
}

/* Soft pulse for trust indicators */
@keyframes trustPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, .15) }
  50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0) }
}

/* Subtle breathing glow for cards */
@keyframes cardBreathe {
  0%, 100% { border-color: rgba(255, 255, 255, .06) }
  50% { border-color: rgba(59, 130, 246, .12) }
}

/* Check mark draw animation */
@keyframes checkDraw {
  from { stroke-dashoffset: 24 }
  to { stroke-dashoffset: 0 }
}

/* Counter reveal */
@keyframes counterReveal {
  from { opacity: 0; transform: scale(0.8) }
  to { opacity: 1; transform: scale(1) }
}

/* Apply trust animations to elements */
.comp-col.success {
  animation: cardBreathe 4s ease-in-out infinite
}

.flow-num {
  animation: trustPulse 3s ease-in-out infinite
}

.service-card,
.pas-glass-card {
  animation: cardBreathe 5s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.5s)
}

.section-title .highlight,
.hero h1 .highlight {
  background-size: 200% auto;
  animation: gradientShimmer 4s linear infinite
}

/* Smooth hover transitions for all interactive elements */
.service-card,
.pas-glass-card,
.pas-kpi,
.comp-col,
.video-card,
.speed-list li,
.comp-item,
.footer-col a {
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

/* ===== PATIENT ACQUISITION SYSTEM (PAS) — REDESIGN ===== */

/* 3D Carousel Animations */
@keyframes autoRun3d {
  from { transform: perspective(1000px) rotateX(-6deg) rotateY(-360deg); }
  to { transform: perspective(1000px) rotateX(-6deg) rotateY(0deg); }
}

@keyframes animateBrightness {
  10% { filter: brightness(1); }
  50% { filter: brightness(0.4); }
  90% { filter: brightness(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 128, 255, 0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(47, 128, 255, 0.15); }
}

@keyframes dashFillIn {
  from { width: 0; }
}

.pas {
  position: relative;
  padding: 140px 0 120px;
  background: radial-gradient(1200px circle at 50% 200px, rgba(47, 128, 255, 0.04), transparent 80%);
  overflow: hidden;
}

.pas-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}
.pas-bg-orb--1 {
  top: 5%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: #2F80FF;
}
.pas-bg-orb--2 {
  bottom: 15%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: #8B5CF6;
}
.pas-bg-orb--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: #2F80FF;
  opacity: 0.05;
}

.pas .container {
  position: relative;
  z-index: 2;
}

/* Header */
.pas-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 72px;
}

.pas-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2F80FF;
  background: rgba(47, 128, 255, 0.08);
  border: 1px solid rgba(47, 128, 255, 0.15);
  border-radius: 100px;
  margin-bottom: 24px;
}

.pas-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.pas-title-highlight {
  color: var(--gold);
}

.pas-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--grey);
  line-height: 1.7;
}

/* KPI Row */
.pas-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.pas-kpi {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pas-kpi:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 255, 0.2);
  box-shadow: 0 20px 50px rgba(47, 128, 255, 0.12);
}

.pas-kpi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(47, 128, 255, 0.08);
  color: #2F80FF;
  margin-bottom: 8px;
}

.pas-kpi-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pas-kpi-label {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* 3D Carousel */
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 140px;
  padding: 40px 0;
  position: relative;
}

.carousel-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 90px;
  text-align: center;
}

.card-3d {
  position: relative;
  width: 750px;
  height: 420px;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun3d 50s linear infinite;
  will-change: transform;
  --tz: 380px;
}

.card-3d > div {
  position: absolute;
  width: 220px;
  height: 310px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.97) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotateY(var(--ry)) translateZ(var(--tz)) scale(var(--s, 1));
  animation: animateBrightness 50s linear infinite;
  animation-delay: var(--delay);
  transition: all 300ms ease;
  will-change: transform, filter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card-3d:hover {
  animation-play-state: paused !important;
}

.card-3d:hover > div {
  animation-play-state: paused !important;
}

.card-3d > div:hover {
  --s: 1.08;
  border-color: rgba(47, 128, 255, 0.5);
  box-shadow: 0 12px 50px rgba(47, 128, 255, 0.25);
  z-index: 10;
}

/* Step number */
.c3d-step {
  font-size: 0.55rem;
  font-weight: 800;
  color: #2F80FF;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(47, 128, 255, 0.1);
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid rgba(47, 128, 255, 0.15);
}

.c3d-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.c3d-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.c3d-sub {
  font-size: 0.65rem;
  color: var(--grey);
  text-align: center;
  line-height: 1.4;
  padding: 0 4px;
}

/* Metric widget inside card */
.c3d-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-top: 4px;
}

.c3d-metric span {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey);
  font-weight: 600;
}

.c3d-metric strong {
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 10 cards at 36° apart, radius 380px */
.card-3d > div:nth-child(1)  { --ry: 0deg;   --delay: 0s; }
.card-3d > div:nth-child(2)  { --ry: 36deg;  --delay: -5s; }
.card-3d > div:nth-child(3)  { --ry: 72deg;  --delay: -10s; }
.card-3d > div:nth-child(4)  { --ry: 108deg; --delay: -15s; }
.card-3d > div:nth-child(5)  { --ry: 144deg; --delay: -20s; }
.card-3d > div:nth-child(6)  { --ry: 180deg; --delay: -25s; }
.card-3d > div:nth-child(7)  { --ry: 216deg; --delay: -30s; }
.card-3d > div:nth-child(8)  { --ry: 252deg; --delay: -35s; }
.card-3d > div:nth-child(9)  { --ry: 288deg; --delay: -40s; }
.card-3d > div:nth-child(10) { --ry: 324deg; --delay: -45s; }

/* ===== JOURNEY TIMELINE ===== */
.journey-timeline {
  position: relative;
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.journey-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(47, 128, 255, 0.3) 10%, rgba(139, 92, 246, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

/* Journey Step */
.journey-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-right: calc(50% + 40px);
}

.journey-step--right {
  padding-right: 0;
  padding-left: calc(50% + 40px);
  flex-direction: row-reverse;
}

.journey-dot {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F80FF 0%, #8B5CF6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(47, 128, 255, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

.journey-dot span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.journey-dot--result {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #10B981 0%, #2F80FF 100%);
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.3);
}

.journey-dot--result svg {
  color: var(--white);
}

/* Journey Card */
.journey-card {
  flex: 1;
}

.journey-card-inner {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card-inner:hover {
  border-color: rgba(47, 128, 255, 0.2);
  box-shadow: 0 20px 60px rgba(47, 128, 255, 0.08);
  transform: translateY(-4px);
}

.journey-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.journey-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-card-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.journey-benefit {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Dashboard-style metrics */
.journey-dash {
  display: grid;
  gap: 12px;
}

.dash-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  align-items: center;
}

.dash-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 600;
}

.dash-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

.dash-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  overflow: hidden;
}

.dash-fill {
  height: 100%;
  border-radius: 100px;
  animation: dashFillIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Journey Result */
.journey-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.journey-result-card {
  margin-top: 24px;
  text-align: center;
  max-width: 600px;
  background: linear-gradient(135deg, rgba(47, 128, 255, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(47, 128, 255, 0.15);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(47, 128, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-result-card:hover {
  transform: scale(1.02);
  border-color: rgba(47, 128, 255, 0.3);
  box-shadow: 0 25px 70px rgba(47, 128, 255, 0.18);
}

.journey-result-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.journey-result-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 28px;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}

.rm-val {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rm-label {
  font-size: 0.68rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== COMPARISON ===== */
.pas-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

.pas-compare-card {
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pas-compare--old {
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.6) 0%, rgba(15, 15, 20, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pas-compare--new {
  background: linear-gradient(135deg, rgba(47, 128, 255, 0.08) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(47, 128, 255, 0.15);
  box-shadow: 0 12px 40px rgba(47, 128, 255, 0.08);
}

.pas-compare--new:hover {
  border-color: rgba(47, 128, 255, 0.3);
  box-shadow: 0 20px 60px rgba(47, 128, 255, 0.15);
  transform: translateY(-4px);
}

.compare-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
}

.compare-badge--old {
  color: #64748b;
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.15);
}

.compare-badge--new {
  color: #2F80FF;
  background: rgba(47, 128, 255, 0.1);
  border: 1px solid rgba(47, 128, 255, 0.2);
}

.pas-compare-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.pas-compare--old h3 {
  color: #64748b;
}

.pas-compare-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pas-compare-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.4;
}

.compare-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  font-size: 0.75rem;
  font-weight: 700;
}

.compare-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 700;
}

.pas-compare--new li {
  color: var(--white);
}

/* Section CTA */
.pas-section-cta {
  text-align: center;
}

.pas-section-cta .hero-cta-blue {
  width: auto;
  display: inline-flex;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (max 1024px) --- */
@media(max-width:1024px) {

  .hero .container,
  .problem .container,
  .speed .container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    order: -1
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px
  }

  .hero-sub {
    max-width: 100%
  }

  .hero-visual img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px
  }

  .problem-visual img {
    max-height: 380px;
    object-fit: cover;
    object-position: center;
    width: 100%
  }

  .speed-visual img {
    max-height: 380px;
    object-fit: contain;
    width: 100%
  }

  .float-card {
    display: none
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .comparison .container {
    grid-template-columns: 1fr
  }

  .comp-col {
    padding: 32px 28px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .pas-kpi-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .carousel-wrapper {
    margin-top: 40px;
    margin-bottom: 100px;
    padding: 20px 0;
  }

  .carousel-label {
    margin-bottom: 70px;
  }

  .card-3d {
    width: 580px;
    height: 340px;
    --tz: 280px;
  }

  .card-3d > div {
    width: 160px;
    height: 230px;
    padding: 18px 10px;
    gap: 8px;
  }

  .c3d-step { font-size: 0.5rem; padding: 2px 8px; }
  .c3d-icon { width: 36px; height: 36px; }
  .c3d-icon svg { width: 20px; height: 20px; }
  .c3d-title { font-size: 0.75rem; }
  .c3d-sub { font-size: 0.58rem; }
  .c3d-metric { padding: 6px 10px; }
  .c3d-metric span { font-size: 0.5rem; }
  .c3d-metric strong { font-size: 0.75rem; }

  .journey-timeline {
    padding: 40px 0;
  }

  .pas-compare {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .videos-grid {
    grid-template-columns: 1fr
  }

  .video-info {
    padding: 24px
  }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 24px
  }

  .newsletter-content p {
    margin: 0 auto
  }

  .cta-section .hero-cta-blue {
    padding: 18px 36px
  }
}

/* --- Mobile (max 768px) --- */
@media(max-width:768px) {
  section {
    padding: 60px 0
  }

  .problem {
    padding: 48px 0 0
  }

  .container {
    padding: 0 20px
  }

  /* Navbar */
  .navbar {
    padding: 12px 0
  }

  .navbar.scrolled {
    padding: 10px 0
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(17, 24, 39, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    gap: 20px;
    transition: right .4s cubic-bezier(.16, 1, .3, 1);
    border-left: 1px solid rgba(59, 130, 246, .1);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .5)
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
    color: var(--grey)
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    padding: 14px 24px
  }

  .hamburger {
    display: flex;
    z-index: 1001
  }

  .nav-logo-img {
    width: 48px;
    height: 48px
  }

  .nav-logo {
    font-size: 1.1rem
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 90px 0 48px
  }

  .hero .container {
    gap: 32px
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 16px
  }

  .hero-sub {
    font-size: .95rem;
    margin-bottom: 24px;
    line-height: 1.6
  }

  .hero-cta-blue {
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-radius: 12px
  }

  .cta-blue-main {
    font-size: .9rem;
    gap: 8px;
    justify-content: center
  }

  .cta-blue-main svg {
    width: 18px;
    height: 18px
  }

  .cta-blue-sub {
    font-size: .7rem
  }

  .float-card {
    display: none
  }

  .hero-visual img {
    border-radius: 12px;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    width: 100%
  }

  /* Problem */
  .problem .container {
    gap: 32px
  }

  .problem-visual img {
    max-height: 280px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 12px
  }

  .problem-text .section-desc {
    margin-bottom: 16px
  }

  .teaser-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 14px 20px
  }

  /* Speed */
  .speed .container {
    gap: 32px
  }

  .speed-visual img {
    max-height: 280px;
    object-fit: contain;
    width: 100%;
    border-radius: 12px
  }

  .speed-list li {
    font-size: .9rem;
    padding: 10px 0
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    padding: 0
  }

  .card-img-wrap {
    height: 160px
  }

  .card-body {
    padding: 20px 22px 24px
  }

  .services .header {
    margin-bottom: 40px
  }

  /* Framework / Our Process */
  .flow-container {
    flex-direction: column;
    gap: 0;
    align-items: center
  }

  .flow-step {
    padding: 14px 12px;
    min-width: unset;
    width: 100%
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin-top: 0 !important;
    align-self: center !important;
    font-size: 1.2rem
  }

  .flow-num {
    width: 44px;
    height: 44px;
    font-size: .85rem
  }

  .framework .header {
    margin-bottom: 40px
  }

  /* Comparison */
  .comparison .container {
    gap: 20px
  }

  .comp-col {
    padding: 28px 22px
  }

  .comp-col h3 {
    font-size: 1.05rem;
    margin-bottom: 20px
  }

  .comp-item {
    font-size: .88rem;
    padding: 10px 0
  }

  /* Videos */
  .videos .header {
    margin-bottom: 40px
  }

  .videos-grid {
    gap: 24px
  }

  .video-info {
    padding: 20px
  }

  .video-info h3 {
    font-size: 1.05rem
  }

  .video-info p {
    font-size: .88rem
  }

  .videos-yt-cta {
    padding: 12px 24px;
    font-size: .85rem;
    width: 100%;
    justify-content: center
  }

  .videos-cta-wrap {
    margin-top: 32px
  }

  /* CTA */
  .cta-section {
    padding: 60px 0
  }

  .cta-section .hero-cta-blue {
    padding: 16px 28px;
    width: 100%
  }

  .cta-section .section-desc {
    font-size: .9rem;
    margin-bottom: 32px
  }

  .calendly-embed {
    margin-top: 32px
  }

  .calendly-inline-widget {
    min-height: 500px !important
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-brand p {
    max-width: 100%
  }

  .footer-brand .nav-logo {
    font-size: 1.15rem;
    margin-bottom: 8px
  }

  .footer-logo-img {
    width: 48px;
    height: 48px
  }

  .footer-col h4 {
    margin-bottom: 12px
  }

  .footer-col li {
    margin-bottom: 6px
  }

  .footer-col a {
    font-size: .88rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 16px
  }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 0;
    margin-top: 24px
  }

  .newsletter-content p {
    margin: 0 auto;
    max-width: 100%
  }

  .newsletter-form {
    width: 100%
  }

  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: 10px;
    width: 100%
  }

  .newsletter-input-wrap input {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px 10px 0 0;
    padding: 14px 16px
  }

  .newsletter-input-wrap button {
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 14px 16px
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem)
  }

  .section-desc {
    font-size: .9rem
  }

  .section-divider {
    margin: 16px 0 24px
  }

  /* Utilities */
  .glow-cursor {
    display: none
  }

  .hero-gradient-canvas {
    display: none
  }

  /* Disable hover transforms on touch */
  .comp-item:hover,
  .speed-list li:hover {
    transform: none
  }

  /* Hero secondary CTA button fix */
  .hero-content > div[style] a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important
  }

  .pas {
    padding: 80px 0;
  }

  /* Mobile: switch journey timeline to single column */
  .journey-timeline {
    padding: 20px 0;
    margin-bottom: 40px;
  }

  .journey-line {
    left: 20px;
  }

  .journey-step {
    padding-right: 0;
    padding-left: 52px;
    margin-bottom: 24px;
  }

  .journey-step--right {
    padding-left: 52px;
    padding-right: 0;
    flex-direction: row;
  }

  .journey-dot {
    left: 20px;
    width: 32px;
    height: 32px;
    top: 12px;
  }

  .journey-dot span {
    font-size: 0.55rem;
  }

  .journey-dot--result {
    width: 40px;
    height: 40px;
  }

  .journey-card-inner {
    padding: 20px;
    border-radius: 16px;
  }

  .journey-card-header h4 {
    font-size: 0.95rem;
  }

  .journey-benefit {
    font-size: 0.78rem;
  }

  .journey-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }

  .journey-icon svg {
    width: 18px;
    height: 18px;
  }

  .journey-result-card {
    padding: 28px 20px;
  }

  .journey-result-card h3 {
    font-size: 1.3rem;
  }

  .result-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-metric {
    padding: 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Carousel mobile */
  .carousel-wrapper {
    margin-top: 30px;
    margin-bottom: 80px;
    padding: 15px 0;
  }

  .carousel-label {
    margin-bottom: 60px;
  }

  .card-3d {
    width: 320px;
    height: 260px;
    --tz: 170px;
  }

  .card-3d > div {
    width: 125px;
    height: 185px;
    padding: 14px 10px;
    gap: 6px;
  }

  .c3d-step { font-size: 0.45rem; padding: 1px 6px; }
  .c3d-icon { width: 30px; height: 30px; }
  .c3d-icon svg { width: 16px; height: 16px; }
  .c3d-title { font-size: 0.65rem; }
  .c3d-sub { font-size: 0.52rem; }
  .c3d-metric { padding: 5px 8px; }
  .c3d-metric span { font-size: 0.45rem; }
  .c3d-metric strong { font-size: 0.65rem; }

  /* Comparison mobile */
  .pas-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pas-compare-card {
    padding: 28px 20px;
  }

  .pas-compare-card h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
}

/* --- Small phone (max 480px) --- */
@media(max-width:480px) {
  section {
    padding: 44px 0
  }

  .problem {
    padding: 36px 0 0
  }

  .container {
    padding: 0 16px
  }

  .hero {
    padding: 80px 0 36px
  }

  .hero .container {
    gap: 24px
  }

  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.3
  }

  .hero h1 .highlight {
    font-size: 1em
  }

  .hero-sub {
    font-size: .88rem;
    line-height: 1.6
  }

  .hero-visual img {
    max-height: 240px;
    border-radius: 10px
  }

  .problem-visual img {
    max-height: 220px;
    border-radius: 10px
  }

  .speed-visual img {
    max-height: 240px
  }

  .cta-blue-main {
    font-size: .8rem;
    letter-spacing: .3px
  }

  .cta-blue-main svg {
    width: 16px;
    height: 16px
  }

  .cta-blue-sub {
    font-size: .62rem
  }

  .hero-cta-blue {
    padding: 14px 16px;
    border-radius: 10px
  }

  .section-title {
    font-size: 1.25rem
  }

  .section-tag {
    font-size: .65rem;
    padding: 5px 12px
  }

  .section-desc {
    font-size: .85rem;
    line-height: 1.7
  }

  .card-img-wrap {
    height: 140px
  }

  .card-body {
    padding: 18px 18px 22px
  }

  .service-card h3 {
    font-size: 1rem
  }

  .service-card p {
    font-size: .82rem
  }

  .flow-num {
    width: 40px;
    height: 40px;
    font-size: .8rem
  }

  .flow-step h4 {
    font-size: .85rem
  }

  .comp-col {
    padding: 22px 18px
  }

  .comp-col h3 {
    font-size: 1rem;
    margin-bottom: 16px
  }

  .comp-item {
    font-size: .82rem;
    padding: 8px 0;
    gap: 10px
  }

  .speed-list li {
    font-size: .85rem;
    padding: 8px 0
  }

  .video-info {
    padding: 16px
  }

  .video-info h3 {
    font-size: .95rem
  }

  .video-info p {
    font-size: .82rem
  }

  .videos-grid {
    gap: 16px
  }

  .footer-col h4 {
    font-size: .72rem
  }

  .footer-col a {
    font-size: .82rem
  }

  .footer-col li {
    margin-bottom: 5px
  }

  .footer-brand .nav-logo {
    font-size: 1.05rem
  }

  .nav-logo-img {
    width: 44px;
    height: 44px
  }

  .footer-logo-img {
    width: 40px;
    height: 40px
  }

  .newsletter-content h4 {
    font-size: .95rem
  }

  .newsletter-content p {
    font-size: .78rem
  }

  .cta-section .section-desc {
    font-size: .85rem
  }

  .cta-section .hero-cta-blue {
    padding: 14px 20px
  }

  .teaser-btn {
    font-size: 13px;
    padding: 12px 18px
  }

  .calendly-inline-widget {
    min-height: 450px !important
  }

  /* Comparison mobile spacing */
  .comparison .container {
    gap: 16px
  }

  .comparison .header {
    margin-bottom: 16px
  }

  /* PAS mobile overrides */
  .pas {
    padding: 60px 0;
  }

  .pas-kpi-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
  }

  .pas-kpi {
    padding: 16px 12px;
  }

  .pas-kpi-val {
    font-size: 1.6rem;
  }

  .pas-kpi-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .pas-kpi-icon svg {
    width: 16px;
    height: 16px;
  }

  .pas-badge {
    font-size: 0.6rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .pas-title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .pas-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .carousel-wrapper {
    margin-bottom: 40px;
  }

  .carousel-label {
    font-size: 0.65rem;
    margin-bottom: 32px;
  }

  .journey-step {
    padding-left: 44px;
    margin-bottom: 18px;
  }

  .journey-step--right {
    padding-left: 44px;
  }

  .journey-dot {
    left: 14px;
    width: 28px;
    height: 28px;
  }

  .journey-dot--result {
    width: 36px;
    height: 36px;
    left: 14px;
  }

  .journey-line {
    left: 14px;
  }

  .journey-card-inner {
    padding: 16px;
  }

  .journey-card-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .dash-label {
    font-size: 0.6rem;
  }

  .dash-value {
    font-size: 0.72rem;
  }

  .pas-compare-card li {
    font-size: 0.82rem;
    gap: 8px;
  }

  .compare-x, .compare-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 0.65rem;
  }
}