/* ===== 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: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  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(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  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
}

.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
}

.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
}

.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)
}

/* ===== 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: 40px 32px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  cursor: default
}

.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: 10px
}

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

/* ===== 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: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

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

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

.footer-brand p {
  font-size: .85rem;
  color: var(--grey);
  max-width: 280px;
  line-height: 1.6
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px
}

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

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

.footer-col a {
  font-size: .9rem;
  color: var(--grey);
  transition: color .3s, transform .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: .8rem;
  color: rgba(156, 163, 175, .5)
}

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

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

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

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

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

  .hero-visual {
    order: -1
  }

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

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

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

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

  .speed-visual img {
    max-height: 400px;
    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
  }

  .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
  }

  .speed .container {
    gap: 48px
  }

  .problem .container {
    gap: 48px
  }

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

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

  .problem {
    padding: 56px 0
  }

  .container {
    padding: 0 16px
  }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: right .4s cubic-bezier(.16, 1, .3, 1);
    border-left: 1px solid rgba(255, 255, 255, .06)
  }

  .nav-links.open {
    right: 0
  }

  .hamburger {
    display: flex
  }

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

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

  .hero h1 {
    font-size: 1.75rem
  }

  .hero-sub {
    font-size: .9rem;
    margin-bottom: 24px
  }

  .hero-cta-blue {
    padding: 14px 20px;
    width: 100%;
    text-align: center
  }

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

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

  .float-card {
    display: none
  }

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

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

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

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

  .problem-visual img {
    border-radius: 12px
  }

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

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

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

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

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

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

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

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

  /* Comparison */
  .comp-col {
    padding: 28px 20px
  }

  .comp-col h3 {
    font-size: 1.05rem
  }

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

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

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

  .speed-visual img {
    border-radius: 12px
  }

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

  .video-info {
    padding: 20px
  }

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

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

  .videos-yt-cta {
    padding: 12px 24px;
    font-size: .85rem
  }

  /* CTA */
  .cta-section .hero-cta-blue {
    padding: 16px 24px;
    width: 100%
  }

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

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

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }

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

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

  .newsletter-input-wrap input {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

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

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

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

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

  .hero-gradient-canvas {
    display: none
  }
}

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

  .problem {
    padding: 40px 0
  }

  .container {
    padding: 0 12px
  }

  .hero {
    padding: 72px 0 32px
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.25
  }

  .hero-sub {
    font-size: .85rem
  }

  .hero-visual img {
    max-height: 300px
  }

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

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

  .cta-blue-main {
    font-size: .75rem;
    letter-spacing: .2px
  }

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

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

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

  .section-tag {
    font-size: .65rem;
    padding: 6px 14px
  }

  .service-card {
    padding: 24px 18px
  }

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

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

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

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

  .comp-col {
    padding: 24px 16px
  }

  .comp-col h3 {
    font-size: .95rem
  }

  .comp-item {
    font-size: .8rem
  }

  .speed-list li {
    font-size: .85rem
  }

  .video-info {
    padding: 16px
  }

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

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

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

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

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

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

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

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

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