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

:root {
  --blue: #2D6EF5;
  --blue-dark: #1440C4;
  --black: #1E293B;
  --white: #FFFFFF;
  --gray-light: #F5F3EE;
  --gray-muted: #6B7280;
  --green-live: #4ADE80;
  --gold: #FBBF24;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #334155;
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

body.menu-open { overflow: hidden; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#loader-icon { opacity: 0; animation: fadeIn 0.3s ease forwards; }
#loader-icon i { color: var(--blue); }
#loader-letters {
  display: flex; gap: 0.05em;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--black);
}
#loader-letters span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(90deg);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#loader-letters .logo-studio span {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#loader-letters .logo-dot {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
#loader-bar-wrap {
  width: 200px; height: 2px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
}
#loader-bar {
  height: 100%; width: 0;
  background: var(--blue);
  border-radius: 2px;
  transition: width 1.8s linear;
}
#loader-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-muted);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#loader.exit {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#site-content { opacity: 0; transition: opacity 0.6s ease; }
#site-content.visible { opacity: 1; }

@keyframes fadeIn { to { opacity: 1; } }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transform: translateY(-100%);
  transition: background 0.3s, box-shadow 0.3s, transform 0.5s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
#nav.visible { transform: translateY(0); }

.logo-studio {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-dot {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.1em;
  color: white;
}
.nav-logo span { color: white; }
.nav-logo .dot { color: white; margin: 0 0.15em; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: white; opacity: 1; }

.nav-cta {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(139,92,246,0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,92,246,0.5);
}
.nav-cta i { stroke: white; }

/* Nav transparent (over hero) — force logo to white */
#nav:not(.scrolled) .nav-logo .logo-studio {
  background: white !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
#nav:not(.scrolled) .nav-logo .logo-dot {
  background: white !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* When scrolled: flip to dark-on-white */
#nav.scrolled .nav-logo { color: #1E293B; }
#nav.scrolled .nav-logo .logo-studio {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
#nav.scrolled .nav-logo .logo-dot {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
#nav.scrolled .nav-links a { color: var(--black); opacity: 1; }
#nav.scrolled .nav-links a:hover { color: var(--blue); }
#nav.scrolled .nav-cta { background: linear-gradient(135deg, #2D6EF5, #8B5CF6); color: white; }
#nav.scrolled .nav-cta i { stroke: white; }
#nav.scrolled .nav-hamburger i { stroke: var(--black) !important; }

.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}

#mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #0D1A3E 100%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem 3rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: white; }
#mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
}
.mobile-menu-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #1E293B;
  margin-bottom: 2rem;
  text-align: center;
}
.mobile-menu-footer {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── HERO / QUIZ ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(70px + 1.5rem) 2rem 4rem;
}

/* Hero intro */
.hero-intro {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards 0.1s;
}
.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroHeadIn 0.5s ease forwards 0.3s;
}
.hero-subtext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards 0.5s;
}
@keyframes heroHeadIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Quiz wrap fade-in delay */
.quiz-wrap {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.7s;
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 63% 37%;
  gap: 2rem;
  align-items: start;
}

/* Quiz */
.quiz-wrap {
  position: relative;
}

.wave-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding: 0 0.25rem;
}
.wave-progress-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.wave-progress-fill {
  height: 100%;
  width: 20%;
  border-radius: 99px;
  position: relative;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg, #2D6EF5, #8B5CF6);
}
.wave-progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  width: 12px;
  height: 100%;
  background: inherit;
  border-radius: 0 99px 99px 0;
  box-shadow: 2px 0 8px rgba(139,92,246,0.6);
}
.wave-progress-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  animation: shimmerWave 2.5s ease-in-out infinite;
  border-radius: 99px;
}
@keyframes waveFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmerWave {
  0% { left: -100%; }
  100% { left: 200%; }
}
.step-counter {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}

/* Quiz step visibility — simple and reliable */
.step { display: none; }
.step.active { display: block; }

.quiz-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: white;
  margin-bottom: 0.4rem;
}
.quiz-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.quiz-back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.75rem;
  display: block;
  transition: color 0.2s;
}
.quiz-back:hover { color: white; }

