/* ============ TOPBAR ============ */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
[data-theme="dark"] .topbar { background: #050C09; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 28px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  transition: color .2s;
}
.topbar-item strong { color: #fff; font-weight: 700; }
.topbar-item:hover { color: var(--primary); }
.topbar-sep { opacity: .35; }
.topbar-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}
.topbar-hours.is-closed .topbar-pulse {
  background: #F59E0B;
  animation: none;
}
.topbar-hours.is-closed .topbar-item { color: rgba(255,255,255,.7); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 28px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-logo .nav-logo-img {
  height: 48px;
  filter: brightness(1.05);
}
[data-theme="dark"] .nav-logo-img {
  /* Slightly brighter on dark backgrounds */
  filter: brightness(1.1) saturate(1.1);
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .nav-logo-mark { background: var(--primary); color: var(--bg); }
.nav-logo-text { letter-spacing: -0.03em; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a {
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background .2s, transform .2s;
}
.nav-icon-btn:hover { background: var(--surface-2); transform: rotate(15deg); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
}
.phone-pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 1.4s infinite;
}
.nav-cta {
  padding: 12px 20px;
  font-size: 14px;
}
.nav-burger { display: none; }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
  }
  .nav-burger span { width: 18px; height: 2px; background: var(--text); border-radius: 1px; }
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 28px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  font-weight: 700;
  font-size: 16px;
  padding: 8px 0;
  color: var(--text);
}

/* ============ HERO ============ */
.hero {
  padding: 36px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-orb-1 {
  top: -10%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(74, 222, 128, .35), transparent 70%);
  opacity: .55;
}
.hero-orb-2 {
  bottom: -10%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14, 143, 94, .25), transparent 70%);
  opacity: .55;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .35;
  animation: dot-pulse 1.6s infinite ease-out;
}
@keyframes dot-pulse {
  0% { transform: scale(.6); opacity: .35; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero-title {
  font-size: clamp(46px, 6.4vw, 96px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-strike {
  position: relative;
  color: var(--muted);
  display: inline-block;
}
.hero-strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 55%;
  height: 8px;
  background: var(--primary);
  border-radius: 999px;
  transform: rotate(-3deg);
  animation: strike-in .8s ease-out .4s both;
  transform-origin: left;
}
@keyframes strike-in {
  from { transform: scaleX(0) rotate(-3deg); }
  to { transform: scaleX(1) rotate(-3deg); }
}
.hero-accent { color: var(--primary); }
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--text-muted);
}
.hero-sub strong { color: var(--text); }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-bottom: 36px;
  font-size: 14px;
  font-weight: 600;
}
.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.hero-checks svg { color: var(--primary); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars .ha {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border: 3px solid var(--bg);
  margin-left: -12px;
}
.hero-trust-avatars .ha:first-child { margin-left: 0; }
.hero-trust-stars { color: var(--warn); font-size: 14px; }
.hero-trust-text { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero-trust-text strong { color: var(--text); }

.hero-right {
  position: relative;
}
.calc-float-spark {
  position: absolute;
  font-size: 24px;
  z-index: 2;
  animation: float-up 3s ease-in-out infinite;
}
.calc-float-spark.s1 { top: -18px; right: 40px; animation-delay: 0s; }
.calc-float-spark.s2 { bottom: 28px; left: -22px; animation-delay: 1.5s; }

/* ============ CALCULATOR ============ */
.calc {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.calc-header { margin-bottom: 24px; }
.calc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 5px;
  background: var(--surface-2);
  border-radius: 999px;
  margin-bottom: 28px;
}
.calc-tab {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s;
}
.calc-tab.active {
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .calc-tab.active { background: var(--surface); }

.calc-slider-box { margin-bottom: 28px; }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.calc-slider-label span { color: var(--text-muted); font-size: 14px; font-weight: 600; }
.calc-slider-label strong {
  font-size: 36px;
  font-weight: 900;
  font-feature-settings: "tnum";
  color: var(--text);
  letter-spacing: -.02em;
}
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  outline: none;
  background: var(--line);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14,143,94,.4);
  transition: transform .15s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--primary);
  cursor: pointer;
}
.calc-range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-mono);
}

