:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --ink: #111827;
  --muted: #4b5563;
  --soft: #6b7280;
  --line: #e5e7eb;
  --line-strong: #cbd5e1;
  --navy: #0b1f3a;
  --blue: #174ea6;
  --blue-dark: #123c7c;
  --red: #dc2626;
  --orange: #f97316;
  --warning-bg: #fff7ed;
  --green: #16a34a;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.07);
  --radius: 8px;
  --button-radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body,
button,
input {
  letter-spacing: 0;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(23, 78, 166, 0.26);
  outline-offset: 3px;
}

.landing-shell {
  min-height: 100vh;
  background: var(--bg);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  min-width: 0;
  flex: 0 1 390px;
}

.brand strong {
  display: grid;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.16;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .brand strong {
  display: block;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  margin-top: 2px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-menu a {
  color: #243044;
  border-radius: var(--radius);
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-menu a:hover {
  background: var(--surface-muted);
  color: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: var(--button-radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.section-band {
  padding: 86px 0;
}

.breadcrumbs {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.breadcrumbs .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--blue-dark);
  font-weight: 700;
}

.hero {
  padding: 64px 0 76px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  grid-template-areas:
    "copy form"
    "risk risk"
    "facts facts";
  gap: 22px 32px;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
  padding-top: 10px;
}

.hero-panel {
  grid-area: form;
  max-width: 560px;
}

.risk-note {
  grid-area: risk;
}

.service-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.service-facts-copy h2 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.service-facts-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-facts-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.service-facts-list div {
  min-height: 88px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
}

.service-facts-list dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.service-facts-list dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.report-preview {
  grid-area: preview;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 60px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.badge-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #86efac;
  border-radius: 999px;
  background: #dcfce7;
  color: #14532d;
  font-size: 14px;
  font-weight: 700;
}

.risk-note {
  padding: 20px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: var(--warning-bg);
}

.risk-note h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.risk-note p {
  color: var(--muted);
  margin-bottom: 10px;
}

.risk-note small {
  display: block;
  color: #7c2d12;
  font-size: 13px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}

.form-report-link {
  width: 100%;
  margin-top: 14px;
}

.quick-check-section {
  padding: 24px 0;
  background: #eaf7ef;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}

.quick-check-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.quick-check-field {
  display: grid;
  gap: 7px;
}

.quick-check-field span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.quick-check-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
}

.quick-check-field input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.quick-check-form .field-error {
  grid-column: 1 / -1;
  min-height: 0;
}

.quick-check-success {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  color: var(--navy);
}

.quick-check-success span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.selected-tariff {
  margin: 0;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  background: #f0fdf4;
  color: #14532d;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span:first-child {
  color: #243044;
  font-size: 14px;
  font-weight: 600;
}

.field em {
  color: var(--soft);
  font-style: normal;
  font-weight: 400;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input:hover {
  border-color: #93c5fd;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 78, 166, 0.12);
}

.field input[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  min-height: 18px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.35;
}

.consent-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  padding: 13px 18px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.24);
}

.btn-primary:hover {
  background: #15803d;
}

.btn-secondary {
  background: #ffffff;
  border-color: #bfdbfe;
  color: var(--blue-dark);
}

.btn-secondary:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

.btn:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.55;
  box-shadow: none;
}

.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: spin 800ms linear infinite;
}

.form-hint,
.final-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.report-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.report-topline,
.report-title-row,
.report-stats,
.report-priority div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-topline {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.report-title-row {
  padding: 18px 0;
}

.report-title-row small {
  display: block;
  color: var(--soft);
  font-size: 13px;
  margin-bottom: 2px;
}

.report-title-row strong {
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.risk-gauge {
  width: 86px;
  height: 86px;
  border: 10px solid #fee2e2;
  border-top-color: var(--red);
  border-right-color: var(--orange);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.risk-gauge span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--warning-bg);
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.report-stats span {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}

.report-stats b {
  display: block;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
}

.report-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.report-modules span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.report-priority {
  display: grid;
  gap: 9px;
}

.report-priority div {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  color: #334155;
  font-size: 13px;
}

.report-priority b {
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
}

.dot.critical {
  background: var(--red);
}

.dot.high {
  background: var(--orange);
}

.dot.medium {
  background: var(--blue);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 14px 0 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.muted-band {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.risk-grid,
.finding-grid,
.fine-grid,
.reason-grid,
.audience-grid,
.fact-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid,
.tariff-grid,
.steps,
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.info-card,
.finding-card,
.fine-card,
.legal-news-card,
.product-card,
.checklist-column,
.tariff-card,
.step-card,
.priority-board,
.trust-panel,
.final-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card,
.finding-card,
.fine-card,
.legal-news-card,
.checklist-column,
.step-card {
  padding: 20px;
}

.fact-panels {
  margin-top: 22px;
}

.info-card h3,
.finding-card h3,
.fine-card h3,
.legal-news-card h3,
.checklist-column h3,
.step-card h3 {
  margin-bottom: 9px;
}

.info-card p,
.finding-card p,
.fine-card p,
.legal-news-card p,
.product-card p,
.tariff-card p,
.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.fine-section {
  background: var(--navy);
  color: #dbeafe;
}

.fine-section .eyebrow {
  border-color: rgba(191, 219, 254, 0.35);
  background: rgba(239, 246, 255, 0.1);
  color: #dbeafe;
}

.fine-section h2,
.fine-section h3 {
  color: #ffffff;
}

.fine-section .section-heading p,
.fine-section .source-note {
  color: #bfdbfe;
}

.fine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fine-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.fine-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.1);
  color: #bfdbfe;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.fine-card strong {
  display: block;
  margin: 12px 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.05;
}

.fine-card p {
  color: #dbeafe;
}

.source-note {
  margin: 18px 0 0;
  font-size: 13px;
}

.legal-news-section {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-news-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px;
}

.legal-news-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: legalNewsLoop 46s linear infinite;
  will-change: transform;
}

.legal-news-carousel:hover .legal-news-track,
.legal-news-carousel:focus-within .legal-news-track {
  animation-play-state: paused;
}

.legal-news-card {
  flex: 0 0 clamp(300px, 33vw, 430px);
  min-height: 250px;
}

.legal-news-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) auto;
  gap: 8px 12px;
  align-items: start;
}