/* Option grid */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
}
.quiz-opt {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  color: white;
  padding: 1.5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  user-select: none;
  transition: border-color 0.2s, transform 0.2s, background 0.15s, color 0.15s, box-shadow 0.2s;
}
.quiz-opt:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px) scale(1.02);
}
.quiz-opt.selected {
  background: rgba(255,255,255,0.95);
  border-color: white;
  color: #2D6EF5;
}
.quiz-opt-label {
  color: white;
  font-weight: 700;
}
.quiz-opt.selected .quiz-opt-label {
  color: #2D6EF5;
}
.quiz-opt-emoji {
  font-size: 2rem;
  line-height: 1;
}

/* Step 4 inputs */
.quiz-form { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1E293B;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quiz-input::placeholder { color: #9CA3AF; }
.quiz-input:focus {
  border-color: #2D6EF5;
  box-shadow: 0 0 0 3px rgba(45,110,245,0.15);
}
.quiz-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.25rem;
  box-shadow: 0 8px 28px rgba(139,92,246,0.35);
}
.quiz-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,92,246,0.5);
}
.quiz-microcopy {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

/* Quiz Success */
#quiz-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: fadeInUp 0.5s ease forwards;
}
.success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: white;
}
#quiz-success h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: white;
  margin-bottom: 0.5rem;
}
#quiz-success p {
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
}
.bounce-arrow {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: white;
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Side Panel */
/* ── SIDE PANEL — Social Proof Cards ── */
.hero-side {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  opacity: 0;
  transform: translateX(30px);
  animation: spCardIn 0.5s ease forwards;
}
.sp-card:nth-child(1) { animation-delay: 0.2s; }
.sp-card:nth-child(2) { animation-delay: 0.4s; }
.sp-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes spCardIn {
  to { opacity: 1; transform: translateX(0); }
}

/* Card 1 — Counter */
.sp-card-1 { padding: 1.25rem 1.5rem; }
.sp-c1-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}
.sp-big-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #2D6EF5;
  line-height: 1;
}
.sp-counter-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 2px;
}
.sp-avatars { display: flex; align-items: center; }
.sp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}
.sp-avatar:not(:first-child) { margin-left: -10px; }
.sp-av-1 { background: #2D6EF5; }
.sp-av-2 { background: #1440C4; }
.sp-av-3 { background: #4F8EF7; }
.sp-c1-footer {
  display: flex; align-items: center; gap: 6px;
  padding-top: 0.75rem;
  border-top: 1px solid #F0F0F0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #6B7280;
}
.sp-green-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

/* Card 2 — Win notification */
.sp-card-2 {
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
}
.sp-win-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2D6EF5;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.sp-win-body { flex: 1; min-width: 0; }
.sp-win-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1E293B;
}
.sp-win-biz {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #6B7280;
  margin: 2px 0;
}
.sp-win-result {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #2D6EF5;
}
.sp-win-time {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #6B7280;
  flex-shrink: 0;
}

/* Card 3 — Stats */
.sp-card-3 { padding: 1.25rem 1.5rem; }
.sp-stats-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.sp-stat-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 0.55rem;
}
.sp-stat-row:last-child { margin-bottom: 0; }
.sp-stat-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: #1E293B;
  width: 110px;
  flex-shrink: 0;
}
.sp-stat-bar-wrap {
  flex: 1;
  height: 6px;
  background: #F0F0F0;
  border-radius: 99px;
  overflow: hidden;
}
.sp-stat-bar {
  height: 100%;
  background: #2D6EF5;
  border-radius: 99px;
  width: 0;
  transition: width 1.2s ease;
}
.sp-stat-val {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #2D6EF5;
  flex-shrink: 0;
  width: 42px;
  text-align: right;
}

/* ── STATS BAR ── */
#stats-bar {
  background: linear-gradient(135deg, #2D6EF5 0%, #1440C4 100%);
  padding: 0 0 5rem;
  margin: 0;
  position: relative;
  overflow: hidden;
}
#statsCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-top: 1.2rem;
}
.stat-block {
  padding: 0.75rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: white;
  line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-block {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .stat-block:nth-child(1),
  .stat-block:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) {
    border-bottom: none;
  }
}

