:root {
  --ink: #3f4962;
  --ink-deep: #222b42;
  --muted: #667089;
  --bg: #f4f7fd;
  --panel: #ffffff;
  --line: #d9e2f2;
  --brand: #ff7a59;
  --brand-deep: #ef6946;
  --brand-blue: #2f74da;
  --brand-blue-deep: #235fba;
  --shadow: 0 20px 50px rgba(46, 68, 119, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 116, 218, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 72%);
}

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

a {
  color: inherit;
}

.dc-shell {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
}

.dc-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 116, 218, 0.08);
}

.dc-header-row,
.dc-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.dc-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.dc-brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf2ff 0%, #fff0eb 100%);
  color: transparent;
  font-weight: 700;
  font-size: 0;
  box-shadow: inset 0 0 0 1px rgba(47, 116, 218, 0.12);
}

.dc-brand-mark::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand) 100%);
  box-shadow: 0 6px 14px rgba(47, 116, 218, 0.18);
}

.dc-brand-copy strong,
.dc-brand-copy span {
  display: block;
}

.dc-brand-copy strong {
  color: var(--ink-deep);
  font-size: 1.15rem;
}

.dc-brand-copy span,
.dc-lead,
.dc-eyebrow-copy,
.dc-card p,
.dc-step p,
.dc-proof-item p,
.dc-footer-row p,
.dc-help-list li,
.dc-stat span {
  color: var(--muted);
}

.dc-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.dc-nav a {
  text-decoration: none;
  font-weight: 700;
}

.dc-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.dc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 14px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
}

.dc-button.is-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 122, 89, 0.26);
}

.dc-button.is-secondary {
  color: var(--brand-blue);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(47, 116, 218, 0.18);
}

.dc-button.is-link {
  min-height: auto;
  padding: 0;
  color: var(--ink-deep);
  background: transparent;
}

.dc-hero,
.dc-section {
  padding: 2.5rem 0 4rem;
}

.dc-hero {
  padding-top: 2rem;
}

.dc-hero-main > *:first-child {
  margin-top: 0;
}

.dc-hero-grid,
.dc-grid-2,
.dc-grid-3,
.dc-grid-4,
.dc-step-grid,
.dc-proof-grid,
.dc-category-grid {
  display: grid;
  gap: 1.25rem;
}

.dc-hero-grid {
  align-items: start;
}

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

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

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

.dc-display {
  margin: 0 0 1rem;
  color: var(--ink-deep);
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.dc-lead {
  font-size: 1.13rem;
  line-height: 1.7;
  max-width: 60ch;
}

.dc-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(47, 116, 218, 0.08);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dc-search-shell,
.dc-panel,
.dc-card,
.dc-category-card,
.dc-step,
.dc-proof-item,
.dc-stat,
.dc-trust-strip,
.dc-review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.dc-splash-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 239, 237, 0.94) 0%, rgba(245, 239, 237, 0.9) 48%, rgba(245, 239, 237, 0.38) 100%),
    radial-gradient(circle at top right, rgba(255, 122, 89, 0.12), transparent 30%);
}

.dc-splash-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(47, 116, 218, 0.06));
  pointer-events: none;
}

.dc-splash-hero .dc-shell {
  position: relative;
  z-index: 1;
}

.dc-splash-copy {
  max-width: 760px;
  padding: 1.1rem 0 1rem;
}

.dc-splash-copy .dc-display {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.92;
}

.dc-splash-copy .dc-lead {
  font-size: 1rem;
  margin-bottom: 0;
}

.dc-splash-search {
  margin-top: 2rem;
}

.dc-review-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  color: var(--ink-deep);
  font-weight: 700;
}

.dc-review-line .dc-stars {
  gap: 0.25rem;
}

.dc-review-line .dc-star-box {
  width: 1.9rem;
  height: 1.9rem;
}

.dc-press-band {
  background: #fff;
  border-top: 1px solid rgba(47, 116, 218, 0.08);
  border-bottom: 1px solid rgba(47, 116, 218, 0.08);
}