.legal-news-body h3 {
  margin-bottom: 0;
}

.legal-news-body span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.legal-news-body p {
  grid-column: 1 / -1;
}

@keyframes legalNewsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.legal-news-card time {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-dark);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.product-card,
.tariff-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 24px;
}

.product-card .btn,
.tariff-card .btn {
  align-self: end;
}

.check-list,
.checklist-column ul,
.report-structure {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.checklist-column li,
.report-structure li {
  position: relative;
  padding-left: 22px;
  color: #334155;
}

.check-list li::before,
.checklist-column li::before,
.report-structure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.findings-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.finding-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.risk-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.risk-label.critical {
  background: #fee2e2;
  color: #991b1b;
}

.risk-label.high {
  background: #ffedd5;
  color: #9a3412;
}

.risk-label.warning,
.risk-label.medium {
  background: #dbeafe;
  color: var(--blue-dark);
}

.section-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.section-cta p {
  max-width: 700px;
  color: var(--muted);
  margin-bottom: 0;
}

.split-layout,
.report-layout,
.faq-layout,
.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.sticky-copy {
  position: sticky;
  top: 108px;
}

.report-section {
  background: #ffffff;
}

.report-structure {
  margin: 22px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.priority-board {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.priority-item {
  min-height: 116px;
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.priority-item strong {
  font-size: 24px;
  color: var(--navy);
}

.priority-item span {
  color: var(--muted);
}

.priority-item.critical {
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.priority-item.high {
  background: var(--warning-bg);
  border: 1px solid #fed7aa;
}

.priority-item.medium {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tariff-card {
  position: relative;
  min-height: 100%;
}

.tariff-card.featured {
  border-color: #16a34a;
  background: #f4fbf6;
  box-shadow: 0 22px 52px rgba(22, 163, 74, 0.18);
  transform: translateY(-10px);
}

.best-badge {
  justify-self: start;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.price {
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.tariff-note {
  color: var(--muted);
  margin: 20px 0 0;
  text-align: center;
}

.tariff-microcopy {
  display: block;
  margin-top: -8px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
}

.tariff-process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.tariff-process h3 {
  margin-bottom: 14px;
}

.tariff-process ol {
  margin: 0;
  padding-left: 22px;
  color: #334155;
}

.tariff-process li + li {
  margin-top: 8px;
}

.tariff-guarantees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tariff-guarantees span {
  display: grid;
  align-items: center;
  min-height: 54px;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  background: #f0fdf4;
  color: #14532d;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.tariff-comparison {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.tariff-comparison summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 800;
}

.comparison-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.tariff-comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.tariff-comparison th,
.tariff-comparison td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

.tariff-comparison th {
  background: var(--surface-muted);
  color: var(--navy);
}

.tariff-comparison td {
  color: #334155;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
}

.trust-panel,
.final-panel {
  padding: 34px;
}

.trust-section {
  background: var(--navy);
}

.trust-section .trust-panel {
  background: #ffffff;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  background: var(--surface);
}

.final-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 430px);
  position: relative;
}

.final-panel h2 {
  margin: 14px 0 12px;
}

.final-panel p {
  color: var(--muted);
  font-size: 18px;
}

.final-panel .lead-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.final-note {
  grid-column: 1 / -1;
  margin: -16px 0 0;
}

.success-state {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 10px 0;
}

.success-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
}

.success-mark::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 13px;
  height: 20px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.success-state h3 {
  margin-bottom: 0;
}

.success-state p {
  color: var(--muted);
  margin-bottom: 0;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 44px 0;
  background: var(--navy);
  color: #dbeafe;
}

.site-footer a {
  color: #dbeafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
  gap: 26px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  background: #ffffff;
  color: var(--navy);
}

.footer-brand small {
  color: #bfdbfe;
}

.footer-disclaimer {
  max-width: 820px;
  color: #bfdbfe;
  font-size: 13px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  grid-column: 1 / -1;
  color: #93c5fd;
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .risk-grid,
  .fine-grid,
  .finding-grid,
  .tariff-grid,
  .fact-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .hero-panel .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel .field:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-menu.is-open {
    display: grid;
  }

  .site-menu a {
    min-height: 42px;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "risk"
      "facts";
  }

  h1 {
    max-width: 780px;
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .product-grid,
  .tariff-grid,
  .steps,
  .checklist-grid,
  .legal-news-layout,
  .split-layout,
  .report-layout,
  .faq-layout,
  .final-panel,
  .trust-panel,
  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-facts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tariff-card.recommended {
    order: -1;
  }

  .tariff-card.featured {
    transform: none;
  }

  .tariff-process {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .report-structure {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand strong {
    max-width: 170px;
    font-size: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 14px;
  }

  .section-band {
    padding: 58px 0;
  }

  .hero {
    padding: 40px 0 58px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero-lead,
  .section-heading p,
  .final-panel p {
    font-size: 16px;
  }

  .hero-panel,
  .report-sheet,
  .product-card,
  .tariff-card,
  .trust-panel,
  .final-panel {
    padding: 18px;
  }

  .risk-grid,
  .fine-grid,
  .finding-grid,
  .audience-grid,
  .reason-grid,
  .fact-panels,
  .service-facts-list,
  .tariff-guarantees,
  .report-stats {
    grid-template-columns: 1fr;
  }

  .section-cta {
    display: grid;
  }

  .btn,
  .success-actions,
  .success-actions .btn {
    width: 100%;
  }

  .quick-check-form,
  .quick-check-success {
    grid-template-columns: 1fr;
  }

  .quick-check-form .btn,
  .quick-check-success .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