/* ── SHARED SECTION STYLES ── */
.section-badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
}

/* Animate on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-rotateY {
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-rotateY.in-view {
  opacity: 1;
  transform: rotateY(0deg);
}
.anim-rotateX {
  opacity: 0;
  transform: translateY(-30px) rotateX(20deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-rotateX.in-view {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* ── SERVICES ── */
#services {
  padding: 6rem 2rem 2.5rem;
  background: var(--white);
  position: relative;
  overflow: visible;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
  align-items: stretch;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-left 0.2s;
  border-left: 3px solid transparent;
}
.service-card:hover { border-left: 3px solid var(--blue); }
.service-card .card-number {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #F0EFEC;
  line-height: 1;
  pointer-events: none;
}
.service-card .card-icon { margin-bottom: 1rem; }
.service-card .card-icon i { stroke: var(--blue); }
.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.6;
}
.card-arrow {
  position: absolute;
  bottom: 1.25rem; right: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.card-arrow i { stroke: var(--blue); }
.service-card:hover .card-arrow { opacity: 1; }

/* Glare overlay */
.card-glare {
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.service-card:hover .card-glare { opacity: 1; }

/* Service card variants */
.service-card.sc-blue {
  background: linear-gradient(135deg, #2D6EF5 0%, #1440C4 100%);
  box-shadow: 0 20px 60px rgba(45,110,245,0.35);
  border-left: none;
}
.service-card.sc-blue:hover { border-left: none; box-shadow: 0 28px 70px rgba(45,110,245,0.5); }
.service-card.sc-blue h3 { color: white; }
.service-card.sc-blue p { color: rgba(255,255,255,0.8); }
.service-card.sc-blue .card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card.sc-blue .card-icon i { stroke: white; }
.service-card.sc-blue .card-number { color: rgba(255,255,255,0.1); }
.service-card.sc-blue .card-arrow i { stroke: white; }

.service-card.sc-light {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  box-shadow: 0 20px 60px rgba(14,165,233,0.35);
  border-left: none;
}
.service-card.sc-light:hover { border-left: none; box-shadow: 0 28px 70px rgba(14,165,233,0.5); }
.service-card.sc-light h3 { color: white; }
.service-card.sc-light p { color: rgba(255,255,255,0.8); }
.service-card.sc-light .card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card.sc-light .card-icon i { stroke: white; }
.service-card.sc-light .card-number { color: rgba(255,255,255,0.08); }
.service-card.sc-light .card-arrow i { stroke: white; }

/* Mobile separator */
.mobile-sp-separator { display: none; }

.service-card.sc-soft {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  box-shadow: 0 20px 60px rgba(139,92,246,0.35);
  border: none;
  border-left: none;
}
.service-card.sc-soft:hover { border-left: none; box-shadow: 0 28px 70px rgba(139,92,246,0.5); }
.service-card.sc-soft h3 { color: white; }
.service-card.sc-soft p { color: rgba(255,255,255,0.8); }
.service-card.sc-soft .card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card.sc-soft .card-icon i { stroke: white; }
.service-card.sc-soft .card-number { color: rgba(255,255,255,0.08); }
.service-card.sc-soft .card-arrow i { stroke: white; }

/* ── PRICING ── */
/* ── SIMULATOR ── */
#simulator {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, #F8F9FF, #EEF3FF);
  position: relative;
  overflow: visible;
}
.simulator-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.simulator-inner .section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.simulator-sub {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-muted);
  margin-bottom: 2.5rem;
}
.sim-step-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  margin-bottom: 0.75rem;
  color: var(--black);
}
/* ── Step 1: Toggle selector ── */
.sim-toggle-wrap {
  background: #F8F9FF;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sim-toggle-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1E293B;
  margin-bottom: 1rem;
}
.sim-toggle-row {
  display: flex;
  gap: 0.75rem;
}
.sim-toggle-btn {
  flex: 1;
  padding: 1rem 0.5rem;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid #E5E7EB;
  background: white;
  text-align: center;
  transition: all 0.2s ease;
}
.sim-toggle-btn:hover:not(.active) {
  background: #F8F9FF;
  border-color: #CBD5E1;
}
.sim-toggle-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1E293B;
  margin-bottom: 4px;
}
.sim-toggle-pages {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 4px;
}
.sim-toggle-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6B7280;
}
.sim-toggle-btn[data-price="1200"].active { background: #EEF3FF; border-color: #2D6EF5; }
.sim-toggle-btn[data-price="1900"].active { background: #F0FDF4; border-color: #22C55E; }
.sim-toggle-btn[data-price="2900"].active { background: #F5F3FF; border-color: #8B5CF6; }
/* ── Step 2: Toggle rows ── */
.sim-addon-list {
  background: white;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  margin-bottom: 2rem;
}
.sim-addon-row {
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #F1F5F9;
  cursor: pointer;
  transition: background 0.15s ease;
}
.sim-addon-row:last-child { border-bottom: none; }
.sim-addon-row.active { background: #F8FAFF; }
.sim-addon-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sim-addon-row-text { flex: 1; }
.sim-addon-row-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1E293B;
}
.sim-addon-row-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #94A3B8;
}
.sim-addon-row-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.sim-addon-row-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.toggle {
  width: 36px;
  height: 20px;
  background: #E5E7EB;
  border-radius: 99px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.sim-addon-row.active .toggle { background: #2D6EF5; }
.sim-addon-row.active .toggle::after { left: 18px; }
/* ── Total box ── */
.sim-total-box {
  background: linear-gradient(135deg, #0D0D0D, #1a1a2e);
  transition: background 0.4s ease;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.sim-total-left { text-align: left; }
.sim-total-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.sim-total-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: white;
  line-height: 1;
  transition: transform 0.2s;
  display: inline-block;
}
.sim-total-price.bump { transform: scale(1.08); }
.sim-total-right { display: flex; flex-direction: column; gap: 10px; }
.sim-incl-row { display: flex; align-items: center; gap: 6px; }
.sim-incl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(45,110,245,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D6EF5;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.sim-incl-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.sim-cta-new {
  display: block;
  width: 100%;
  padding: 16px 32px;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 28px rgba(139,92,246,0.35);
  transition: all 0.25s ease;
}
.sim-cta-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,92,246,0.5);
}
.sim-features-box {
  background: white;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 0.15s ease;
}
.sim-features-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.sim-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem 1rem;
}
.sim-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.sim-feature-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: #1E293B;
}
.sim-reassurance {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: #94A3B8;
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

/* ── HOW IT WORKS ── */
#how {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, #F8F9FF 0%, #EEF3FF 100%);
  position: relative;
  overflow: visible;
}
.how-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.how-inner .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 3rem;
}
.how-timeline {
  position: relative;
  text-align: left;
}
.how-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2D6EF5, #22C55E, #F59E0B);
  z-index: 0;
}
.how-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.how-tl-item:last-child { margin-bottom: 0; }
.how-tl-item.in-view { opacity: 1; transform: translateX(0); }
.how-tl-circle {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 2;
  position: relative;
}
.how-tl-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.how-tl-card-top {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.how-tl-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 99px;
  padding: 3px 10px;
}
.how-tl-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1E293B;
  margin-left: 0.25rem;
}
.how-tl-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.6;
  margin-top: 0;
}