.dc-press-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem 0;
}

.dc-press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  color: rgba(34, 43, 66, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.dc-search-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
}

.dc-search-input {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  min-height: 4.5rem;
  padding: 0 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(47, 116, 218, 0.1);
}

.dc-search-icon {
  font-size: 1.6rem;
}

.dc-search-copy strong,
.dc-section-head h2,
.dc-category-card h3,
.dc-card h3,
.dc-step h3,
.dc-proof-item h3 {
  color: var(--ink-deep);
}

.dc-search-copy strong {
  display: block;
  font-size: 1.65rem;
}

.dc-search-copy span {
  color: var(--muted);
  font-size: 1.05rem;
}

.dc-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

.dc-trust-row span:not(.dc-stars) {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 116, 218, 0.08);
}

.dc-stars {
  display: inline-flex;
  gap: 0.35rem;
}

.dc-star-box {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background: #00b67a;
  color: #fff;
  font-size: 0.95rem;
}

.dc-section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.dc-section-head h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.dc-card,
.dc-step,
.dc-proof-item,
.dc-stat {
  padding: 1.4rem;
}

.dc-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-deep);
  font-size: 1.35rem;
}

.dc-stat.is-compact strong {
  font-size: 1.1rem;
}

.dc-stat.is-compact span {
  line-height: 1.55;
}

.dc-hero-grid > .dc-grid-2 {
  align-self: start;
}

.dc-hero-grid > .dc-grid-2 .dc-stat {
  height: auto;
}

.dc-category-card {
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dc-category-card p {
  margin: 0;
  line-height: 1.55;
}

.dc-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(46, 68, 119, 0.16);
}

.dc-category-icon {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #edf4ff 0%, #fff4ef 100%);
  color: var(--brand-blue);
  font-size: 2rem;
}

.dc-help-list {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.7;
}

.dc-trust-grid,
.dc-review-grid {
  display: grid;
  gap: 1rem;
}

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

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

.dc-trust-strip,
.dc-review-card {
  padding: 1.2rem;
}

.dc-mini-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dc-review-card strong,
.dc-trust-strip strong {
  color: var(--ink-deep);
}

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

.dc-link-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.dc-link-list h3 {
  margin-top: 0;
  color: var(--ink-deep);
}

.dc-link-list ul {
  margin: 0;
  padding-left: 1rem;
}

.dc-link-list li {
  margin-bottom: 0.55rem;
}

.dc-link-list a {
  color: var(--brand-blue-deep);
  text-decoration: none;
}

.dc-mega-menu {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 247, 253, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: var(--shadow);
}

.dc-mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.dc-mega-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(47, 116, 218, 0.1);
}

.dc-mega-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  color: var(--brand-blue-deep);
  font-size: 1.35rem;
  line-height: 1.1;
}

.dc-mega-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dc-mega-card li + li {
  margin-top: 0.6rem;
}

.dc-mega-card a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.45;
}

.dc-mega-callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(47, 116, 218, 0.12) 0%, rgba(255, 255, 255, 0.98) 62%);
  border: 1px solid rgba(47, 116, 218, 0.12);
  box-shadow: var(--shadow);
}

.dc-mega-callout h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1.55rem;
  line-height: 1.08;
}

.dc-mega-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.dc-footer-links a {
  color: var(--brand-blue-deep);
  text-decoration: none;
  font-weight: 700;
}

.dc-text-link {
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.dc-lane-grid,
.dc-compare-feature-grid,
.dc-compare-section-grid,
.dc-info-grid {
  display: grid;
  gap: 1.25rem;
}

.dc-lane-grid,
.dc-compare-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.dc-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.dc-lane-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.dc-lane-card.is-compare {
  background:
    linear-gradient(180deg, rgba(47, 116, 218, 0.08), rgba(47, 116, 218, 0.02)),
    #fff;
}

.dc-lane-card.is-quotes {
  background:
    linear-gradient(180deg, rgba(255, 122, 89, 0.08), rgba(255, 122, 89, 0.02)),
    #fff;
}

.dc-lane-card h2 {
  margin: 0 0 0.75rem;
  color: var(--ink-deep);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dc-lane-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.dc-lane-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-deep);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(47, 116, 218, 0.08);
}

