/* InjuryQuote.com, clean light aesthetic with green accents.
   Mobile-first. */

:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-2: #F4F4F5;
  --surface-3: #E4E4E7;
  --text: #0A0A0A;
  --text-2: #52525B;
  --text-3: #71717A;
  --text-4: #A1A1AA;
  --border: #E4E4E7;
  --border-strong: #D4D4D8;
  --green: #6ABA7E;
  --green-hover: #5AA66E;
  --green-dim: #3D7D4A;
  --green-bg: rgba(106, 186, 126, 0.10);
  --green-border: rgba(106, 186, 126, 0.32);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-md: 0 4px 18px rgba(15, 23, 42, 0.06);
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1180px;
  --card-max: 580px;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Dot-grid background, subtle on light bg */
  background-image: radial-gradient(circle, #D4D4D8 1.25px, transparent 1.75px);
  background-size: 22px 22px;
  background-position: 0 0;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green-bg); color: var(--green-dim); }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Progress bar (top of page) */
.progress-track {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 100;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 400ms var(--easing);
  box-shadow: 0 0 12px rgba(106, 186, 126, 0.4);
}

/* Layout container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 76px;
  position: relative;
}
.brand {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
}
.brand-tld { color: var(--text-3); font-weight: 500; }

/* Language toggle, absolute right of centered brand */
.lang-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lang-toggle a { color: var(--text-3); transition: color 150ms ease; }
.lang-toggle a:hover { color: var(--text); }
.lang-toggle a.lang-active { color: var(--text); }

/* Footer links cluster */
.footer-links a {
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-family: var(--mono);
  transition: color 150ms ease;
}
.footer-links a:hover { color: var(--text); }

/* Honeypot field, off-screen but available to bots */
.hp-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Legal pages (privacy.html, terms.html) */
.legal-page {
  padding: 64px 0 96px;
}
.legal-inner {
  max-width: 760px;
}
.legal-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 12px 0 8px;
  color: var(--text);
}
.legal-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-strong);
}
.legal-page p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 36px 0 12px;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.legal-page ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a {
  color: var(--green-dim);
  border-bottom: 1px solid rgba(61, 125, 74, 0.35);
  transition: border-color 150ms ease;
}
.legal-page a:hover { border-bottom-color: var(--green-dim); }
.legal-disclaimer {
  margin-top: 36px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.legal-back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-strong);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Hero */
.hero {
  padding: 88px 0 72px;
  text-align: center;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 22px;
  color: var(--text);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

/* Calculator section */
.calculator-section {
  padding: 40px 0 96px;
  position: relative;
}
.calc-inner {
  max-width: var(--card-max);
  margin: 0 auto;
  position: relative;
}
/* Corner brackets around the card, radar/terminal tick marks */
.calc-inner::before,
.calc-inner::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-strong);
  pointer-events: none;
}
.calc-inner::before {
  top: -8px; left: -8px;
  border-right: none;
  border-bottom: none;
}
.calc-inner::after {
  bottom: 52px; right: -8px;
  border-left: none;
  border-top: none;
}

/* Card (calculator) */
.card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.card-header {
  padding: 18px 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-strong);
}
.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.live-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px var(--green);
}
.live-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 6px;
}
.live-range {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: color 200ms ease;
}
.live-range.updating { color: var(--green); }
.live-range .sep { color: var(--text-3); font-weight: 400; }

.card-body { padding: 24px; }
.question {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text);
}
.helper {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option {
  width: 100%;
  text-align: left;
  padding: 13px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 150ms var(--easing), background 150ms var(--easing);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.option:hover { border-color: var(--text-3); background: var(--surface-3); }
.option:focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-border);
}
.option.selected {
  border-color: var(--green);
  background: var(--green-bg);
}
.option-label { flex: 1; }
.option-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--text-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 150ms var(--easing);
}
.option.selected .option-check {
  background: var(--green);
  border-color: var(--green);
}
.option.selected .option-check::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bg);
  border-radius: 50%;
}

/* Card foot */
.card-foot {
  padding: 0 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}
