/* ============================================
   VR BILLING — Landing Page
   ============================================ */

:root {
  /* Original landing-page palette: navy + blue + teal accent + orange CTA */
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-dark: #0a1b3d;
  --bg-darker: #061230;
  --ink: #0a1b3d;
  --ink-soft: #3b4a6b;
  --muted: #6b7896;
  --line: #e6ecf5;
  --line-2: #d5deec;

  --brand: #0066ff;
  --brand-2: #00c4b4;
  --brand-deep: #003fcc;
  --accent: #ff6b35;
  --accent-2: #ffb800;
  --gold: #ffc83d;

  --grad-1: linear-gradient(135deg, #0066ff 0%, #00c4b4 100%);
  --grad-2: linear-gradient(135deg, #00c4b4 0%, #0066ff 100%);
  --grad-dark: linear-gradient(135deg, #0a1b3d 0%, #1a2f6b 100%);
  --grad-cta: linear-gradient(135deg, #ff6b35 0%, #ff9558 100%);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10,27,61,0.06);
  --shadow-md: 0 8px 30px rgba(10,27,61,0.08);
  --shadow-lg: 0 20px 60px rgba(10,27,61,0.12);
  --shadow-glow: 0 20px 60px rgba(0,102,255,0.25);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p  { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.grad-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-light {
  background: linear-gradient(135deg, #00e5d0 0%, #66b3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.underline-text {
  position: relative;
  display: inline-block;
}
.underline-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--gold);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,107,53,0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--ink);
  border: 2px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ============================================
   ANNOUNCEMENT
   ============================================ */
.announce {
  background: var(--bg-dark);
  color: #fff;
  padding: 10px 0;
  font-size: 0.875rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.announce a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #00e5d0;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0,229,208,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,229,208,0.7); }
  50%    { box-shadow: 0 0 0 8px rgba(0,229,208,0); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}
/* Logo wordmark + inline SVG mark */
.logo-svg {
  height: 42px;
  width: auto;
  display: block;
}
.logo-text {
  display: none; /* SVG already contains "VR Billing" wordmark */
}
.footer .logo-svg { filter: brightness(1.15); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-phone:hover { color: var(--brand); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--brand);
  top: -150px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--brand-2);
  bottom: -100px; left: -80px;
  opacity: 0.3;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #00c4b4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,196,180,0.2);
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-microproof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.avatars {
  display: flex;
}
.av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--grad-1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#ff6b35,#ffb800); }
.av2 { background: linear-gradient(135deg,#0066ff,#00c4b4); }
.av3 { background: linear-gradient(135deg,#7c3aed,#ec4899); }
.av4 { background: var(--ink); font-size: 1rem; }
.stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 1px;
}

/* Dashboard mockup */
.hero-right {
  position: relative;
}
.dashboard {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s;
}
.dashboard:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.dash-head {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line-2);
}
.dash-dots span:nth-child(1) { background: #ff6055; }
.dash-dots span:nth-child(2) { background: #ffbb2e; }
.dash-dots span:nth-child(3) { background: #2acb40; }
.dash-title {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.dash-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.dash-row { display: flex; gap: 12px; }
.dash-row-2 { display: grid; grid-template-columns: 1fr 1fr; }
.dash-card {
  flex: 1;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.dash-card.sm { padding: 14px 16px; }
.dash-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.dash-label.small { font-size: 0.72rem; text-transform: none; letter-spacing: 0; margin-top: 8px; color: var(--ink-soft); }
.dash-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dash-value.sm { font-size: 1.4rem; }
.dash-value .up {
  font-size: 0.78rem;
  color: #00c4b4;
  font-weight: 600;
}
.muted { color: var(--muted); font-size: 0.8em; }
.bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}
.bar-fill {
  height: 100%;
  background: var(--grad-1);
  border-radius: 999px;
  animation: barGrow 1.6s ease-out;
}
@keyframes barGrow { from { width: 0; } }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-top: 4px;
}
.mc-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 4px 4px 2px 2px;
  opacity: 0.85;
  animation: barRise 1s ease-out backwards;
}
.mc-bar:nth-child(1) { animation-delay: 0.1s; }
.mc-bar:nth-child(2) { animation-delay: 0.2s; }
.mc-bar:nth-child(3) { animation-delay: 0.3s; }
.mc-bar:nth-child(4) { animation-delay: 0.4s; }
.mc-bar:nth-child(5) { animation-delay: 0.5s; }
.mc-bar:nth-child(6) { animation-delay: 0.6s; }
.mc-bar.hi {
  background: var(--grad-cta);
  opacity: 1;
}
@keyframes barRise { from { transform: scaleY(0); transform-origin: bottom; } }

.floating-pill {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  animation: float 4s ease-in-out infinite;
}
.pill-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}
.pill-1 {
  top: -10px; left: -30px;
}
.pill-1 .pill-icon { background: var(--brand-2); }
.pill-2 {
  bottom: 40px; right: -20px;
  animation-delay: 1.5s;
}
.pill-2 .pill-icon { background: var(--accent); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%    { transform: translateY(-10px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 30px 0;
  background: var(--ink);
  color: #fff;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 130px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   GENERIC SECTION HEADS
   ============================================ */
section { padding: 100px 0; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(0,102,255,0.08);
  border-radius: 999px;
}
.kicker.light { color: #00e5d0; background: rgba(0,229,208,0.12); }
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.section-head.light h2 { color: #fff; }
.section-head.light .section-sub { color: rgba(255,255,255,0.7); }

/* ============================================
   PAIN
   ============================================ */
.pain { background: var(--bg-soft); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all 0.35s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.highlight {
  background: var(--grad-dark);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-glow);
}
.service-card.highlight h3, .service-card.highlight p { color: #fff; }
.service-card.highlight p { color: rgba(255,255,255,0.8); }
.service-card.highlight .svc-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.svc-icon {
  width: 56px; height: 56px;
  background: rgba(0,102,255,0.1);
  color: var(--brand);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ============================================
   RESULTS / COUNTERS
   ============================================ */
.results {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,196,180,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,102,255,0.15) 0%, transparent 50%);
}
.results .container { position: relative; }
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.counter-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.counter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.04em;
}
.counter-suffix {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #00e5d0;
  margin-left: 2px;
}
.counter-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: #fff;
  padding: 32px 26px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
}
.step-line {
  position: absolute;
  top: 50px; right: -22px;
  width: 24px;
  height: 2px;
  background: var(--line-2);
}
.step:last-child .step-line { display: none; }
.step-time {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  background: rgba(0,196,180,0.1);
  color: #00a59a;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
}

/* ============================================
   SPECIALTIES
   ============================================ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.spec-card {
  background: #fff;
  padding: 24px 16px;
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.3s;
  cursor: default;
}
.spec-card:hover {
  background: var(--grad-1);
  color: #fff;
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.spec-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

/* ============================================
   COMPARE
   ============================================ */
.compare { background: var(--bg-soft); }
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
}
.compare-table th.us, .compare-table td.us {
  background: linear-gradient(180deg, rgba(0,102,255,0.06) 0%, rgba(0,196,180,0.06) 100%);
  color: var(--ink);
  font-weight: 600;
}
.compare-table th.us { color: var(--brand); }
.compare-table tbody tr:hover { background: rgba(0,102,255,0.02); }
.compare-table tr:last-child td { border-bottom: none; }

/* ============================================
   CALCULATOR
   ============================================ */
.calculator { background: #fff; }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 60px;
  border: 1px solid var(--line);
}
.calc-controls { margin: 32px 0; }
.ctrl { margin-bottom: 22px; }
.ctrl label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.ctrl label span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand);
}
.ctrl input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
.ctrl input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,102,255,0.3);
  transition: transform 0.2s;
}
.ctrl input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.ctrl input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
}
.calc-card {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}
.calc-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 12px;
}
.calc-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35, #ffb800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.calc-yearly {
  color: rgba(255,255,255,0.85);
  margin: 14px 0 28px;
  font-size: 0.95rem;
}
.calc-yearly strong { color: var(--gold); }
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.calc-row.total {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  border-bottom: none;
  margin-top: 8px;
}
.calc-foot {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}
.calc-foot strong { color: #00e5d0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi { background: var(--bg-soft); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card .stars { font-size: 1.05rem; margin-bottom: 16px; }
.testi-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 500;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}
.testi-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--grad-dark);
  border-radius: var(--r-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-wrap::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,196,180,0.3), transparent 70%);
}
.cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,102,255,0.25), transparent 70%);
}
.cta-left, .cta-right { position: relative; z-index: 1; }
.cta-left h2 { color: #fff; }
.cta-left p { color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 28px; }
.cta-left .kicker {
  color: #00e5d0;
  background: rgba(0,229,208,0.15);
}
.cta-checks {
  list-style: none;
  margin-bottom: 32px;
}
.cta-checks li {
  padding: 8px 0;
  color: rgba(255,255,255,0.95);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-checks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(0,229,208,0.2);
  color: #00e5d0;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.cta-line:hover { color: #00e5d0; }
.cta-line svg { color: #00e5d0; }

.form {
  background: #fff;
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.form-head h3 { margin-bottom: 4px; }
.form-head p { font-size: 0.92rem; color: var(--muted); margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}
.form-error {
  background: #fff1f0;
  border: 1px solid #ffccc7;
  color: #c0392b;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: none;
}
.form-success {
  text-align: center;
  padding: 20px 10px;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); margin-bottom: 12px; }
.form-success-foot { font-size: 0.88rem; }
.form-success-foot a { color: var(--brand); font-weight: 600; }
.success-check {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #00c4b4, #0066ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,196,180,0.35);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.spin {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer .logo { color: #fff; margin-bottom: 16px; }
.foot-tag { color: rgba(255,255,255,0.6); margin-bottom: 20px; font-size: 0.95rem; }
.foot-cert {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cert-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00e5d0;
}
.footer h4 {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 5px 0; font-size: 0.92rem; }
.footer ul li a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: #00e5d0; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  padding: 16px;
  background: var(--grad-cta);
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  z-index: 99;
  box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { display: flex; justify-content: center; }
  .dashboard { max-width: 500px; width: 100%; }
  .pain-grid,
  .services-grid,
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .spec-grid { grid-template-columns: repeat(4, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .calc-wrap, .cta-wrap { grid-template-columns: 1fr; padding: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .nav-cta .btn { display: none; }
  .nav-phone { font-size: 0.82rem; }
  .pain-grid,
  .services-grid,
  .testi-grid,
  .steps,
  .counters { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { gap: 14px; }
  .trust-num { font-size: 1.4rem; }
  .divider { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 80px; }
  .floating-pill, .live-toasts { display: none; }
  .calc-wrap, .cta-wrap { padding: 30px 22px; }
  .calc-big { font-size: 2.6rem; }
  .form { padding: 26px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.85rem; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   ADVANCED ANIMATIONS
   ============================================ */

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 50%, var(--accent) 100%);
  z-index: 200;
  box-shadow: 0 0 10px rgba(0,102,255,0.5);
  transition: width 0.1s linear;
}

/* --- Word rotator --- */
.word-rotator {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  min-width: 5ch;
}
.word-rotator-track {
  display: flex;
  flex-direction: column;
  animation: wordRotate 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.word {
  height: 1em;
  line-height: 1em;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: relative;
}
.word:nth-child(1) { background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.word:nth-child(2) { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.word:nth-child(3) { background: linear-gradient(135deg, #7c3aed, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.word:nth-child(4) { background: linear-gradient(135deg, #00c4b4, #0066ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

@keyframes wordRotate {
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-1em); }
  50%, 72%  { transform: translateY(-2em); }
  75%, 97%  { transform: translateY(-3em); }
  100%      { transform: translateY(-4em); }
}
.word-rotator::after {
  content: '|';
  position: absolute;
  right: -6px;
  top: 0;
  color: var(--brand);
  animation: caretBlink 1s steps(2) infinite;
  font-weight: 400;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* --- Animated background blobs (smooth morph) --- */
@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, 40px) scale(1.1); }
  66%      { transform: translate(-40px, 80px) scale(0.95); }
}
@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-80px, -60px) scale(1.15); }
}
.blob-1 { animation: blobMove1 22s ease-in-out infinite; }
.blob-2 { animation: blobMove2 18s ease-in-out infinite; }

/* --- Animated gradient mesh behind hero --- */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,102,255,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(0,196,180,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(255,107,53,0.04) 0%, transparent 50%);
  animation: meshDrift 30s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes meshDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, 30px) rotate(8deg); }
}

/* --- Live notification toasts --- */
.live-toasts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.toast {
  position: absolute;
  background: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10,27,61,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  white-space: nowrap;
  animation: toastIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), toastOut 0.5s 4.5s forwards;
  backdrop-filter: blur(8px);
}
.toast.t-approved { top: -10px; left: -40px; }
.toast.t-payment  { top: 80px; right: -30px; }
.toast.t-recovery { bottom: 100px; left: -20px; }
.toast.t-clean    { bottom: 20px; right: -50px; }
.toast-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.t-approved .toast-icon { background: linear-gradient(135deg,#22c55e,#10b981); }
.t-payment  .toast-icon { background: linear-gradient(135deg,#0066ff,#00c4b4); }
.t-recovery .toast-icon { background: linear-gradient(135deg,#ff6b35,#ffb800); }
.t-clean    .toast-icon { background: linear-gradient(135deg,#7c3aed,#ec4899); }
.toast-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateY(-30px) scale(0.9); }
}

/* --- Payer marquee --- */
.payer-marquee {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  padding-left: 60px;
}
.payer {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
}
.payer:hover {
  opacity: 1;
  color: var(--brand);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- 3D tilt cards --- */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* --- Magnetic buttons --- */
.btn-magnetic {
  position: relative;
  transition: transform 0.15s ease-out, box-shadow 0.25s;
  will-change: transform;
}

/* --- Pulsing glow on CTAs (animated box-shadow) --- */
.btn-glow {
  animation: ctaGlow 3.2s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% {
    box-shadow:
      0 8px 24px rgba(255,107,53,0.35),
      0 0 0 0 rgba(255,107,53,0.5);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(255,107,53,0.5),
      0 0 0 14px rgba(255,107,53,0);
  }
}
.btn-glow:hover { animation-duration: 1.4s; }

/* --- Confetti (form success) --- */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.confetti span {
  position: absolute;
  width: 10px; height: 14px;
  top: -20px;
  border-radius: 2px;
  animation: confettiFall 2.4s cubic-bezier(0.2, 0.6, 0.3, 1) forwards;
}

@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg) scale(0.6); opacity: 0; }
}

/* --- SVG process connector line --- */
.process { position: relative; }
.process-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  pointer-events: none;
  z-index: 0;
  display: none; /* shown on wide screens only */
}
@media (min-width: 1025px) {
  .process-line { display: block; }
}
.process-line path {
  stroke: var(--brand);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 8;
  stroke-dashoffset: 1000;
  animation: dashDraw 3s linear forwards;
  animation-play-state: paused;
}
.process-line.in path { animation-play-state: running; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }

/* --- Service card glow on hover --- */
.service-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-lg);
  background: var(--grad-1);
  z-index: -1;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s;
}
.service-card { isolation: isolate; }
.service-card:hover::after { opacity: 0.25; }

/* --- Highlight card pulse --- */
.service-card.highlight {
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- Specialty card bounce --- */
.spec-card { transform-origin: center; }
.spec-card:hover .spec-emoji {
  animation: bounce 0.6s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  30%      { transform: translateY(-12px) rotate(-10deg); }
  60%      { transform: translateY(-4px) rotate(8deg); }
}

/* --- Pain card icon wiggle --- */
.pain-card:hover .pain-icon {
  animation: wiggle 0.5s ease;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-15deg); }
  75%      { transform: rotate(15deg); }
}

/* --- Hero CTAs subtle attention pull --- */
.hero-ctas .btn-primary {
  animation: attentionPulse 4s ease-in-out 2s infinite;
}
@keyframes attentionPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* --- Animated underline on nav --- */
.nav-links a {
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Counter card stagger entrance --- */
.counter-card {
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s;
}
.counter-card:hover::before { transform: translateX(100%); }

/* --- FAQ smoother open --- */
.faq-item summary { transition: background-color 0.2s; }
.faq-item:hover summary { background: var(--bg-soft); }
.faq-item[open] summary { background: linear-gradient(90deg, rgba(0,102,255,0.04), transparent); }

/* --- Reduced motion respect --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .word-rotator-track { animation: none; }
  .word-rotator-track .word { display: none; }
  .word-rotator-track .word:first-child { display: block; }
}
