:root {
  color-scheme: light dark;
  --brand: #17324e;
  --brand-deep: #0d1d31;
  --accent: #19b7b3;
  --accent-soft: #67e6e1;
  --bg-main: #f4f7fb;
  --bg-soft: #eaf1f7;
  --surface: #ffffff;
  --surface-alt: rgba(255, 255, 255, 0.72);
  --border: rgba(23, 50, 78, 0.12);
  --text-primary: #132338;
  --text-secondary: #5c6f85;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.14);
  --ring: rgba(25, 183, 179, 0.34);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #08111b;
    --bg-soft: #0f1824;
    --surface: #0f1724;
    --surface-alt: rgba(15, 23, 36, 0.9);
    --border: rgba(255, 255, 255, 0.08);
    --text-primary: #f1f6fb;
    --text-secondary: #a7b4c5;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.42);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(25, 183, 179, 0.12), transparent 34%),
    radial-gradient(circle at 85% 0, rgba(23, 50, 78, 0.1), transparent 28%),
    var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body,
a,
button,
summary {
  touch-action: manipulation;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(25, 183, 179, 0.22);
  color: var(--text-primary);
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-180%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--shadow-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 27, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  color: #f6fbff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.nav-link-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.nav-link-primary {
  background: var(--accent);
  color: #072c2a;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(25, 183, 179, 0.16);
}

.nav-link-primary:hover {
  background: var(--accent-soft);
  color: #072c2a;
}

.hero {
  position: relative;
  isolation: isolate;
  color: #f2f8ff;
  min-height: clamp(560px, 82svh, 860px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--brand-deep);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(7, 13, 24, 0.88) 0%,
    rgba(7, 13, 24, 0.78) 38%,
    rgba(7, 13, 24, 0.42) 68%,
    rgba(7, 13, 24, 0.18) 100%
  );
}

.hero-bg::after {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.18) 0%, rgba(7, 13, 24, 0.08) 28%, rgba(7, 13, 24, 0.34) 100%),
    url("/assets/img/hero-startseite.jpg") center 46% / cover no-repeat;
  transform: scale(1.015);
}

.hero-copy {
  max-width: 43rem;
  animation: hero-rise 0.85s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.94;
  margin-bottom: 1rem;
  color: #f7fbff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.lead {
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(242, 248, 255, 0.92);
}

.hero-proof {
  margin-top: 1rem;
  max-width: 42rem;
  color: rgba(242, 248, 255, 0.88);
  font-weight: 700;
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

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

.btn-primary {
  background: var(--accent);
  color: #062c2a;
  box-shadow: 0 16px 38px rgba(25, 183, 179, 0.2);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #062c2a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f6fbff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
  scroll-margin-top: 96px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(237, 244, 250, 0.92));
  border-block: 1px solid var(--border);
}

@media (prefers-color-scheme: dark) {
  .section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  }
}

