/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 18px;
  background: var(--blue-600);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--blue-400); outline-offset: 2px; }

/* ── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #eef4ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;
  --blue-500: #1877f2;
  --blue-600: #1565c0;
  --blue-700: #0d47a1;
  --blue-900: #1a2e5a;

  --orange-500: #f47920;
  --orange-600: #e0650a;
  --orange-700: #c45500;
  --purple-500: #9333ea;
  --purple-600: #7e22ce;
  --amber-500:  #f59e0b;
  --amber-600:  #d97706;
  --amber-700:  #b45309;
  --teal-500:   #14b8a6;
  --teal-600:   #0f766e;
  --green-500:  #10b981;
  --green-600:  #059669;
  --teal-500:   #14b8a6;
  --teal-600:   #0d9488;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--orange-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--sm  { padding: 8px 18px;  font-size: .875rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24,119,242,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}
.btn--ghost:focus-visible {
  outline: 2px solid var(--gray-400);
  outline-offset: 2px;
}

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--blue-50);
  color: var(--blue-600);
}
.badge--outline {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.badge--light {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__img  { height: 38px; width: auto; }
.logo__icon { width: 36px; height: 36px; }
.logo__text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.logo__accent { color: var(--orange-500); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 6px 12px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--gray-900); background: var(--gray-100); }

/* Mobile-only sticky CTA (always visible next to hamburger) */
.nav__cta--sticky {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--gray-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1565c0 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e0650a 0%, transparent 70%);
  bottom: -80px; right: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { color: var(--white); }

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 16px 0 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  width: fit-content;
}
.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.stat__label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Dashboard Card ─────────────────────────────────────────── */
.hero__visual { display: flex; justify-content: flex-end; }

.dashboard-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 22px;
  width: 360px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,.9);
}

/* Header */
.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.db-header__left { display: flex; align-items: center; gap: 8px; }
.db-header__live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.db-header__title { font-size: .875rem; font-weight: 700; letter-spacing: -.01em; }
.db-header__badge {
  font-size: .7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(16,185,129,.2); color: #6ee7b7;
  letter-spacing: .02em;
}

