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

:root {
  --navy:   #1E3A8A;
  --blue:   #2563EB;
  --sky:    #E0F2FE;
  --dark:   #111827;
  --mid:    #374151;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --white:  #FFFFFF;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

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

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.btn-primary:hover {
  background: var(--navy);
  box-shadow: 0 6px 20px rgba(30,58,138,.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.btn-white:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 64px 24px 80px;
  text-align: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.hero-blob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 130vw);
  height: min(700px, 100vw);
  background: var(--sky);
  border-radius: 50%;
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero h1 .accent-blue { color: var(--blue); }
.hero h1 .accent-navy { color: var(--navy); }
.hero-h1-sub { font-size: .6em; font-weight: 700; color: var(--mid); display: block; margin-top: 4px; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 14px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.hero-ninja-img {
  width: clamp(220px, 30vw, 400px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 48px rgba(30,58,138,.25));
  animation: floatUp .9s ease both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--sky);
  border-top: 1px solid rgba(37,99,235,.12);
  border-bottom: 1px solid rgba(37,99,235,.12);
  padding: 20px 24px;
}

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

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.proof-stat span {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(37,99,235,.2);
}

/* ── SECTIONS ── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── FEATURES ── */
.features-bg { background: #FFFFFF; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  list-style: none;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow .25s, transform .25s;
  opacity: 0;
  transform: translateY(24px);
}

.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s, border-color .25s;
}

.feat-card:hover {
  box-shadow: 0 16px 40px rgba(30,58,138,.1);
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.25);
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  counter-reset: steps;
  position: relative;
}

.step {
  position: relative;
  text-align: left;
  padding: 36px 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease,
              box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sky) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

.step:hover::before { opacity: 1; }

.step:hover {
  box-shadow: 0 20px 48px rgba(37,99,235,.14);
  border-color: rgba(37,99,235,.3);
  transform: translateY(-6px) !important;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.step-index {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .3s ease;
  z-index: 0;
}

.step:hover .step-index { color: rgba(37,99,235,.15); }

.step-number {
  width: 68px;
  height: 68px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 0 20px;
  box-shadow: 0 8px 24px rgba(37,99,235,.15);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.step:hover .step-number {
  transform: scale(1.12) rotate(-6deg);
  background: #dbeafe;
  box-shadow: 0 16px 36px rgba(37,99,235,.22);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color .3s;
}

.step:hover h3 { color: var(--blue); }

.step p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  justify-content: flex-start;
}

.step-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,.25);
  color: var(--blue);
  background: rgba(37,99,235,.06);
  transition: background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}

.step:hover .step-tag {
  background: rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.4);
  color: var(--navy);
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  background: var(--sky);
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
  position: relative;
  transition: box-shadow .4s ease;
  cursor: default;
}

.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 60% 40%, rgba(37,99,235,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.split-visual:hover::after { opacity: 1; }

.split-visual:hover {
  box-shadow: 0 24px 56px rgba(37,99,235,.18);
}

.split-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1),
              filter .4s ease,
              drop-shadow .4s ease;
}

.split-visual:hover img {
  transform: scale(1.07) translateY(-8px) rotate(-2deg);
  filter: drop-shadow(0 24px 32px rgba(37,99,235,.22));
}

/* dark-bg ninja images inside light panels */
.split-visual img.ninja-blend {
  mix-blend-mode: screen;
  max-width: 260px;
}

/* light-bg ninja images — white background becomes transparent */
.split-visual img.ninja-multiply {
  mix-blend-mode: multiply;
  max-width: 280px;
}

