@font-face {
  font-family: "Outfit";
  src: url("assets/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f8f3;
  --bg-deep: #162033;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --text: #162033;
  --muted: #5f6a84;
  --brand: #4572a7;
  --brand-deep: #2d4f79;
  --brand-accent: #af026c;
  --accent: #dbe8f6;
  --accent-soft: #e8f1fa;
  --line: rgba(22, 32, 51, 0.1);
  --line-strong: rgba(255, 255, 255, 0.15);
  --shadow: 0 22px 60px rgba(22, 32, 51, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 241, 250, 0.92), transparent 28%),
    radial-gradient(circle at 100% 12%, rgba(223, 235, 248, 0.78), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(69, 114, 167, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 52%, #f2f5f9 100%);
  line-height: 1.55;
}

h1,
h2,
h3,
.brand {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(1.9rem, 4.1vw, 3.15rem);
  max-width: 12.3ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.7rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

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

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 244, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 244, 0.92);
  border-color: var(--line);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  min-width: 0;
}

.brand-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-weight: 600;
}

.ai-accent {
  color: var(--brand-accent);
  text-shadow: 0 0 18px rgba(175, 2, 108, 0.14);
  display: inline;
}

.btn .ai-accent,
.comparison-panel-dark .ai-accent,
.cta-band .ai-accent,
.insight-grid .ai-accent {
  color: var(--accent);
  text-shadow: none;
}

.btn-ghost .ai-accent,
.hero-copy .ai-accent,
.hero-card .ai-accent,
.comparison-panel-light .ai-accent,
.example-card .ai-accent,
.site-footer .ai-accent {
  color: var(--brand-accent);
}

.btn .ai-accent,
.btn .ai-word {
  white-space: nowrap;
}

.onmacon-icon {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(16, 32, 51, 0.14));
}

.onmacon-icon-header {
  height: 15px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #375777;
  color: #fff;
  padding: 0.95rem 1.35rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(22, 32, 51, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  background: #2d4f79;
}

.btn-sm {
  padding: 0.72rem 1rem;
}

.btn-ghost {
  color: var(--text);
  background: rgba(232, 241, 250, 0.78);
  box-shadow: inset 0 0 0 1px rgba(69, 114, 167, 0.18);
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(69, 114, 167, 0.35);
  outline-offset: 2px;
}

.hero {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  align-items: start;
}

.hero-copy,
.hero-card,
.card,
.step,
.comparison-panel,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.45rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
    linear-gradient(130deg, rgba(232, 241, 250, 0.72), transparent 52%);
}