.back-btn {
  background: transparent;
  border: none;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease;
}
.back-btn:hover:not(:disabled) { color: var(--text); }
.back-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.auto-advance-hint {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Reassurance line below card */
.reassurance {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reassurance svg { color: var(--green); flex-shrink: 0; }

/* Result screen */
.result {
  padding: 32px 24px 24px;
  text-align: center;
}
.result-label {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 10px;
}
.result-range {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.result-range .sep { color: var(--text-3); margin: 0 6px; font-weight: 400; }
.result-caveat {
  font-size: 13px;
  color: var(--text-2);
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.breakdown {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: left;
}
.breakdown-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 500;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
}
.breakdown-row + .breakdown-row { border-top: 1px solid var(--border-strong); }
.breakdown-row .k { color: var(--text-2); }
.breakdown-row .v { color: var(--text); font-weight: 500; }

/* CTAs */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  letter-spacing: -0.005em;
  width: 100%;
  transition: all 180ms var(--easing);
  position: relative;
  cursor: pointer;
}

/* Primary CTA, flat sage green for light theme. */
.btn-primary {
  background: #6ABA7E;
  color: #FFFFFF;
  border: 1px solid #5AA66E;
  box-shadow: 0 1px 2px rgba(61, 125, 74, 0.18);
}
.btn-primary:hover {
  background: #5AA66E;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(61, 125, 74, 0.22);
}
.btn-primary:active {
  transform: translateY(0);
  background: #4D9261;
  box-shadow: 0 1px 2px rgba(61, 125, 74, 0.22);
}

/* Secondary CTA, light pearlescent surface */
.btn-secondary {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F5 100%);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #E4E4E7 100%);
  border-color: var(--text-3);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(15, 23, 42, 0.04),
    0 4px 10px rgba(15, 23, 42, 0.08);
}
.btn-secondary:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(15, 23, 42, 0.08),
    0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text-3);
  border: none;
}
.btn-ghost:hover { color: var(--text); }

/* Hero CTA, wider tap target, extra presence */
.btn-hero {
  width: auto;
  padding: 16px 28px;
  font-size: 15px;
  border-radius: var(--radius);
}

/* Connect (contact) form */
.connect-form .form-row { margin-bottom: 14px; }
.connect-form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.connect-form input,
.connect-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14.5px;
  background: var(--surface-2);
  color: var(--text);
  transition: border-color 150ms ease;
}
.connect-form input:focus,
.connect-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-border);
}
.consent-block {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 8px 0 16px;
}
.consent-block label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
}
.consent-block input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Fade animation */
.fade-enter { animation: fadeSlide 320ms var(--easing); }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Blocks (FAQ) */
.block { padding: 88px 0; border-top: 1px solid var(--border); }
.section-header { margin-bottom: 40px; max-width: 720px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--green-border);
  background: var(--green-bg);
  border-radius: 999px;
}
.section-header h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--border-strong);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border-strong); }
.faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: '−'; color: var(--green); }
.faq .answer {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--text-2);
  max-width: 720px;
  line-height: 1.7;
}

/* Attorney inquiry section + dedicated attorneys.html page */
.attorney-block {
  background: var(--surface);
}
.attorney-page-hero {
  padding: 64px 0 32px;
}
.attorney-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.attorney-steps li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-strong);
  align-items: flex-start;
}
.attorney-steps li:first-child {
  border-top: none;
  padding-top: 8px;
}
.attorney-steps .step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.attorney-steps .step-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--text);
}
.attorney-steps .step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.attorney-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.attorney-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 12px;
  color: var(--text);
}
.attorney-intro {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 440px;
}
.attorney-form {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.attorney-form .form-row { margin-bottom: 14px; }
.attorney-form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.attorney-form input,
.attorney-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14.5px;
  background: var(--surface-2);
  color: var(--text);
  transition: border-color 150ms ease;
  resize: vertical;
}
.attorney-form input:focus,
.attorney-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-border);
}
.attorney-form textarea { min-height: 72px; }
.attorney-submit {
  width: 100%;
  margin-top: 4px;
}
.attorney-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
}
@media (max-width: 860px) {
  .attorney-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Footer */
.site-footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
}
.footer-disclosure {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 920px;
}
.footer-disclosure strong { color: var(--text-2); font-weight: 600; }

/* Tablet */
@media (max-width: 980px) {
  .hero { padding: 64px 0 48px; }
  .calculator-section { padding: 32px 0 72px; }
  .block { padding: 72px 0; }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .header-inner { height: 64px; }
  .brand { font-size: 22px; }
  .hero { padding: 40px 0 28px; }
  .hero-sub { font-size: 16px; }
  .calculator-section { padding: 24px 0 56px; }
  .card-header { padding: 14px 18px; }
  .card-body { padding: 18px; }
  .card-foot { padding: 0 18px 16px; }
  .question { font-size: 17px; }
  .live-range { font-size: 22px; }
  .result-range { font-size: 30px; }
  .result { padding: 24px 18px; }
  .block { padding: 56px 0; }
  .section-header { margin-bottom: 28px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-hero { width: 100%; }
  .calc-inner::before,
  .calc-inner::after { display: none; }
}