/* ── TESTIMONIALS ── */
#testimonial {
  padding: 6rem 2rem 5rem;
  background: white;
  position: relative;
  overflow: visible;
}
.testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial-header .section-title { font-size: clamp(1.8rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.testimonial-sub { font-family: 'DM Sans', sans-serif; color: var(--gray-muted); font-size: 1rem; }
.tp-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #F9FAFB;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tp-left { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.tp-brand { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: #00B67A; }
.tp-stars-big { color: #00B67A; font-size: 1.4rem; letter-spacing: 2px; }
.tp-excellent { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: #1E293B; }
.tp-count { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #6B7280; }
.tp-score { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.5rem; color: #1E293B; }
.reviews-carousel {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  position: relative;
}
.reviews-carousel::before,
.reviews-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: 80px;
  height: 100%;
  pointer-events: none;
}
.reviews-carousel::before { left: 0; background: linear-gradient(to right, white, transparent); }
.reviews-carousel::after  { right: 0; background: linear-gradient(to left, white, transparent); }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollReviews 35s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  width: 320px;
  flex-shrink: 0;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.review-top { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2D6EF5;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: #1E293B; }
.review-biz { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #6B7280; }
.review-stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 1px; flex-shrink: 0; }
.review-quote { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #374151; line-height: 1.6; font-style: italic; flex: 1; }
.review-footer { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: #9CA3AF; }
.review-tag { background: #F0F7FF; color: #2D6EF5; font-weight: 600; font-size: 0.75rem; padding: 3px 10px; border-radius: 99px; font-family: 'DM Sans', sans-serif; }

/* ── FAQ ── */
#faq {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, #F0F7FF 0%, #EEF3FF 100%);
  position: relative;
}
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 40% 60%; gap: 4rem; align-items: start; }
.faq-left { position: sticky; top: 7rem; }
.faq-pill {
  display: inline-block;
  background: #2D6EF5; color: white;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 9999px; margin-bottom: 1.25rem;
}
.faq-left-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.2rem); color: #1E293B;
  line-height: 1.2; margin-bottom: 1rem;
}
.faq-left-sub { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: #6B7280; line-height: 1.6; margin-bottom: 1.5rem; }
.faq-contact-card { background: white; border-radius: 16px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(45,110,245,0.1); }
.faq-contact-card h4 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: #1E293B; margin-bottom: 0.3rem; }
.faq-contact-card p { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #6B7280; margin-bottom: 1rem; }
.faq-contact-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6); color: white;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 10px 20px; border-radius: 9999px; text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(139,92,246,0.35);
}
.faq-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,246,0.5); }
.faq-items { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-bottom: none; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none;
  cursor: pointer; text-align: left; gap: 1rem;
  transition: background 0.2s, color 0.2s;
}
.faq-trigger h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: #1E293B; line-height: 1.4; transition: color 0.2s; }
.faq-icon { flex-shrink: 0; transition: transform 0.2s; }
.faq-icon i { stroke: var(--blue); transition: stroke 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-trigger { background: #2D6EF5; }
.faq-item.open .faq-trigger h3 { color: white; }
.faq-item.open .faq-icon i { stroke: white; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 1.25rem 1.5rem 1.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #374151; line-height: 1.7; border-top: 1px solid #F0F7FF; }

/* ── CTA SECTION ── */
#cta-section {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(135deg, #2D6EF5 0%, #1440C4 100%);
  overflow: visible;
  position: relative;
}
#ctaCanvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-badge-top {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.06em; padding: 8px 20px; border-radius: 9999px;
  margin-bottom: 1.5rem; opacity: 0;
}
.cta-headline {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1;
  color: white; margin-bottom: 1rem; opacity: 0; transform: translateY(30px);
}
.cta-subtext {
  font-family: 'DM Sans', sans-serif; font-size: 1.1rem;
  color: rgba(255,255,255,0.8); max-width: 500px;
  margin: 0 auto 2.5rem; line-height: 1.7; opacity: 0;
}
.cta-buttons {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
}
.cta-btn-primary {
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6); color: white;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 16px 36px; border-radius: 9999px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
  display: inline-flex; align-items: center;
  box-shadow: 0 8px 28px rgba(139,92,246,0.35);
}
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,246,0.5); }
.cta-btn-secondary {
  background: transparent; color: white;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.4); cursor: pointer;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
  display: inline-flex; align-items: center;
}
.cta-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.cta-trust-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cta-trust-point {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem;
  color: rgba(255,255,255,0.85); opacity: 0;
}
.cta-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: white; flex-shrink: 0;
}
.cta-inner.in-view .cta-badge-top { animation: fadeIn 0.5s ease forwards 0.1s; }
.cta-inner.in-view .cta-headline { animation: ctaSlideIn 0.6s ease forwards 0.3s; }
.cta-inner.in-view .cta-subtext { animation: fadeIn 0.5s ease forwards 0.5s; }
.cta-inner.in-view .cta-buttons { animation: ctaSlideIn 0.5s ease forwards 0.6s; }
.cta-inner.in-view .cta-trust-point:nth-child(1) { animation: fadeIn 0.5s ease forwards 0.8s; }
.cta-inner.in-view .cta-trust-point:nth-child(2) { animation: fadeIn 0.5s ease forwards 0.9s; }
.cta-inner.in-view .cta-trust-point:nth-child(3) { animation: fadeIn 0.5s ease forwards 1s; }
@keyframes ctaSlideIn { to { opacity: 1; transform: translateY(0); } }

