:root {
  --bg: #06111f;
  --bg-soft: #0b1728;
  --bg-panel: rgba(14, 27, 47, 0.92);
  --bg-panel-strong: rgba(18, 34, 60, 0.98);
  --border: rgba(160, 183, 212, 0.16);
  --border-strong: rgba(160, 183, 212, 0.28);
  --text: #edf5ff;
  --muted: #9eb0c8;
  --muted-strong: #bfcde0;
  --accent: #56c6ff;
  --accent-2: #7f6bff;
  --accent-3: #2ad7a4;
  --warn: #ffb356;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.26);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --font-display: "Space Grotesk", "DM Sans", sans-serif;
  --font-body: "DM Sans", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 10% 0%, rgba(86, 198, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(127, 107, 255, 0.16), transparent 24%),
    radial-gradient(circle at 80% 92%, rgba(42, 215, 164, 0.12), transparent 24%),
    linear-gradient(180deg, #06111f 0%, #081423 30%, #07101d 100%);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

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

.site-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bar {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle-bar::before {
  transform: translateY(-6px);
}

.nav-toggle-bar::after {
  transform: translateY(6px);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #03111d;
  background: linear-gradient(135deg, var(--accent) 0%, #8de0ff 100%);
  box-shadow: 0 16px 30px rgba(86, 198, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 34px rgba(86, 198, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

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

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  padding-top: 36px;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(42, 215, 164, 0.1);
  border: 1px solid rgba(42, 215, 164, 0.2);
  color: var(--accent-3);
  font-size: 0.82rem;
  font-weight: 600;
}

.eyebrow-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.hero-title {
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #78d4ff 0%, #93beff 50%, #b794ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-provider-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.provider-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.provider-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.provider-pill-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.provider-pill-label strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.provider-pill-label span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(17, 31, 53, 0.98) 0%, rgba(8, 17, 31, 0.95) 100%);
  border: 1px solid rgba(121, 151, 196, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(86, 198, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(127, 107, 255, 0.22), transparent 22%);
  pointer-events: none;
}

.hero-card-header,
.hero-card-body,
.hero-card-footer {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-card-header h2 {
  margin: 0;
  font-size: 1.02rem;
}

.hero-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--accent);
  background: rgba(86, 198, 255, 0.1);
  border: 1px solid rgba(86, 198, 255, 0.18);
}

.hero-shot {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 17, 0.6);
}

.hero-shot img {
  width: 100%;
  height: auto;
}

.hero-card-footer {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  min-width: 0;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.02rem;
  color: var(--text);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.highlight-band {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(86, 198, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(86, 198, 255, 0.12), rgba(127, 107, 255, 0.08));
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.highlight-copy strong {
  display: block;
  font-size: 1rem;
}

.highlight-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.highlight-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-chip {
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(4, 9, 17, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-chip strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.metric-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--bg-panel-strong);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.15rem;
  margin-bottom: 16px;
  background: rgba(86, 198, 255, 0.08);
  border: 1px solid rgba(86, 198, 255, 0.18);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.showcase-panel,
.copy-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.showcase-panel img,
.showcase-panel picture {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.panel-copy {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.75;
}

.bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-strong);
  line-height: 1.66;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.step-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(86, 198, 255, 0.08);
  border: 1px solid rgba(86, 198, 255, 0.2);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 18px 0 10px;
  font-size: 1.08rem;
}

.step-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.provider-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.provider-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.provider-logo {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.provider-card h3 {
  margin: 0;
  font-size: 1rem;
}

.provider-card p {
  margin: 14px 0 0;
  color: var(--muted-strong);
  line-height: 1.7;
  font-size: 0.9rem;
}

.provider-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.comparison-shell {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

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

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table td {
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.6;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  min-width: 180px;
  color: var(--text);
  font-weight: 700;
}

.comparison-good {
  color: var(--accent);
  font-weight: 700;
}

.comparison-muted {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.pricing-range {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-3);
}

.pricing-card p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.68;
  font-size: 0.9rem;
}

.pricing-math {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--muted-strong);
}

.section-footnote {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

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

.trust-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

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

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--accent);
}

.faq-body {
  padding: 0 20px 20px;
  color: var(--muted-strong);
  line-height: 1.75;
}

.cta-panel {
  padding: 44px 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(86, 198, 255, 0.14) 0%, rgba(127, 107, 255, 0.14) 100%),
    rgba(13, 25, 44, 0.94);
  border: 1px solid rgba(143, 168, 205, 0.22);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--muted-strong);
  font-size: 1.02rem;
  line-height: 1.74;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-brand p {
  margin: 12px 0 0;
  max-width: 340px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.68;
}

.page-hero {
  padding: 72px 0 30px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.66fr);
  gap: 24px;
}

.page-summary-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.page-summary-card h2 {
  margin: 0;
  font-size: 1.12rem;
}

.page-summary-card p {
  margin: 10px 0 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.page-summary-card .button-row {
  margin-top: 20px;
}

.utility-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.utility-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
}

@media (max-width: 1080px) {
  .hero-grid,
  .showcase-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .provider-grid,
  .pricing-grid,
  .trust-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(8, 17, 31, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 6px;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.5rem);
  }

  .hero-lead,
  .section-lead,
  .cta-panel p {
    font-size: 0.98rem;
  }

  .hero-provider-strip,
  .feature-grid,
  .provider-grid,
  .pricing-grid,
  .trust-grid,
  .step-grid,
  .footer-grid,
  .hero-card-footer {
    grid-template-columns: 1fr;
  }

  .highlight-band {
    padding: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .cta-panel {
    padding: 38px 22px;
  }

  .hero-card,
  .showcase-panel,
  .copy-panel,
  .page-summary-card,
  .feature-card,
  .provider-card,
  .pricing-card,
  .trust-card,
  .step-card {
    padding: 20px;
  }
}