.dc-lane-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dc-compare-hero {
  background:
    radial-gradient(circle at top right, rgba(47, 116, 218, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, rgba(244, 247, 253, 0.95) 100%);
}

.dc-compare-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}

.dc-compare-hero-copy {
  max-width: 56rem;
}

.dc-flagship-panel {
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(47, 116, 218, 0.12) 0%, rgba(255, 255, 255, 0.98) 52%),
    #fff;
  border: 1px solid rgba(47, 116, 218, 0.12);
  box-shadow: 0 22px 50px rgba(46, 68, 119, 0.1);
}

.dc-flagship-panel h2 {
  margin: 0.4rem 0 0.75rem;
  color: var(--ink-deep);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.dc-flagship-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dc-feature-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.dc-feature-pill-row--hero {
  margin-top: 1.1rem;
}

.dc-feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 116, 218, 0.08);
  border: 1px solid rgba(47, 116, 218, 0.11);
  color: var(--brand-blue-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.dc-compare-feature-grid--flagship .dc-category-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 253, 0.96) 100%);
}

.dc-compare-feature-grid--flagship .dc-category-card h3 {
  margin-top: 0.55rem;
}

.dc-compare-highlight-grid,
.dc-compare-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.dc-compare-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dc-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 253, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.dc-product-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1.25rem;
  line-height: 1.15;
}

.dc-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dc-product-card .dc-button {
  margin-top: auto;
}

.dc-compare-subnav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.dc-compare-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.dc-compare-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 116, 218, 0.1);
  color: var(--ink-deep);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 16px 34px rgba(46, 68, 119, 0.08);
}

.dc-breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.dc-breadcrumbs a {
  color: var(--brand-blue-deep);
  text-decoration: none;
}

.dc-breadcrumbs span {
  margin: 0 0.45rem;
}

.dc-flow-section {
  padding-top: 0;
}

#dc-flow-root {
  scroll-margin-top: 5.5rem;
}

.dc-hero #dc-flow-root,
.dc-hero + #dc-flow-root {
  margin-top: 0.9rem;
}

.dc-splash-hero #dc-flow-root {
  margin-top: 0.4rem;
}

.dc-flow-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.dc-flow-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dc-flow-title {
  margin: 0.35rem 0 0.6rem;
  color: var(--ink-deep);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.dc-flow-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dc-progress-shell {
  min-width: 180px;
}

.dc-progress-shell small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.dc-progress-bar {
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: #ebf1fa;
  border-radius: 999px;
}

.dc-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: 999px;
}

.dc-summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.dc-summary-chip {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #f4f7fd;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.dc-flow-body {
  margin-top: 1.2rem;
}

.dc-choice-grid,
.dc-form-grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.dc-choice {
  min-height: 4rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.dc-choice.is-selected {
  border-color: rgba(47, 116, 218, 0.4);
  box-shadow: inset 0 0 0 1px rgba(47, 116, 218, 0.16);
  background: #f5f9ff;
}

.dc-field {
  display: block;
}

.dc-field span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-deep);
  font-weight: 700;
}

.dc-field input,
.dc-field textarea,
.dc-field select {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-deep);
  font: inherit;
}

.dc-field textarea {
  min-height: auto;
  resize: vertical;
}

.dc-flow-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
}

.dc-flow-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.dc-success-card {
  text-align: center;
}

.dc-footer {
  background: #fff;
  border-top: 1px solid rgba(47, 116, 218, 0.12);
}