/* ── CONTACT ── */
#contact {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(135deg, #0D0D0D 0%, #0D1A3E 40%, #1a0533 100%);
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#contactCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
/* Left column */
.contact-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.contact-left.contact-in { opacity: 1; transform: translateX(0); }
.contact-badge {
  display: inline-block;
  background: rgba(45,110,245,0.2);
  border: 1px solid rgba(45,110,245,0.4);
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.contact-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: white;
  margin: 1.25rem 0 1rem;
}
.contact-subtext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.contact-icon-box {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(45,110,245,0.15);
  border: 1px solid rgba(45,110,245,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}
.contact-icon-box.green {
  background: rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.3);
}
.contact-info-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
}
.contact-info-text.green { color: #4ADE80; }
.contact-trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.contact-trust-stars {
  font-size: 1rem;
  color: #FBBF24;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.contact-trust-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0.3rem;
}
.contact-trust-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
/* Right column — form */
.contact-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s; }
.contact-right.contact-in { opacity: 1; transform: translateX(0); }
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
}
.contact-form-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.25rem;
}
.contact-form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: white;
  outline: none;
  transition: all 0.2s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  background: rgba(45,110,245,0.08);
  box-shadow: 0 0 0 4px rgba(45,110,245,0.15);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #EF4444;
  display: none;
  margin-top: 0.25rem;
  padding-left: 0.25rem;
}
.form-input.error, .form-textarea.error { border-color: #EF4444; }
.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2D6EF5, #8B5CF6);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(139,92,246,0.4);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139,92,246,0.55);
}
.form-microcopy {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
#footer {
  background: #0D0D0D;
  padding: 4rem 2rem 2rem;
  color: white;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--blue); }
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-muted);
  margin-bottom: 0.75rem;
}
.footer-location {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-muted);
}
.footer-location i { stroke: var(--gray-muted); }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item i { stroke: rgba(255,255,255,0.6); transition: stroke 0.2s, transform 0.2s; }
.footer-contact-item:hover { color: white; }
.footer-contact-item:hover i { stroke: white; transform: scale(1.2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-right {
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-bottom-right i { stroke: var(--blue); }

/* ── GLOBAL BASE ── */
html, body { overflow-x: hidden; max-width: 100vw; }
body { -webkit-font-smoothing: antialiased; }
input, textarea, select, button { font-size: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }

  #hero { padding-top: calc(60px + 1rem); }
  .hero-intro { margin-bottom: 1rem; }
  .hero-badge { margin-bottom: 0.75rem; }
  .hero-headline { margin-bottom: 0.75rem; }
  .hero-subtext { margin-bottom: 1.25rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-side {
    position: static;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 2rem;
    width: 100%;
  }
  .sp-card { padding: 1rem !important; }

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

  .sim-features-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .sim-toggle-row { flex-direction: column; }
  .sim-toggle-btn { flex: unset; width: 100%; }
  .sim-total-box { flex-direction: column; align-items: flex-start; }
  .sim-cta-new { margin-top: 1rem; }

  .reviews-carousel::before, .reviews-carousel::after { width: 40px; }
  .reviews-track { animation-duration: 25s; }
  .review-card { width: 280px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-left { position: static; }

  .quiz-options { grid-template-columns: 1fr 1fr; }
  .quiz-opt { min-height: 70px; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-location { justify-content: center; }
  .footer-nav { align-items: center; }
  .footer-contact { align-items: center; }

  .mobile-sp-separator { display: block; }
  .mobile-sp-label {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }
  .mobile-sp-line {
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0 0 1.5rem;
  }
}

@media (max-width: 400px) {
  .quiz-options { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wave-divider {
    display: block !important;
    height: 50px;
    overflow: hidden;
  }
  .wave-divider svg {
    height: 50px;
    width: 100%;
  }
}
