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

:root {
  --bg:        #06080e;
  --bg-2:      #0b1a33;
  --accent:    #1e6fff;
  --accent-lt: #4a9fff;
  --white:     #ffffff;
  --text:      #eef2ff;
  --muted:     rgba(175, 205, 255, 0.70);
  --border:    rgba(40, 120, 255, 0.25);
  --card-bg:   rgba(12, 28, 70, 0.50);
  --glow:      rgba(18, 85, 255, 0.15);
  --font:      'Inter', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ─── Gradient text ─────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-lt), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #1457d4);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(30, 111, 255, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #3d80ff, var(--accent));
  box-shadow: 0 6px 32px rgba(30, 111, 255, 0.55);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent-lt);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(30, 111, 255, 0.08);
}

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(74, 159, 255, 0.5);
}

.btn--sm  { font-size: 14px; padding: 8px 18px; }
.btn--lg  { font-size: 17px; padding: 16px 36px; }
.btn--full { width: 100%; }
.btn--full.btn--lg { font-size: 18px; padding: 20px 36px; border-radius: 12px; }

/* ─── Section shared ─────────────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }

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

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-lt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── NAV ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(6, 8, 14, 0.85);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  overflow: visible;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.nav__logo img {
  height: 78px;
  width: auto;
  mix-blend-mode: screen;
  -webkit-mix-blend-mode: screen;
}

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

.nav__links a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.btn--primary { color: #ffffff !important; }
.nav__links a.btn--primary:hover {
  color: #ffffff !important;
  box-shadow: 0 8px 40px rgba(30, 111, 255, 0.7);
  transform: translateY(-2px) scale(1.04);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.nav__social a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.nav__social a:hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
}
.nav__burger span {
  display: block;
  position: absolute;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav__burger span:nth-child(1) { transform: translateY(-7px) rotate(0deg); }
.nav__burger span:nth-child(2) { transform: translateY(0) scaleX(1); }
.nav__burger span:nth-child(3) { transform: translateY(7px) rotate(0deg); }

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background-image:
    linear-gradient(to bottom, rgba(6,8,14,0.65) 0%, rgba(6,8,14,0.88) 100%),
    url('../images/hero-bg-v2.jpg');
  background-size: cover;
  background-position: center center;
}

.hero__grid {
  display: none;
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(18,85,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-lt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 28px;
  background: rgba(30,111,255,0.08);
}

.hero__heading {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num small {
  font-size: 20px;
  color: var(--accent-lt);
}
.hero__stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-indicator span {
  display: block;
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── TRUST BAR ──────────────────────────────────────────────────────────────── */
.trust-bar {
  background: rgba(12, 28, 70, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── SERVICES ───────────────────────────────────────────────────────────────── */
.services { background: var(--bg); }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(30,111,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(30,111,255,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(30,111,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(30,111,255,0.2);
}

.service-card__art {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background: rgba(30,111,255,0.04);
  border: 1px solid rgba(30,111,255,0.1);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__art svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--bg-2);
  overflow: hidden;
}

.how-it-works__glow {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18,85,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.667% + 28px);
  right: calc(16.667% + 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1457d4);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(30,111,255,0.15);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

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

.quarterly-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(30,111,255,0.08);
  border: 1px solid rgba(30,111,255,0.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.quarterly-callout__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(30,111,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quarterly-callout strong {
  display: block;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}

.quarterly-callout span {
  font-size: 15px;
  color: var(--muted);
}

/* ─── SHOWCASE ───────────────────────────────────────────────────────────────── */
.showcase { background: var(--bg-2); }

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.showcase-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.showcase-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.showcase-img--tall img { height: 360px; }

.showcase-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

.showcase-img__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(6,8,14,0.85) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .showcase-img img,
  .showcase-img--tall img { height: 220px; }
}

/* ─── BEFORE & AFTER ─────────────────────────────────────────────────────────── */
.before-after { background: var(--bg); }

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.before-after__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.before-after__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.before-after__card:hover .before-after__img-wrap img {
  transform: scale(1.03);
}

.before-after__label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.before-after__label--before {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}

.before-after__label--after {
  background: rgba(30,111,255,0.25);
  border: 1px solid rgba(30,111,255,0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .before-after__grid { grid-template-columns: 1fr; }
  .before-after__img-wrap img { height: 280px; }
}

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

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.pricing__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.pricing-card--feature {
  border-color: rgba(30,111,255,0.4);
  background: rgba(30,111,255,0.06);
  box-shadow: 0 0 40px rgba(30,111,255,0.08);
}

.pricing-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.pricing-card__price span {
  font-size: 28px;
  color: var(--accent-lt);
}

.pricing-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing__example {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing__example-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: rgba(30,111,255,0.06);
}

.pricing__example-body {
  padding: 8px 0;
}

.pricing__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid rgba(40,120,255,0.1);
}

.pricing__line--total {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  background: rgba(30,111,255,0.08);
}

.pricing__line--annual {
  color: var(--muted);
  font-size: 14px;
  border-bottom: none;
}

.pricing__annual-pill {
  margin: 16px 28px 24px;
  background: rgba(30,111,255,0.1);
  border: 1px solid rgba(30,111,255,0.25);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing__annual-pill strong { color: var(--white); }

/* ─── FREE TRIAL ─────────────────────────────────────────────────────────────── */
.trial {
  background: var(--bg-2);
  overflow: hidden;
}

.trial__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(18,85,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.trial__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.trial__bracket {
  position: absolute;
  width: 28px; height: 28px;
}
.trial__bracket--tl {
  top: 20px; left: 20px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.trial__bracket--br {
  bottom: 20px; right: 20px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.trial__heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}

.trial__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ─── TARGET MARKET ──────────────────────────────────────────────────────────── */
.target { background: var(--bg); }

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

.target-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.target-card:hover {
  border-color: rgba(30,111,255,0.4);
  transform: translateY(-3px);
}

.target-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.target-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.target-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
.contact { background: var(--bg-2); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact__cta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 40px;
}
.contact__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__copy p {
  font-size: 16px;
  color: var(--muted);
  margin: 16px 0 28px;
  line-height: 1.7;
}

.contact__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.contact__form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #ff4d4d;
  font-weight: 500;
}
.field-error.visible {
  display: block;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(6, 8, 14, 0.7);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%234a9fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group option { background: #0b1a33; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,111,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(175,205,255,0.35);
}

.form-group textarea { resize: vertical; }

.form__note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
  margin-top: -4px;
}

/* ─── QUOTE BUILDER ──────────────────────────────────────────────────────────── */
.qb-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qb-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.05s,
              transform 0.4s ease 0.05s,
              padding 0.4s ease,
              border-color 0.4s ease;
  padding-top: 0;
  border-top: 1px solid transparent;
}
.qb-details.open {
  max-height: 700px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 22px;
  border-top-color: var(--border);
}

.qb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qb-row > label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.qb-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qb-btn {
  width: 32px; height: 32px;
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.3);
  border-radius: 6px;
  color: var(--accent-lt);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font);
}
.qb-btn:hover {
  background: rgba(30,111,255,0.25);
  border-color: var(--accent);
  color: var(--white);
}

#qb-devices {
  width: 64px;
  text-align: center;
  background: rgba(6,8,14,0.7);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  padding: 5px 8px;
  outline: none;
  transition: border-color var(--transition);
}
#qb-devices:focus { border-color: var(--accent); }
#qb-devices::-webkit-inner-spin-button,
#qb-devices::-webkit-outer-spin-button { -webkit-appearance: none; }
#qb-devices { -moz-appearance: textfield; }

.qb-freq {
  display: flex;
  gap: 6px;
}

.qb-freq-btn {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  background: rgba(30,111,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.qb-freq-btn:hover {
  border-color: rgba(30,111,255,0.5);
  color: var(--text);
}
.qb-freq-btn--active {
  background: rgba(30,111,255,0.18);
  border-color: var(--accent);
  color: var(--white);
}

.qb-summary {
  background: rgba(6,8,14,0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.qb-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(40,120,255,0.08);
}
.qb-line:last-child { border-bottom: none; }

.qb-line--total {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  background: rgba(30,111,255,0.08);
}

.qb-line--annual {
  color: var(--accent-lt);
  font-size: 13px;
}

.qb-pill {
  font-size: 13px;
  color: var(--muted);
  background: rgba(30,111,255,0.08);
  border: 1px solid rgba(30,111,255,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.5;
}
.qb-pill strong { color: var(--white); }

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

@media (max-width: 560px) {
  .qb-form-row { grid-template-columns: 1fr; }
  .qb-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .qb-freq { flex-wrap: wrap; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 72px;
  width: auto;
  mix-blend-mode: screen;
  -webkit-mix-blend-mode: screen;
  flex-shrink: 0;
}

.footer__brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 180px;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
  white-space: nowrap;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}
.footer__nav a:hover {
  color: var(--white);
  border-color: rgba(74,159,255,0.5);
  background: rgba(30,111,255,0.08);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--accent-lt);
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.footer__social a {
  color: var(--muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer__social a:hover { color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .target__grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing__layout { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__burger { display: flex; }
  .nav__logo img { mix-blend-mode: screen; -webkit-mix-blend-mode: screen; }

  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* Use fixed but attach to nav's stacking context workaround:
       iOS Safari breaks position:fixed inside backdrop-filter parents,
       so we use position:absolute on the nav and make it full-height instead */
    position: absolute;
    top: 86px; left: 0; right: 0;
    height: 100vh;
    background: #06080e;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Stagger on li, not a — links are li > a */
  .nav__links li {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav__links.open li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
  .nav__links.open li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.16s; }
  .nav__links.open li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.22s; }
  .nav__links.open li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.28s; }

  .nav__links li a {
    font-size: 26px;
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s ease;
  }
  .nav__links li a:hover,
  .nav__links li a:active { color: var(--white); }

  /* Burger → X */
  .nav__burger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__burger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before { display: none; }

  .hero__stats { gap: 20px; }
  .hero__stat-divider { display: none; }

  .trust-bar__inner { flex-direction: column; gap: 16px; align-items: flex-start; padding: 0 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__nav { flex-wrap: wrap; justify-content: flex-start; gap: 16px; }
  .footer__right { align-items: flex-start; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .target__grid   { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; align-items: center; }
  .contact__form  { padding: 24px 20px; }
}

/* ─── Form success state ──────────────────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--muted);
  font-size: 15px;
}

/* ─── Quote success card ─────────────────────────────────────────────────────── */
.qs-card {
  margin-top: 20px;
  background: rgba(6,8,14,0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.qs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lt);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(30,111,255,0.06);
}

.qs-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(40,120,255,0.08);
}
.qs-line:last-child { border-bottom: none; }
.qs-line--total {
  color: var(--white);
  font-weight: 700;
  background: rgba(30,111,255,0.08);
}

/* ─── Scroll-in animation ─────────────────────────────────────────────────────── */
/* ─── Scroll animations ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible,
.reveal--fade.visible {
  opacity: 1;
  transform: none;
}

/* ─── SEO CONTENT ────────────────────────────────────────────────────────────── */
.seo-content {
  background: var(--bg-2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.seo-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.seo-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-lt);
  margin: 32px 0 10px;
}
.seo-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
}

/* ─── GOOGLE REVIEWS CTA ─────────────────────────────────────────────────────── */
.google-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.google-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.google-cta__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.google-cta__glogo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.google-cta__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}
.google-cta__stars span {
  color: #FBBC05;
  font-size: 22px;
  line-height: 1;
}
.google-cta__text {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
}
@media (max-width: 768px) {
  .google-cta__inner { flex-direction: column; align-items: flex-start; }
}