.check-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--sky);
  border: 2px solid rgba(37,99,235,.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%232563EB' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ── PRICING ── */
.pricing-bg { background: var(--sky); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(249,115,22,.2);
}

.price-badge {
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
}

.price-badge-gray {
  background: #F3F4F6;
  color: #6B7280;
  border-bottom: 1px solid #E5E7EB;
}

.price-card-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.price-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.price-amount {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.price-amount sup {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 8px;
}

.price-mo {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 4px;
}

.price-billing {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.price-tagline {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 20px;
}

.stripe-btn-wrap {
  display: flex;
  justify-content: center;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 32px;
  flex: 1;
}

.price-features li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: var(--mid);
}

.price-features li .chk {
  color: #22C55E;
  font-weight: 700;
  flex-shrink: 0;
}

.price-feature-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  margin-bottom: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

.testi-stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  border: 2px solid rgba(37,99,235,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}

.testi-role {
  font-size: .8rem;
  color: var(--muted);
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 96px 24px;
  text-align: center;
  color: var(--white);
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta .final-cta-inner > p,
.final-cta > .section-inner > p {
  font-size: 1.1rem;
  opacity: .8;
  max-width: 500px;
  margin: 0 auto 40px;
}

.final-cta-note {
  margin-top: 20px;
  font-size: .82rem;
  opacity: .6;
}

/* ── FOOTER ── */
footer {
  background: #E0F2FE;
  color: #1E3A8A;
  padding: 28px 40px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 4px 6px;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.footer-brand-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  white-space: nowrap;
}

/* Nav */
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #1E3A8A;
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-nav a:hover { color: #2563EB; }

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563EB;
  color: #fff;
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.social-icon:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  opacity: .65;
}
.footer-bottom a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(30,58,138,.2);
  text-align: center;
  font-size: .78rem;
  color: #1E3A8A;
}

@media (max-width: 768px) {
  .footer-main { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { gap: 20px; }
}

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.carousel-browser {
  background: #1e1e2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}

.carousel-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #2a2a3d;
}

.carousel-dots-row {
  display: flex;
  gap: 6px;
}

.carousel-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}

.carousel-dot-circle:nth-child(1) { background: #ff5f57; }
.carousel-dot-circle:nth-child(2) { background: #febc2e; }
.carousel-dot-circle:nth-child(3) { background: #28c840; }

.carousel-url {
  flex: 1;
  background: #3a3a50;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-browser img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

.carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  transition: background .2s, color .2s, border-color .2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.carousel-btn-prev { left: -20px; }
.carousel-btn-next { right: -20px; }

.slide-plan-tag {
  position: absolute;
  bottom: 18px;
  right: -42px;
  width: 150px;
  text-align: center;
  padding: 6px 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  border-radius: 0;
}

.slide-plan-starter {
  background: var(--sky);
  color: var(--navy);
}

.slide-plan-premium {
  background: var(--navy);
  color: var(--white);
}

.carousel-caption {
  text-align: center;
  margin-top: 20px;
}

.carousel-caption-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.carousel-caption-link {
  font-size: .875rem;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.carousel-caption-link:hover { text-decoration: underline; }

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel-indicator.active {
  background: var(--blue);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .carousel-btn-prev { left: -12px; }
  .carousel-btn-next { right: -12px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 1rem; }
}

/* ── COMPARISON TABLE ── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.compare-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.compare-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
}

.compare-table th:last-child {
  background: var(--blue);
}

.compare-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: middle;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody tr:nth-child(even) {
  background: #F9FAFB;
}

.compare-table tbody tr td:last-child {
  color: var(--navy);
  font-weight: 600;
}

.compare-yes {
  color: var(--blue);
  font-weight: 700;
  margin-right: 8px;
}

.compare-no {
  color: #EF4444;
  font-weight: 700;
  margin-right: 8px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item[open] {
  border-color: rgba(37,99,235,.35);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform .25s;
  line-height: 1;
  text-align: center;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 20px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */

/* Tablet & mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 100;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }

  nav.site-nav { position: relative; }

  /* Hero */
  .hero { padding: 48px 20px 56px; }

  /* Proof bar */
  .proof-bar-inner { gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat strong { font-size: 1.4rem; }

  /* Split layout */
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .split-visual img { max-height: 260px; width: 100%; }

  /* Steps */
  .steps { gap: 24px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 24px; }

  /* FAQ */
  .faq-q { font-size: .95rem; padding: 16px 48px 16px 16px; }
  .faq-a { padding: 0 16px 16px; }

  /* Footer */
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0;
  }
  .footer-nav { gap: 20px; justify-content: center; }
  .footer { padding: 28px 20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  section { padding: 56px 16px; }
  .hero { padding: 40px 16px 48px; }

  /* Nav */
  .nav-logo img { height: 40px; }
  .nav-cta { padding: 8px 16px; font-size: .82rem; }

  /* Proof bar */
  .proof-bar-inner { flex-direction: column; gap: 20px; align-items: center; }
  .proof-stat { text-align: center; }

  /* Steps */
  .step { padding: 20px; }
  .step-icon { font-size: 1.6rem; }

  /* Features */
  .feat-card { padding: 20px; }

  /* Comparison table */
  .compare-table th,
  .compare-table td { font-size: .82rem; padding: 10px 12px; }

  /* Pricing */
  .price-card { padding: 24px 20px; }
  .price-card-header { padding: 20px 20px 16px; }

  /* Testimonials */
  .testi-card { padding: 20px; }
  .testi-quote { font-size: .88rem; }

  /* Carousel */
  .carousel-btn { width: 36px; height: 36px; font-size: .9rem; }

  /* FAQ */
  .faq-q { font-size: .9rem; }

  /* Footer */
  .footer-logo-icon { height: 48px; }
  .footer-nav { flex-direction: column; gap: 12px; align-items: center; }
  .footer-social { gap: 8px; }
  .footer { padding: 24px 16px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 420px;
  width: calc(100% - 48px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(30,58,138,.15);
  padding: 24px;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.cookie-banner--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}
.cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-banner__body {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--mid);
  margin: 0 0 18px;
}
.cookie-banner__link {
  color: var(--blue);
  text-decoration: underline;
}
.cookie-banner__link:hover { opacity: .8; }
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner__btn {
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  transition: opacity .2s;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
}
.cookie-banner__btn--reject {
  background: transparent;
  color: var(--dark);
  padding: 10px 0;
}

@media (max-width: 480px) {
  .cookie-banner { bottom: 16px; left: 16px; width: calc(100% - 32px); }
}

/* ── COOKIE SETTINGS MODAL ── */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(17,24,39,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cookie-modal-overlay.cookie-modal--open {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(30,58,138,.18);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cookie-modal__header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.cookie-modal__logo {
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.cookie-modal__close {
  background: var(--white);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.cookie-modal__close:hover { opacity: .75; }
.cookie-modal__body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.cookie-modal__desc {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--mid);
  margin: 0 0 20px;
}
.cookie-modal__section {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.cookie-modal__section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cookie-modal__chevron {
  font-size: .8rem;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.cookie-modal__section-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}
.cookie-modal__section-body {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--mid);
  margin: 0;
  padding-left: 18px;
}
/* Toggle switch */
.cookie-modal__toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-modal__toggle input { opacity: 0; width: 0; height: 0; }
.cookie-modal__toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--border);
  transition: background .2s;
}
.cookie-modal__toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s;
}
.cookie-modal__toggle input:checked + .cookie-modal__toggle-track { background: var(--blue); }
.cookie-modal__toggle input:checked + .cookie-modal__toggle-track::after { transform: translateX(20px); }
/* More info */
.cookie-modal__more {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.cookie-modal__more-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.cookie-modal__more-body {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--mid);
  margin: 0;
}
/* Footer */
.cookie-modal__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.cookie-modal__btn-save {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 8px 18px;
  margin-left: auto;
}
.cookie-modal__btn-save:hover { background: var(--sky); }

@media (max-width: 480px) {
  .cookie-modal__footer { gap: 8px; }
  .cookie-modal__btn-save { margin-left: 0; width: 100%; text-align: center; }
}