.section-heading {
  max-width: 44rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1.03rem;
  max-width: 62ch;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.benefit-item {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  border-top-color: rgba(25, 183, 179, 0.38);
}

.benefit-index,
.timeline-index {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.benefit-item h3,
.timeline h3,
.compare-pane h3,
.offer-panel h3,
.legal-panel h2 {
  font-size: 1.16rem;
  line-height: 1.15;
}

.benefit-item p,
.timeline p,
.compare-pane p,
.preview-note,
.offer-sub,
.offer-note,
.legal-panel p {
  color: var(--text-secondary);
}

.benefit-item p:last-child,
.timeline p:last-child,
.compare-pane p:last-child,
.legal-panel p:last-child {
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1.05rem;
  margin-top: 1.8rem;
}

.timeline li {
  list-style: none;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.timeline li:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline p {
  margin: 0.35rem 0 0;
}

.preview-panel {
  position: sticky;
  top: 104px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(25, 183, 179, 0.08), rgba(255, 255, 255, 0.78)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (prefers-color-scheme: dark) {
  .preview-panel {
    background:
      linear-gradient(180deg, rgba(25, 183, 179, 0.08), rgba(255, 255, 255, 0.02)),
      var(--surface);
  }
}

.preview-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(25, 183, 179, 0.32);
}

.preview-kicker,
.offer-label {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preview-panel h3 {
  margin-bottom: 1.1rem;
}

.preview-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.preview-row,
.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.preview-row {
  padding: 0.95rem 0;
  border-top: 1px solid var(--border);
}

.preview-row strong,
.offer-price,
.price-row dd {
  font-variant-numeric: tabular-nums;
}

.preview-row span {
  color: var(--text-secondary);
}

.preview-row strong {
  white-space: nowrap;
}

.preview-note {
  margin-top: 1rem;
}

.report-tabs {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-tab {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: transparent;
  color: rgba(242, 248, 255, 0.84);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.report-tab:hover {
  transform: translateY(-1px);
  color: #f7fbff;
}

.report-tab:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.report-tab.is-active {
  background: var(--accent);
  color: #072c2a;
  box-shadow: 0 10px 26px rgba(25, 183, 179, 0.18);
}

.report-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 0 0.2rem;
}

.report-card[hidden] {
  display: none;
}

.report-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(242, 248, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-company {
  margin: 0;
  color: #f7fbff;
  font-size: 1.08rem;
  font-weight: 800;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.report-metrics div {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-metrics span,
.calc-intro,
.calc-note {
  color: rgba(242, 248, 255, 0.78);
}

.report-metrics span,
.calc-result span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-metrics strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #f7fbff;
  font-variant-numeric: tabular-nums;
}

.report-table-wrap {
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 20, 0.2);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.report-table th,
.report-table td {
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: rgba(242, 248, 255, 0.9);
}

.report-table th {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.72);
}

.report-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.report-note {
  margin: 0;
  color: rgba(242, 248, 255, 0.82);
  font-size: 0.95rem;
}

.report-divider {
  height: 1px;
  margin: 0.4rem 0 0.1rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.loss-calculator {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.4rem;
}

.calc-intro,
.calc-note {
  margin: 0;
  font-size: 0.95rem;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.calc-field {
  display: grid;
  gap: 0.45rem;
  color: rgba(242, 248, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.calc-field input {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.82rem 0.95rem;
  background: rgba(4, 10, 20, 0.26);
  color: #f7fbff;
  font: inherit;
  font-variant-numeric: tabular-nums;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.calc-field input:focus-visible {
  outline: none;
  border-color: rgba(25, 183, 179, 0.7);
  box-shadow: 0 0 0 3px var(--ring);
}

.calc-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.calc-result div {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result strong {
  display: block;
  color: #f7fbff;
  font-size: 1.5rem;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-pane,
.offer-panel,
.legal-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.compare-pane:hover,
.offer-panel:hover,
.legal-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(25, 183, 179, 0.24);
}

.compare-pane {
  padding: 1.35rem;
}

.compare-label {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.compare-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.compare-list li {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.compare-list li::before {
  content: "";
  width: 0.76rem;
  height: 0.76rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  flex: none;
}

.compare-old li::before {
  background: rgba(239, 68, 68, 0.48);
}

.compare-new li::before {
  background: var(--accent);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.offer-panel::after {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 183, 179, 0.18), transparent 66%);
  pointer-events: none;
}

.offer-price {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.55rem);
  line-height: 0.95;
  font-weight: 800;
  color: var(--text-primary);
}

.offer-price span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.36em;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-sub {
  margin-top: 0.35rem;
}

.price-list {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.25rem;
}

.price-row {
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}

.price-row dt {
  font-weight: 700;
}

.price-row dd {
  margin: 0;
  color: var(--text-secondary);
  text-align: right;
}

.offer-note {
  margin-top: 1rem;
  max-width: 40rem;
}

.offer-cta {
  margin-top: 1.3rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

details:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(25, 183, 179, 0.24);
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-weight: 800;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: -3px;
}

details p {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  max-width: 68ch;
}

.cta-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #f4fbff;
  box-shadow: var(--shadow-strong);
}

.cta-band h2 {
  color: #f7fbff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band p {
  margin: 0.8rem 0 0;
  max-width: 62ch;
  color: rgba(244, 251, 255, 0.86);
}

.cta-band .cta-row {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--text-secondary);
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.footer-row small {
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-page {
  padding: clamp(48px, 7vw, 88px) 0 72px;
}

.legal-hero {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  margin-bottom: 0.7rem;
}

.legal-hero p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.legal-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.legal-panel h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-panel a {
  color: var(--brand);
  text-decoration: none;
}

.legal-panel a:hover,
.legal-panel a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .benefit-grid,
  .comparison-grid,
  .pricing-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .report-metrics,
  .calc-form,
  .calc-result {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: static;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .cta-row {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    align-items: flex-start;
    padding-block: 0.7rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .nav-link:not(.nav-link-primary):not(.nav-link-secondary) {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .btn,
  .nav-link {
    width: auto;
  }

  .cta-row .btn,
  .cta-band .btn {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    gap: 0.8rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .nav-link {
    min-height: 40px;
    padding: 0.58rem 0.82rem;
    font-size: 0.9rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-proof {
    font-size: 0.95rem;
  }

  .report-tabs {
    width: 100%;
  }

  .report-tab {
    flex: 1 1 0;
    text-align: center;
  }

  .report-topline {
    font-size: 0.76rem;
  }

  .report-table {
    min-width: 280px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row dd {
    text-align: left;
  }

  .compare-pane,
  .offer-panel,
  .legal-panel,
  details {
    border-radius: 22px;
  }
}

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

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

  .hero-copy,
  .benefit-item,
  .preview-panel,
  .compare-pane,
  .offer-panel,
  .legal-panel,
  details,
  .btn,
  .nav-link,
  summary {
    transform: none !important;
  }
}