/* Device rows */
.db-devices {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.db-device {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  padding: 10px 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.db-device:last-child { border-bottom: none; }
.db-device--warn { background: rgba(245,158,11,.06); }
.db-device__meta { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.db-device__name {
  font-size: .8125rem; font-weight: 600;
  color: rgba(255,255,255,.9); line-height: 1.2;
}
.db-device__model {
  font-size: .7rem; color: rgba(255,255,255,.4);
  line-height: 1.2; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.db-device__toner { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.db-device__pct { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.7); width: 28px; text-align: right; }
.db-device__pct--warn { color: var(--amber-500); }

.db-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.db-dot--green { background: var(--green-500); }
.db-dot--amber { background: var(--amber-500); animation: pulse 2s infinite; }

.db-bar { width: 76px; height: 5px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; }
.db-bar__fill {
  height: 100%; background: var(--blue-500);
  border-radius: 100px; width: 0;
  animation: dbFill 1s ease-out forwards var(--bar-delay, .4s);
}
.db-bar__fill--amber { background: var(--amber-500); }
@keyframes dbFill { to { width: var(--w); } }

/* Sparkline chart */
.db-chart { margin-bottom: 14px; }
.db-chart__header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 6px;
}
.db-chart__label {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .05em;
}
.db-chart__period { font-size: .75rem; color: rgba(255,255,255,.4); }
.db-chart__period b { color: rgba(255,255,255,.85); font-weight: 700; }
.db-sparkline { width: 100%; height: 56px; display: block; }
.db-sparkline__area { opacity: 0; animation: dbFadeIn .8s ease forwards 1.4s; }
.db-sparkline__line {
  stroke-dasharray: 700; stroke-dashoffset: 700;
  animation: dbDraw 1.6s ease-out forwards .4s;
}
.db-sparkline__peak { opacity: 0; animation: dbFadeIn .3s ease forwards 1.9s; }
@keyframes dbDraw { to { stroke-dashoffset: 0; } }
@keyframes dbFadeIn { to { opacity: 1; } }
.db-chart__days { display: flex; justify-content: space-between; margin-top: 3px; }
.db-chart__days span { font-size: .62rem; color: rgba(255,255,255,.28); font-weight: 500; }

/* Event feed */
.db-events { display: flex; flex-direction: column; gap: 6px; }
.db-event {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.05);
  border-radius: 8px; border: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  animation: dbSlideUp .35s ease forwards;
}
.db-event:nth-child(1) { animation-delay: 1.9s; }
.db-event:nth-child(2) { animation-delay: 2.2s; }
@keyframes dbSlideUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.db-event__icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.db-event__icon svg { width: 11px; height: 11px; }
.db-event__icon--green { background: rgba(16,185,129,.2); color: #6ee7b7; }
.db-event__icon--blue  { background: rgba(59,130,246,.2);  color: #93c5fd; }
.db-event__text { flex: 1; font-size: .775rem; color: rgba(255,255,255,.6); }
.db-event__time { font-size: .68rem; color: rgba(255,255,255,.3); white-space: nowrap; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { color: rgba(255,255,255,.9); }
.trust-bar__item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-400, #60a5fa); }

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section--alt { background: var(--gray-50); }
.section--dark {
  background: var(--gray-900);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section__header--light .section__title,
.section__header--light .section__subtitle {
  color: var(--white);
}
.section__header--light .section__subtitle { color: rgba(255,255,255,.6); }

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 12px 0 16px;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Benefits Grid ─────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.benefit-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-card__icon svg { width: 24px; height: 24px; }
.benefit-card__icon--blue { background: var(--blue-50); color: var(--blue-600); }
.benefit-card__icon--green { background: #ecfdf5; color: var(--green-600); }
.benefit-card__icon--purple { background: #f5f3ff; color: var(--purple-600); }
.benefit-card__icon--amber { background: #fffbeb; color: var(--amber-600); }
.benefit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.benefit-card__text {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.benefit-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.benefit-card__list li {
  font-size: .875rem;
  color: var(--gray-500);
  padding-left: 18px;
  position: relative;
}
.benefit-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ── Steps ─────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-500), var(--orange-500));
  opacity: .2;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 0 48px;
}
.step:last-child { padding-bottom: 0; }
.step__number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(37,99,235,.12);
  position: relative;
  z-index: 1;
}
.step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  padding-top: 18px;
}
.step__text {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.step__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step__features li {
  font-size: .875rem;
  color: var(--gray-500);
  padding-left: 18px;
  position: relative;
}
.step__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-size: .75rem;
}

/* Support cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.support-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.support-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.support-card__icon svg { width: 22px; height: 22px; }
.support-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.support-card__text {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Equipment ─────────────────────────────────────────────── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.equipment-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.equipment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.equipment-card__header {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.equipment-card__header--blue   { background: var(--blue-700); }
.equipment-card__header--purple { background: var(--orange-700); }
.equipment-card__header--amber  { background: var(--amber-700); }
.equipment-card__header--teal   { background: var(--teal-600); }

.equipment-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.equipment-card__header::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.equipment-card__header--blue::after   { background: linear-gradient(135deg, rgba(13,71,161,0.70), rgba(24,119,242,0.50)); }
.equipment-card__header--purple::after { background: linear-gradient(135deg, rgba(196,85,0,0.70), rgba(244,121,32,0.50)); }
.equipment-card__header--amber::after  { background: linear-gradient(135deg, rgba(180,83,9,0.70), rgba(245,158,11,0.50)); }
.equipment-card__header--teal::after   { background: linear-gradient(135deg, rgba(15,118,110,0.70), rgba(20,184,166,0.50)); }

.equipment-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.95);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  z-index: 2;
}

.equipment-card__body { padding: 28px; }
.equipment-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.equipment-card__text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.equipment-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.equipment-card__features li {
  font-size: .875rem;
  color: var(--gray-500);
  padding-left: 16px;
  position: relative;
}
.equipment-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-size: .75rem;
  font-weight: 700;
}
.equipment-card__use { display: flex; gap: 6px; flex-wrap: wrap; }
.use-tag {
  padding: 3px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
}

/* ── Testimonials Slider ───────────────────────────────────── */
.testimonials-slider { position: relative; }
.testimonials-slider__viewport { overflow: hidden; }
.testimonials-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonials-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testimonials-slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}
.testimonials-slider__btn:hover:not(:disabled) {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
}
.testimonials-slider__btn:disabled { opacity: .3; cursor: not-allowed; }
.testimonials-slider__btn svg { width: 20px; height: 20px; }
.testimonials-slider__dots { display: flex; gap: 8px; align-items: center; }
.testimonials-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none; padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonials-slider__dot.active { background: var(--white); transform: scale(1.35); }

.testimonial {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), background var(--transition);
}
.testimonial:hover { transform: translateY(-2px); background: rgba(255,255,255,.09); }
@media (max-width: 900px) {
  .testimonial { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 560px) {
  .testimonial { flex: 0 0 100%; }
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial__stars svg {
  width: 16px; height: 16px;
  color: var(--amber-500);
}
.testimonial__quote {
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial__name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial__role {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue-200, #bfdbfe); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-item__trigger:hover { background: var(--gray-50); }
.faq-item.open .faq-item__trigger { background: var(--blue-50); color: var(--blue-700); }
.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(180deg); color: var(--blue-600); }
.faq-item__body {
  padding: 0 24px 20px;
}
.faq-item__body p {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Quote Form ────────────────────────────────────────────── */
.quote-section { }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.quote-info__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}
.quote-info__promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-info__promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-700);
  font-weight: 500;
}
.quote-info__promises svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }

/* Form */
.quote-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.required { color: var(--blue-500); }
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-input.error { border-color: #ef4444; }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.form-error {
  font-size: .8125rem;
  color: #ef4444;
  min-height: 18px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 16px;
}
.form-fieldset .form-label { margin-bottom: 12px; display: block; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--gray-700);
  cursor: pointer;
  user-select: none;
}
.checkbox-input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom {
  width: 18px; height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.checkbox-input:checked + .checkbox-custom {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}
.checkbox-input:focus-visible + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
}

.form-privacy {
  font-size: .8125rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}
.form-privacy a { color: var(--blue-500); text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

/* ── Stats counters ──────────────────────────────────────────── */
.stats-section { padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block__value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-block__label {
  font-size: .875rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
  max-width: 140px;
}

/* ── Honeypot ────────────────────────────────────────────────── */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ── Comparison table ────────────────────────────────────────── */
.compare-section { padding-top: 80px; padding-bottom: 80px; }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}
.compare-table thead tr {
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: .9375rem;
}
.compare-table th { font-weight: 700; }
.compare-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table td:first-child { color: var(--gray-700); font-weight: 500; width: 32%; }
.compare-table__feature { width: 32%; color: var(--gray-600); font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.compare-table__own  { width: 34%; }
.compare-table__rent { width: 34%; background: rgba(24,119,242,.03); }
.compare-col-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9375rem;
}
.compare-col-label--own  { color: var(--gray-600); }
.compare-col-label--rent { color: var(--blue-600); }
.compare-col-label svg   { width: 16px; height: 16px; color: var(--green-500); }
.compare-bad  { color: var(--gray-500); }
.compare-good { color: var(--blue-700); font-weight: 600; }
.compare-cta  { text-align: center; }

/* ── Inclusions bridge strip ─────────────────────────────────── */
.inclusions-strip {
  background: var(--gray-900);
  padding: 28px 0;
}
.inclusions-strip__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.inclusions-strip__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.inclusions-strip__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.inclusions-strip__list svg {
  width: 17px; height: 17px;
  color: var(--blue-400, #60a5fa);
  flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-lg);
}
.pricing-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pricing-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pricing-card__icon--purple { background: rgba(147,51,234,.1); }
.pricing-card__icon--amber  { background: rgba(245,158,11,.1); }
.pricing-card__icon--teal   { background: rgba(20,184,166,.1); }
.pricing-card__icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.pricing-card__icon--purple svg { color: var(--purple-500); }
.pricing-card__icon--amber svg  { color: var(--amber-600); }
.pricing-card__icon--teal svg   { color: var(--teal-600); }
.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.5;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.pricing-card__from { font-size: .8rem; color: var(--gray-500); }
.pricing-card__amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -.03em;
}
.pricing-card__per { font-size: .9rem; color: var(--gray-400); }
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--gray-700);
}
.pricing-card__features svg {
  width: 15px; height: 15px;
  color: var(--green-500);
  flex-shrink: 0;
}
.pricing-card__cta { justify-content: center; }
.pricing-note {
  text-align: center;
  font-size: .8125rem;
  color: var(--gray-400);
}