.hero-card {
  padding: 1.05rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 241, 250, 0.82)),
    linear-gradient(135deg, rgba(214, 228, 244, 0.5), transparent 48%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(69, 114, 167, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(69, 114, 167, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
  pointer-events: none;
}

.hero-card h2 {
  font-size: clamp(1.14rem, 1.95vw, 1.38rem);
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}

.hero-card-top {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: rgba(16, 32, 51, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.pill-dark {
  background: rgba(69, 114, 167, 0.12);
  color: var(--brand-deep);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lead {
  margin-top: 1rem;
  max-width: 56ch;
  font-size: clamp(0.92rem, 1.28vw, 1rem);
  color: #1d2d42;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  flex-direction: column;
}

.btn-hero {
  min-width: min(100%, 420px);
  padding: 1.28rem 1.95rem;
  font-size: 1.16rem;
  box-shadow: 0 24px 46px rgba(22, 32, 51, 0.28);
}

.hero-link {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero-link:hover {
  color: var(--text);
}

.quick-proof,
.bullet-list,
.cta-points {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quick-proof li,
.cta-points li {
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  font-size: 0.79rem;
}

.quick-proof li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 32, 51, 0.08);
  font-weight: 600;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  min-width: 0;
}

.metric-row strong {
  color: var(--brand-deep);
  text-align: right;
}

.small-note {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.small-note-hero {
  max-width: 50ch;
  margin-top: 0.7rem;
}

.hero-offer-list {
  display: grid;
  gap: 0.18rem;
  margin: 0.02rem 0 0.45rem;
  position: relative;
  z-index: 1;
}

.offer-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.offer-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(69, 114, 167, 0.12);
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.offer-row p {
  margin-top: 0.1rem;
  color: #23354b;
  font-size: 0.84rem;
  font-weight: 600;
}

.optimizer-stack {
  display: grid;
  gap: 0.42rem;
  margin: 0.48rem 0 0.1rem;
  position: relative;
  z-index: 1;
}

.optimizer-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0.6rem;
  align-items: stretch;
}

.optimizer-item {
  padding: 0.7rem 0.82rem;
  border: 1.5px solid rgba(69, 114, 167, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.optimizer-item-before {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(69, 114, 167, 0.3);
}

.optimizer-item p {
  font-weight: 600;
  color: #23354b;
  font-size: 0.8rem;
}

.optimizer-item-before p {
  color: #40506a;
}

.term-highlight {
  display: inline;
  padding: 0.04rem 0.24rem;
  margin: 0 0.08rem;
  border-radius: 0.35rem;
  background: rgba(69, 114, 167, 0.12);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.term-highlight-strong {
  background: rgba(69, 114, 167, 0.2);
  color: #1d3554;
}

.optimizer-item-strong {
  background: linear-gradient(135deg, rgba(245, 249, 254, 1), rgba(232, 241, 250, 0.98));
  border-color: rgba(175, 2, 108, 0.42);
  box-shadow: 0 12px 28px rgba(175, 2, 108, 0.1);
}

.optimizer-label {
  display: inline-block;
  margin-bottom: 0.26rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.hero-card-list {
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.hero-card-btn {
  display: none;
}

.trust {
  padding-top: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
}

.trust-strip p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #27384f;
}

.section-head {
  margin-bottom: 1.4rem;
  max-width: 72ch;
}

.section-head.narrow {
  max-width: 66ch;
}

.section-head-wide {
  max-width: 100%;
}

.section-head p:last-child {
  margin-top: 0.8rem;
  color: var(--muted);
}

.section-title-tight {
  max-width: 18ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.section-title-wide {
  max-width: 24ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.why-now-head {
  max-width: 82ch;
}

.why-now-head h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.why-now-head p:last-child {
  max-width: 58ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.comparison-grid,
.cards,
.steps,
.cta-grid,
.insight-grid {
  display: grid;
  gap: 1rem;
}

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

.comparison-panel {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.comparison-panel-light {
  background: rgba(255, 255, 255, 0.76);
}

.comparison-panel-dark {
  background:
    linear-gradient(160deg, rgba(55, 87, 119, 0.97), rgba(45, 79, 121, 0.95)),
    linear-gradient(135deg, rgba(232, 241, 250, 0.08), transparent 52%);
  color: #f6f8fb;
}

.comparison-panel-dark::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 241, 250, 0.16), transparent 70%);
  pointer-events: none;
}

.comparison-panel-dark p,
.comparison-panel-dark h3,
.comparison-panel-dark .comparison-label {
  color: inherit;
}

.comparison-label {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bullet-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.bullet-list-bright li {
  color: rgba(243, 246, 250, 0.82);
}

.bullet-list-bright li::before {
  background: var(--accent);
}

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

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

.section-kicker {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.section-visual {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

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

.example-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.example-card-before {
  background: rgba(255, 255, 255, 0.68);
}

.example-card-after {
  background:
    linear-gradient(140deg, rgba(245, 249, 254, 0.94), rgba(232, 241, 250, 0.82)),
    rgba(255, 255, 255, 0.88);
  border-color: rgba(69, 114, 167, 0.16);
}

.example-card-after::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--brand-accent));
}

.example-status {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(69, 114, 167, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.example-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.example-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.example-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.example-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  font-weight: 600;
  font-size: 0.95rem;
  color: #23354b;
}

.card,
.step {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
}

.card-product {
  position: relative;
  overflow: hidden;
}

.card-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(69, 114, 167, 0.15));
}

.card p,
.step p,
.faq-list p,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-step {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.5rem;
  border-radius: 10px;
  background: rgba(232, 241, 250, 0.9);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-band .eyebrow {
  color: #dbe8f6;
}

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

.step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  background: var(--accent-soft);
  color: var(--brand-deep);
  font-weight: 700;
}

.cta-band {
  color: #f5f8fb;
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 235, 248, 0.16), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(69, 114, 167, 0.12), transparent 22%),
    linear-gradient(140deg, #162033 0%, #1f2d49 100%);
}

.cta-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 1.5rem;
}

.cta-copy > p:not(.eyebrow) {
  color: rgba(245, 248, 251, 0.8);
}

.cta-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 11ch;
}

.cta-copy-text {
  margin-top: 1rem;
  max-width: 28ch;
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.4;
}

.cta-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.cta-points li {
  width: fit-content;
  max-width: 100%;
  background: rgba(232, 241, 250, 0.08);
  border: 1px solid rgba(232, 241, 250, 0.12);
  color: #f5f8fb;
}

.lead-form {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
}

.lead-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  max-width: 470px;
  justify-self: end;
  align-self: start;
  margin-top: 2.9rem;
}

.lead-card h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  color: var(--text);
}

.lead-card p:not(.comparison-label):not(.form-note) {
  color: var(--text);
}

.lead-card .comparison-label {
  color: var(--brand-deep);
}

.lead-card .form-note {
  color: var(--muted);
}

.lead-card-copy {
  font-size: clamp(1.16rem, 2vw, 1.46rem);
  line-height: 1.35;
  font-weight: 500;
  max-width: 22ch;
}

.lead-form label {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

input,
select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-note {
  margin-top: 0.15rem;
  font-size: 0.84rem;
}

.form-feedback {
  min-height: 1.25rem;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--brand-deep);
}

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

.faq-list details {
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.74);
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list p {
  margin-top: 0.7rem;
}

.legal-section {
  padding-top: 0;
}

.legal-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.onmacon-icon-legal {
  height: 26px;
}

.legal-brand p {
  color: var(--muted);
}

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

.legal-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-note {
  margin-top: 1rem;
  color: var(--muted);
}

.legal-note a {
  color: var(--brand-deep);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1400px) {
  .container {
    width: min(1280px, 90vw);
  }

  .hero {
    padding-top: 3.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 1.5rem;
  }

  .hero-copy {
    padding: 1.9rem 2.25rem 2rem;
  }

  .hero-card {
    padding: 1.15rem;
  }

  h1 {
    font-size: clamp(2.2rem, 3.3vw, 3.5rem);
    max-width: 12.8ch;
  }

  .lead {
    max-width: 54ch;
    font-size: 1rem;
  }

  .btn-hero {
    min-width: 390px;
  }
}

@media (min-width: 1680px) {
  .container {
    width: min(1360px, 88vw);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(480px, 0.88fr);
    gap: 1.65rem;
  }

  .hero-copy {
    padding: 2rem 2.4rem 2.1rem;
  }

  .hero-card {
    padding: 1.2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 3vw, 3.6rem);
    max-width: 13.2ch;
  }
}

@media (max-width: 1100px) {
  .four-up,
  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .comparison-grid,
  .before-after-grid,
  .steps,
  .cta-grid,
  .four-up,
  .three-up,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  h2,
  .hero-card h2 {
    max-width: 100%;
  }

  .why-now-head h2,
  .why-now-head p:last-child {
    max-width: 100%;
  }

  .trust-strip {
    border-radius: 18px;
  }

  .hero-cta .btn,
  .cta-grid .btn,
  .btn-ghost {
    width: 100%;
  }

  .hero-link {
    width: 100%;
    text-align: center;
  }

  .optimizer-compare {
    grid-template-columns: 1fr;
  }

  .lead-card {
    margin-top: 0;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, 94vw);
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  h3 {
    font-size: 1rem;
  }

  .hero-copy,
  .hero-card,
  .comparison-panel,
  .card,
  .step,
  .lead-form,
  .faq-list details {
    padding: 1.1rem;
  }

  .metric-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .metric-row strong {
    text-align: left;
  }

  .quick-proof {
    gap: 0.5rem;
  }

  .quick-proof li,
  .cta-points li {
    width: 100%;
    border-radius: 14px;
  }

  .footer-wrap {
    align-items: flex-start;
  }
}
/* Datenschutzseite: ruhigere Typografie */
.legal-section h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  max-width: none;
}

.legal-card h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
}

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

.legal-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  max-width: 82ch;
}

.legal-card a {
  color: var(--brand-deep);
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