.calc-result {
  background: linear-gradient(135deg, rgba(74,222,128,.12), rgba(14,143,94,.08));
  border: 1px solid rgba(74,222,128,.25);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 22px;
}
[data-theme="dark"] .calc-result {
  background: linear-gradient(135deg, rgba(52,211,153,.1), rgba(52,211,153,.04));
  border-color: rgba(52,211,153,.2);
}
.calc-result-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.calc-result-item { flex: 1; }
.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.calc-result-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-700);
  font-feature-settings: "tnum";
  letter-spacing: -.02em;
  line-height: 1;
}
[data-theme="dark"] .calc-result-value { color: var(--primary); }
.calc-result-value.calc-year { font-size: 44px; }
.calc-divider {
  width: 1px;
  height: 48px;
  background: rgba(14,143,94,.25);
}
.calc-result-bar {
  height: 8px;
  background: rgba(14,143,94,.15);
  border-radius: 999px;
  position: relative;
  overflow: visible;
}
.calc-result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent-bright));
  border-radius: 999px;
  transition: width .6s ease;
}
.calc-result-bar span {
  position: absolute;
  right: 0; top: -22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-700);
}
[data-theme="dark"] .calc-result-bar span { color: var(--primary); }

.calc-cta {
  width: 100%;
  justify-content: center;
}
.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ STATS ============ */
.stats { padding: 100px 0 60px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.stat-card:hover::before { width: 100%; }
.stat-icon { font-size: 28px; margin-bottom: 18px; }
.stat-value {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  font-feature-settings: "tnum";
}
.stat-prefix { font-size: 24px; font-weight: 700; color: var(--text-muted); margin-right: 4px; }
.stat-label {
  font-size: 15px;
  font-weight: 700;
  margin-top: 14px;
  color: var(--text);
}
.stat-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  position: relative;
  isolation: isolate;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card > .service-badge,
.service-card > h3,
.service-card > p,
.service-card > .service-list,
.service-card > .service-cta {
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-electric { background: linear-gradient(180deg, var(--surface), var(--surface)); }
.service-telecom {
  background: linear-gradient(180deg, var(--deep), var(--ink));
  color: #fff;
  border-color: var(--ink);
}
[data-theme="dark"] .service-telecom {
  background: linear-gradient(180deg, var(--primary-700), #064429);
  color: #fff;
}
.service-telecom h3, .service-telecom .service-list { color: #fff; }
.service-telecom p { color: rgba(255,255,255,.7); }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14,143,94,.12);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.service-telecom .service-badge {
  background: rgba(74,222,128,.2);
  color: var(--accent);
}
[data-theme="dark"] .service-badge { color: var(--primary); }
.service-card h3 { font-size: clamp(24px, 2vw, 32px); margin-bottom: 16px; max-width: 380px; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.service-list li > i.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  flex-shrink: 0;
}
.service-telecom .service-list li > i.check { background: var(--primary); }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  transition: gap .2s;
}
.service-cta:hover { gap: 14px; }
.service-telecom .service-cta { color: var(--accent); border-color: var(--accent); }
.service-art {
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: 0;
  color: var(--primary);
  opacity: .25;
  pointer-events: none;
}
.service-telecom .service-art { color: var(--accent); opacity: .35; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px; }
}

/* ============ LIVE COMPARISON ============ */
.compare-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.compare-toolbar-left { display: inline-flex; align-items: center; gap: 10px; }
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse-ring 1.6s infinite;
}
.compare-toolbar-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.seg {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.seg-btn {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}
.seg-btn.active {
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .seg-btn.active { background: var(--surface); }

.compare-table {
  display: flex;
  flex-direction: column;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1fr 1fr 1.5fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background .3s ease;
}
.compare-row:last-child { border-bottom: none; }
.compare-head {
  background: var(--surface-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  padding: 14px 28px;
}
.compare-row.is-highlight:not(.compare-head) {
  background: var(--surface-2);
}
.compare-row.is-best {
  background: rgba(74,222,128,.07);
  border-left: 4px solid var(--primary);
  padding-left: 24px;
}
.compare-row.is-current {
  background: rgba(239,68,68,.05);
  opacity: .85;
}
.prov-cell { display: flex; align-items: center; gap: 12px; }
.prov-mark {
  width: 10px; height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
}
.prov-name { font-weight: 700; font-size: 16px; }
.prov-plan { font-size: 14px; color: var(--text); display: block; }
.prov-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.num { text-align: right; }
.mono { font-family: var(--font-mono); font-size: 14px; font-feature-settings: "tnum"; }
.mono strong { font-size: 17px; }
.best-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.current-pill {
  display: inline-flex;
  background: rgba(239,68,68,.1);
  color: var(--danger);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.compare-summary {
  background: var(--ink);
  color: #fff;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
[data-theme="dark"] .compare-summary { background: var(--surface-2); }
.compare-summary-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .65;
  margin-bottom: 4px;
}
.compare-summary-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.compare-summary-year {
  font-size: 14px;
  opacity: .65;
  font-weight: 500;
}

@media (max-width: 900px) {
  .compare-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .compare-head, .compare-row > *:nth-child(3) { display: none; }
  .compare-row.is-best { padding-left: 16px; }
}

/* ============ QUIZ ============ */
.quiz { position: relative; overflow: hidden; }
.quiz-orb {
  top: 50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,.25), transparent 70%);
  transform: translateY(-50%);
}
.quiz-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz-intro {
  text-align: center;
  padding: 20px;
}
.quiz-intro-icon { font-size: 72px; margin-bottom: 16px; }
.quiz-intro h3 { font-size: 36px; }
.quiz-progress { margin-bottom: 32px; }
.quiz-progress-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.quiz-progress span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.quiz-q {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quiz-options.four { grid-template-columns: repeat(2, 1fr); }
.quiz-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
  transition: all .2s;
  cursor: pointer;
  min-height: 120px;
}
.quiz-option:hover {
  border-color: var(--primary);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.quiz-option.selected {
  border-color: var(--primary);
  background: rgba(74,222,128,.08);
}
.quiz-option-icon { font-size: 28px; }
.quiz-option-label { font-size: 15px; font-weight: 700; color: var(--text); }
.quiz-option-check {
  position: absolute;
  top: 14px; right: 14px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.quiz-option.selected .quiz-option-check { display: inline-flex; }
.quiz-back {
  margin-top: 28px;
  text-align: center;
  min-height: 24px;
}
.quiz-back-btn {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.quiz-back-btn:hover { color: var(--text); }

.quiz-result { text-align: center; padding: 12px; animation: fadeUp .5s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}
.quiz-result-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 8px; }
.quiz-result-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.quiz-result-desc {
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.quiz-result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 22px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-result-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.quiz-result-stat-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
  font-feature-settings: "tnum";
}
.quiz-result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .quiz-options, .quiz-options.four { grid-template-columns: 1fr 1fr; }
  .quiz-shell { padding: 32px 24px; }
}

/* ============ UPLOAD ============ */
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.upload-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.upload-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.upload-bullets svg { color: var(--primary); }
.upload-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.upload-success {
  text-align: center;
  padding: 60px 40px;
}
.upload-success-icon { font-size: 64px; margin-bottom: 18px; }
.dropzone {
  border: 2px dashed var(--line-2);
  border-radius: var(--r-md);
  padding: 50px 30px;
  text-align: center;
  background: var(--surface-2);
  cursor: pointer;
  transition: all .25s;
}
.dropzone:hover, .dropzone.dragging {
  border-color: var(--primary);
  background: rgba(74,222,128,.08);
}
.dropzone-icon { color: var(--primary); margin-bottom: 16px; display: flex; justify-content: center; }
.dropzone-types {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-top: 14px;
}
.upload-files {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upload-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: 12px;
}
.upload-file-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
[data-theme="dark"] .upload-file-icon { background: var(--surface); }
.upload-file-info { flex: 1; min-width: 0; }
.upload-file-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-file-size { font-size: 12px; color: var(--text-muted); }
.upload-file-x {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.upload-file-x:hover { background: var(--paper); color: var(--danger); }

.upload-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.upload-form input {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.upload-form input:focus { border-color: var(--primary); }
.upload-submit {
  grid-column: span 2;
  width: 100%;
  justify-content: center;
}
.upload-submit:disabled {
  background: var(--line-2);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 900px) {
  .upload-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ PROCESS ============ */
.process-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.process-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
}
.process-progress {
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: var(--line);
  border-radius: 999px;
  z-index: 0;
}
.process-progress-fill {
  width: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: height .35s ease;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-radius: 12px;
  text-align: left;
  transition: background .2s;
  position: relative;
  z-index: 1;
}
.process-step:hover { background: var(--surface-2); }
.process-step.active { background: var(--surface-2); }
.process-step-n {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-muted);
  border: 2px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: all .25s;
}
.process-step.active .process-step-n {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}
.process-step.done .process-step-n {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.process-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color .2s;
}
.process-step.active .process-step-title, .process-step.done .process-step-title { color: var(--text); }

.process-detail {
  padding: 12px 0;
  animation: fadeUp .35s ease-out;
}
.process-detail-icon { font-size: 56px; margin-bottom: 16px; }
.process-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.process-duration {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.process-detail-title {
  font-size: clamp(28px, 2.6vw, 38px);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.process-detail-lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.process-detail-desc {
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.process-nav {
  display: flex;
  gap: 12px;
}
.process-nav button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .process-shell { grid-template-columns: 1fr; padding: 24px; }
  .process-rail { flex-direction: row; gap: 4px; overflow-x: auto; }
  .process-progress { display: none; }
  .process-step { min-width: 180px; }
}

/* ============ ADVANTAGES ============ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.adv-card {
  display: flex;
  flex-direction: column;
}
.adv-icon { font-size: 36px; margin-bottom: 16px; }
.adv-title { font-size: 19px; margin-bottom: 10px; }
.adv-desc { font-size: 14px; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.adv-meta {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .14em;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
@media (max-width: 900px) {
  .adv-grid { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testi-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-google:hover { color: var(--primary); }
.testi-google-stars { color: var(--warn); }
.testi-stage {
  margin-top: 56px;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.testi-card {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.testi-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text);
}
.testi-stars { color: var(--warn); font-size: 14px; letter-spacing: 2px; }
.testi-quote {
  font-size: 96px;
  font-weight: 900;
  line-height: .8;
  color: var(--primary);
  opacity: .25;
  font-family: Georgia, serif;
  position: absolute;
  top: 24px; right: 36px;
}
.testi-text {
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 720px;
  letter-spacing: -.005em;
  font-weight: 500;
}
.testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.testi-author-name { font-weight: 800; font-size: 15px; }
.testi-author-meta { font-size: 13px; color: var(--text-muted); }
.testi-savings { text-align: right; }
.testi-savings-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.testi-savings-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
}
.testi-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  transition: all .2s;
}
.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 999px;
}
.testi-arrows { display: flex; gap: 8px; }
.testi-arrows button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .2s;
}
.testi-arrows button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 720px) {
  .testi-card { padding: 28px 22px; }
  .testi-text { font-size: 17px; }
  .testi-quote { font-size: 64px; top: 14px; right: 20px; }
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-help { margin-top: 28px; }
.faq-help-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  transition: background .2s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
}
[data-theme="dark"] .contact-info-card {
  background: var(--surface-2);
  color: var(--text);
}
.contact-info-card h3 { color: #fff; }
[data-theme="dark"] .contact-info-card h3 { color: var(--text); }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-info-icon { background: var(--surface); }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .6;
  margin-bottom: 4px;
}
.contact-info-item a { color: #fff; }
[data-theme="dark"] .contact-info-item a { color: var(--text); }
.contact-info-item a:hover { color: var(--primary); }
.contact-map { margin-top: 28px; border-radius: var(--r-md); overflow: hidden; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.contact-form label.full { display: flex; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form label.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.contact-form label.check input {
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--primary);
}
.contact-submit {
  justify-content: center;
  margin-top: 6px;
}
.contact-submit:disabled {
  background: var(--line-2);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}
.contact-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.contact-success-icon { font-size: 64px; margin-bottom: 16px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 32px;
}
[data-theme="dark"] .footer { background: #050C09; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: #fff; }
.footer-brand .nav-logo-mark { background: var(--primary); color: var(--ink); }
.footer p { color: rgba(255,255,255,.6); }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li, .footer-col a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links { display: flex; gap: 8px; }
.footer-bottom-links a { color: rgba(255,255,255,.65); }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-tag {
  background: rgba(74,222,128,.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ FLOAT CHAT ============ */
.float-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}
.float-chat-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(14,143,94,.5);
  position: relative;
  transition: transform .2s;
}
.float-chat-btn:hover { transform: scale(1.08); }
.float-chat-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 22px; height: 22px;
  background: #EF4444;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid var(--bg);
  animation: float-up 2s infinite ease-in-out;
}
.float-chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: fadeUp .25s ease-out;
}
.float-chat-header {
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-theme="dark"] .float-chat-header { background: var(--surface-2); }
.float-chat-header button {
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.float-chat-options {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.float-chat-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  color: var(--text);
  transition: background .2s;
}
.float-chat-option:hover { background: var(--surface-2); }
.float-chat-option > span {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-chat-option strong { display: block; font-size: 14px; }
.float-chat-option small { font-size: 12px; color: var(--text-muted); }
.float-chat-option.whatsapp > span { background: rgba(37,211,102,.15); }
.float-chat-option.viber > span { background: rgba(124,58,237,.15); }
.float-chat-option.phone > span { background: rgba(14,143,94,.15); }
.float-chat-option.form > span { background: rgba(251,191,36,.15); }

/* ============================================================
   MOBILE OVERRIDES
   ============================================================ */

@media (max-width: 720px) {
  /* Nav */
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .nav-logo { font-size: 17px; }
  .nav-logo-img { height: 34px; }
  .nav-logo-mark { width: 34px; height: 34px; }
  .nav-icon-btn { width: 38px; height: 38px; }

  /* Topbar — keep readable on mobile */
  .topbar { font-size: 12px; }
  .topbar-inner { padding: 8px 20px; gap: 8px; justify-content: center; }
  .topbar-right { display: none; }
  .topbar-left { width: 100%; justify-content: center; }
  .topbar-hours { flex-wrap: wrap; justify-content: center; line-height: 1.5; }
  .topbar-hours .topbar-sep { display: none; }
  .topbar-hours br + * { width: 100%; }
  .topbar-today { display: none; }

  /* Hero */
  .hero { padding: 24px 0 64px; }
  .hero-grid { gap: 40px; }
  .hero-title {
    font-size: clamp(38px, 11vw, 56px);
    margin-bottom: 20px;
  }
  .hero-strike::after { height: 6px; top: 58%; }
  .hero-sub { font-size: 17px; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 12px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-checks { gap: 12px 16px; margin-bottom: 28px; font-size: 13px; }
  .hero-actions { margin-bottom: 32px; }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero-trust { gap: 12px; }
  .hero-trust-avatars .ha { width: 34px; height: 34px; font-size: 13px; border-width: 2px; margin-left: -10px; }
  .hero-trust-text { font-size: 12px; }
  .hero-orb-1, .hero-orb-2 { width: 320px; height: 320px; }

  /* Calculator */
  .calc { padding: 24px 20px; border-radius: 24px; }
  .calc-tabs { padding: 4px; gap: 4px; }
  .calc-tab { padding: 9px 6px; font-size: 12px; }
  .calc-slider-label strong { font-size: 28px; }
  .calc-result { padding: 18px; }
  .calc-result-row { gap: 14px; }
  .calc-result-value { font-size: 26px; }
  .calc-result-value.calc-year { font-size: 30px; }
  .calc-divider { height: 36px; }
  .calc-float-spark { font-size: 20px; }
  .calc-float-spark.s1 { right: 12px; top: -12px; }
  .calc-float-spark.s2 { left: -8px; bottom: 16px; }

  /* Marquee */
  .marquee { padding: 14px 0; }
  .marquee-track { font-size: 12px; gap: 32px; animation-duration: 30s; }
  .marquee-track span { gap: 32px; }

  /* Stats */
  .stats { padding: 56px 0 32px; }
  .stat-card { padding: 22px 18px; }
  .stat-icon { font-size: 22px; margin-bottom: 12px; }
  .stat-value { font-size: 36px; }
  .stat-prefix { font-size: 18px; }
  .stat-label { font-size: 14px; margin-top: 10px; }
  .stat-sub { font-size: 12px; }

  /* Services */
  .service-card { padding: 28px 22px; border-radius: 28px; }
  .service-list li { font-size: 14px; gap: 10px; }
  .service-list li span { width: 20px; height: 20px; font-size: 11px; }
  .service-art svg { width: 140px; height: 140px; }

  /* Quiz */
  .quiz-shell { padding: 28px 20px; min-height: 0; border-radius: 24px; }
  .quiz-intro-icon { font-size: 56px; }
  .quiz-intro h3 { font-size: 28px; }
  .quiz-q { font-size: 22px; margin-bottom: 22px; line-height: 1.2; }
  .quiz-options, .quiz-options.four {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .quiz-option { padding: 16px 14px; min-height: 100px; }
  .quiz-option-icon { font-size: 22px; }
  .quiz-option-label { font-size: 13px; }
  .quiz-option-check { width: 20px; height: 20px; top: 10px; right: 10px; }
  .quiz-result-title { font-size: 26px; }
  .quiz-result-stats {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }
  .quiz-result-stat-value { font-size: 22px; }
  .quiz-result-actions .btn { flex: 1; justify-content: center; }
  .quiz-orb { width: 320px; height: 320px; }

  /* Upload */
  .upload-grid { gap: 28px; }
  .upload-shell { padding: 24px 20px; border-radius: 24px; }
  .dropzone { padding: 32px 20px; }
  .dropzone-icon svg { width: 36px; height: 36px; }
  .upload-form { grid-template-columns: 1fr; }
  .upload-submit { grid-column: span 1; }
  .upload-bullets li { font-size: 14px; }
  .upload-success { padding: 40px 24px; }
  .upload-success-icon { font-size: 48px; }

  /* Process */
  .process-shell {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 28px;
    border-radius: 24px;
  }
  .process-rail {
    flex-direction: row;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 4px 12px;
    margin: 0 -4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .process-rail::-webkit-scrollbar { height: 4px; }
  .process-progress { display: none; }
  .process-step {
    min-width: 64px;
    width: 64px;
    flex-shrink: 0;
    flex-direction: column;
    gap: 8px;
    padding: 10px 6px;
    scroll-snap-align: center;
  }
  .process-step-n { width: 34px; height: 34px; font-size: 13px; }
  .process-step-title {
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .process-detail-icon { font-size: 44px; margin-bottom: 12px; }
  .process-detail-meta { flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
  .process-detail-title { font-size: 24px; }
  .process-detail-lead { font-size: 16px; margin-bottom: 12px; }
  .process-detail-desc { font-size: 15px; margin-bottom: 24px; }
  .process-nav .btn { flex: 1; justify-content: center; }

  /* Advantages */
  .adv-card { padding: 24px 22px; }
  .adv-icon { font-size: 30px; margin-bottom: 12px; }
  .adv-title { font-size: 17px; }
  .adv-desc { font-size: 14px; margin-bottom: 14px; }

  /* Testimonials */
  .testi-stage { margin-top: 36px; }
  .testi-card { padding: 24px 20px; border-radius: 24px; }
  .testi-card-top { margin-bottom: 14px; }
  .testi-tag { font-size: 11px; padding: 5px 10px; }
  .testi-text { font-size: 16px; margin-bottom: 22px; line-height: 1.5; }
  .testi-quote { font-size: 56px; top: 12px; right: 18px; }
  .testi-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
  }
  .testi-savings { text-align: left; }
  .testi-savings-value { font-size: 22px; }
  .testi-avatar { width: 40px; height: 40px; font-size: 15px; }
  .testi-author-name { font-size: 14px; }
  .testi-author-meta { font-size: 12px; }
  .testi-controls { margin-top: 20px; }
  .testi-arrows button { width: 38px; height: 38px; }

  /* FAQ */
  .faq-grid { gap: 28px; }
  .faq-q { padding: 18px 18px; font-size: 15px; gap: 12px; }
  .faq-q-icon { width: 28px; height: 28px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14px; }
  .faq-help { padding: 22px; }
  .faq-help-actions .btn { flex: 1; justify-content: center; }

  /* Contact */
  .contact-info-card, .contact-form-wrap { padding: 26px 22px; border-radius: 24px; }
  .contact-info-list { gap: 18px; }
  .contact-info-icon { width: 38px; height: 38px; font-size: 16px; }
  .contact-success { padding: 40px 24px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 32px; padding-bottom: 36px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 14px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
  }

  /* Float chat */
  .float-chat { right: 16px; bottom: 16px; }
  .float-chat-btn {
    width: 54px; height: 54px;
    box-shadow: 0 10px 24px rgba(14,143,94,.45);
  }
  .float-chat-panel {
    width: calc(100vw - 32px);
    max-width: 340px;
    right: 0;
    bottom: 68px;
  }
}

@media (max-width: 480px) {
  /* Stats single column */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 18px 16px; }
  .stat-value { font-size: 30px; }
  .stat-prefix { font-size: 16px; }
  .stat-label { font-size: 13px; }
  .stat-sub { font-size: 11px; }

  /* Tighter calculator */
  .calc-tab { font-size: 11px; padding: 8px 4px; }
  .calc-slider-label strong { font-size: 24px; }
  .calc-result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .calc-divider { display: none; }
  .calc-result-value { font-size: 28px; }
  .calc-result-value.calc-year { font-size: 32px; }

  /* Hero actions stacked */
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; }

  /* Quiz tighter */
  .quiz-q { font-size: 20px; }
  .quiz-option { min-height: 88px; padding: 14px 12px; }

  /* Testimonials stars layout */
  .testi-card-top { gap: 8px; flex-wrap: wrap; }
}

/* Tablet tweaks */
@media (max-width: 900px) and (min-width: 721px) {
  .hero-grid { gap: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; }