/* ── Coverage ─────────────────────────────────────────────────── */
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage-text .section__title { text-align: left; margin-bottom: 16px; }
.coverage-text__body { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.coverage-promises { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.coverage-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-700);
  font-weight: 500;
}
.coverage-promises svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.coverage-countries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.coverage-countries__grid span {
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
  padding: 4px 0;
}
.coverage-countries__note {
  font-size: .8rem;
  color: var(--gray-400);
  text-align: center;
}
.coverage-countries__note a { color: var(--blue-500); text-decoration: none; }
.coverage-countries__note a:hover { text-decoration: underline; }

/* ── ROI Calculator ───────────────────────────────────────────── */
.roi-section { background: linear-gradient(135deg, var(--blue-900) 0%, #0f172a 100%); color: var(--white); }
.roi-section .section__header .badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.roi-section .section__title { color: var(--white); }
.roi-section .section__subtitle { color: rgba(255,255,255,.65); }
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.roi-inputs { display: flex; flex-direction: column; gap: 28px; }
.roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-label { font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.85); }
.roi-value-display {
  font-size: 1.125rem;
  font-weight: 800;
  color: #60a5fa;
  min-width: 64px;
  text-align: right;
}
.roi-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #60a5fa;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: transform .15s ease;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #60a5fa;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.roi-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.roi-disclaimer {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}
.roi-results { display: flex; flex-direction: column; gap: 20px; }
.roi-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.roi-col {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 22px 20px;
}
.roi-col--rent { border-color: #60a5fa; background: rgba(96,165,250,.1); }
.roi-col__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.roi-col--rent .roi-col__label { color: #93c5fd; }
.roi-col__value {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: -.03em;
  margin-bottom: 4px;
  transition: color .3s ease;
}
.roi-col--rent .roi-col__value { color: #60a5fa; }
.roi-col__sub { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.roi-col__items { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.roi-col__items li { font-size: .78rem; color: rgba(255,255,255,.55); }
.roi-saving {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-saving__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-saving__label { font-size: .9rem; color: rgba(255,255,255,.6); font-weight: 500; }
.roi-saving__amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: -.02em;
  transition: color .3s ease;
}
.roi-saving__amount--big { font-size: 2rem; }
.roi-saving__row--annual { border-top: 1px solid rgba(255,255,255,.1); padding-top: 12px; }
.roi-cta { margin-top: 4px; }

/* ── Scroll CTA banner ───────────────────────────────────────── */
.scroll-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.scroll-cta.is-visible { transform: translateY(0); }
.scroll-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.scroll-cta__text {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.scroll-cta__text strong { color: var(--white); }
.scroll-cta__btn { flex-shrink: 0; }
.scroll-cta__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
  flex-shrink: 0;
}
.scroll-cta__close:hover { color: rgba(255,255,255,.8); }
.scroll-cta__close svg { width: 20px; height: 20px; display: block; }

/* ── Multi-step form ─────────────────────────────────────────── */
.form-progress {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}
.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.form-progress__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.form-progress__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color var(--transition);
}
.form-progress__line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 16px 8px 0;
  transition: background .3s ease;
}
.form-progress__step.active .form-progress__num { background: var(--blue-600); color: var(--white); }
.form-progress__step.active .form-progress__label { color: var(--blue-600); }
.form-progress__step.done .form-progress__num { background: var(--green-500); color: var(--white); }
.form-progress__step.done .form-progress__label { color: var(--green-500); }
.form-progress__line.done { background: var(--green-500); }

.form-pane--hidden { display: none; }
.form-pane { animation: paneFadeIn .25s ease; }
@keyframes paneFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-pane__header { margin-bottom: 24px; }
.form-pane__title { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.form-pane__subtitle { font-size: .9rem; color: var(--gray-500); }

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.equip-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
}
.equip-card:hover { border-color: var(--blue-500); background: var(--blue-50); }
.equip-card:has(.checkbox-input:checked) {
  border-color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
}
.equip-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
.equip-card--wide .equip-card__text { display: flex; flex-direction: column; gap: 2px; }
.equip-card__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
}
.equip-card--wide .equip-card__icon { margin-bottom: 0; }
.equip-card__icon svg { width: 17px; height: 17px; color: var(--blue-600); }
.equip-card__title { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.equip-card__desc { font-size: .775rem; color: var(--gray-500); }

.form-nav { margin-top: 8px; }
.form-nav--split { display: flex; justify-content: space-between; gap: 12px; }
.form-nav--split .btn--primary { flex: 1; justify-content: center; }

.form-label__opt { font-weight: 400; color: var(--gray-400); font-size: .8rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand .logo__text { color: var(--white); }
.footer__brand .logo__img  { filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer__contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px 16px;
  transition: background var(--transition), border-color var(--transition);
}
.footer__email:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
.footer__email svg {
  width: 16px; height: 16px;
  color: var(--blue-400);
  flex-shrink: 0;
}
.footer__cta { align-self: flex-start; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__nav-title {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer__bottom-right { color: rgba(255,255,255,.3); }

/* ── Success Overlay ───────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.success-overlay[hidden] { display: none; }
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: slideUp .3s ease;
}
.success-icon {
  width: 64px; height: 64px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-500);
}
.success-icon svg { width: 28px; height: 28px; stroke-width: 2.5; }
.success-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.success-card p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-left"] {
  transform: translateX(24px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { justify-content: flex-start; }
  .dashboard-card { width: 100%; max-width: 380px; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-bottom: 1px solid var(--gray-200); }
  .stat-block:nth-child(2n) { border-right: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .roi-layout { grid-template-columns: 1fr; gap: 40px; }
  .roi-comparison { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__inner { height: 60px; }
  .nav {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { padding: 10px 12px; }
  .nav__cta { margin-top: 8px; text-align: center; justify-content: center; }
  .nav__cta--sticky { display: inline-flex; font-size: .8rem; padding: 7px 14px; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .stat__divider { display: none; }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .trust-bar__inner { flex-direction: column; gap: 0; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .trust-bar__item:last-child { border-bottom: none; }

  .steps::before { display: none; }
  .step { grid-template-columns: 1fr; }
  .step__number {
    width: 48px; height: 48px;
    font-size: .8rem;
    margin-bottom: 4px;
  }
  .step__title { padding-top: 0; }

  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .coverage-countries__grid { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 6px 12px; }
  .scroll-cta__text { font-size: .85rem; }
  .compare-table th, .compare-table td { padding: 11px 14px; font-size: .875rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .dashboard-card { max-width: 100%; }
  .db-bar { width: 60px; }
  .footer__nav { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .equip-card--wide { flex-direction: column; align-items: flex-start; }
  .form-nav--split { flex-direction: column-reverse; }
  .form-nav--split .btn--ghost,
  .form-nav--split .btn--primary { flex: none; width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(odd):last-child { grid-column: 1 / -1; border-right: none; }
  .roi-comparison { grid-template-columns: 1fr; }
  .scroll-cta__inner { flex-wrap: wrap; gap: 12px; }
  .scroll-cta__text { width: 100%; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-block:last-child { border-bottom: none; }
  .quote-form { padding: 20px 16px; }
  .form-progress__label { font-size: .7rem; }
  .btn--lg { padding: 12px 20px; }
}

/* ── Brands Section ────────────────────────────────────────── */
.brands-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
  overflow: hidden;
}
.brands-section__header {
  text-align: center;
  margin-bottom: 24px;
}
.brands-section__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
}
.brands-section__label::before,
.brands-section__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gray-300);
}

/* Infinite scroll ticker */
.brands-track-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brandScroll 32s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--gray-200);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.brand-logo:last-child { border-right: none; }
.brand-logo img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter var(--transition), transform var(--transition);
}
.brand-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
  .brands-track-wrap { mask-image: none; -webkit-mask-image: none; }
  .brands-track { flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ── Cookie consent banner ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,.25);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: .875rem;
  color: var(--gray-300);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text a { color: var(--blue-400); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner .btn--ghost {
  color: var(--gray-300);
  border-color: var(--gray-600);
}
.cookie-banner .btn--ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--gray-400);
}
@media (max-width: 480px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