@media (max-width: 1080px) {
  .dc-grid-4,
  .dc-category-grid,
  .dc-compare-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dc-hero,
  .dc-section {
    padding: 2rem 0 3rem;
  }

  .dc-hero-grid,
  .dc-grid-2,
  .dc-grid-3,
  .dc-step-grid,
  .dc-proof-grid,
  .dc-lane-grid,
  .dc-compare-hero-grid,
  .dc-compare-feature-grid,
  .dc-compare-product-grid,
  .dc-compare-highlight-grid,
  .dc-compare-trust-grid,
  .dc-compare-section-grid,
  .dc-info-grid,
  .dc-mega-menu-grid,
  .dc-compare-points {
    grid-template-columns: 1fr;
  }

  .dc-search-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
  }

  .dc-header-row,
  .dc-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .dc-flow-top,
  .dc-flow-actions,
  .dc-form-grid,
  .dc-choice-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .dc-trust-grid,
  .dc-review-grid,
  .dc-link-grid,
  .dc-press-row {
    grid-template-columns: 1fr;
  }

  .dc-progress-shell {
    min-width: 0;
    width: 100%;
  }

  .dc-display {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .dc-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .dc-splash-copy {
    padding: 1.5rem 0 2.5rem;
  }

  .dc-splash-hero::after {
    inset: auto 0 0 0;
    height: 32%;
  }
}

@media (max-width: 640px) {
  .dc-site-header {
    position: static;
  }

  .dc-shell {
    width: min(var(--max), calc(100vw - 1rem));
  }

  .dc-grid-4,
  .dc-category-grid {
    grid-template-columns: 1fr;
  }

  .dc-header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem 0.85rem;
    padding: 0.7rem 0;
  }

  .dc-brand {
    width: auto;
    gap: 0.65rem;
    min-width: 0;
  }

  .dc-brand-mark {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 14px;
  }

  .dc-brand-mark::before {
    width: 0.72rem;
    height: 0.72rem;
  }

  .dc-brand-copy strong {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .dc-brand-copy span {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  .dc-nav {
    width: 100%;
    grid-column: 1 / -1;
    gap: 0.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dc-nav::-webkit-scrollbar {
    display: none;
  }

  .dc-nav a {
    width: auto;
    white-space: nowrap;
    text-align: left;
    font-size: 0.92rem;
  }

  .dc-nav-actions {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .dc-nav-actions .dc-button {
    width: auto;
    min-height: 2.65rem;
    padding: 0.7rem 1rem;
    white-space: nowrap;
    font-size: 0.95rem;
    text-align: center;
  }

  .dc-hero {
    padding-top: 0.55rem;
  }

  .dc-hero,
  .dc-section {
    padding-bottom: 2rem;
  }

  .dc-splash-copy {
    max-width: none;
    padding: 0.15rem 0 0.55rem;
  }

  .dc-splash-copy .dc-display {
    max-width: none;
    margin-bottom: 0.4rem;
    font-size: clamp(1.7rem, 7.1vw, 2.25rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .dc-splash-copy .dc-lead {
    font-size: 0.84rem;
    line-height: 1.25;
    max-width: none;
  }

  .dc-flagship-panel {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .dc-feature-pill {
    font-size: 0.82rem;
    padding: 0.45rem 0.72rem;
  }

  .dc-kicker {
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  .dc-search-input {
    min-height: 0;
    padding: 0.8rem 0.9rem;
  }

  .dc-search-copy strong {
    font-size: 1.02rem;
  }

  .dc-search-copy span {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .dc-review-line {
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .dc-review-line .dc-star-box {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.76rem;
  }

  .dc-trust-row {
    gap: 0.65rem;
  }

  .dc-trust-row span:not(.dc-stars) {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .dc-flow-card,
  .dc-category-card,
  .dc-trust-strip,
  .dc-review-card,
  .dc-step,
  .dc-stat {
    padding: 1.1rem;
  }

  .dc-flow-title {
    font-size: 1.55rem;
  }

  .dc-summary-chip {
    width: 100%;
    justify-content: flex-start;
  }
}
