:root {
  --offer-badge: "Offre complète";
  --no-subscription: "Sans abonnement";
  --red: #d71920;
  --red-dark: #a70f15;
  --ink: #121212;
  --muted: #686b73;
  --line: #e7e7ea;
  --paper: #ffffff;
  --soft: #f6f2f2;
  --cream: #fbf7f4;
  --shadow: 0 24px 80px rgba(18, 18, 18, .12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(18, 18, 18, .08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #34343a;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-links .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(215, 25, 32, .22);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--red-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(215, 25, 32, .26);
}

.button:hover {
  background: var(--red-dark);
}

.button.secondary {
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(18, 18, 18, .18);
}

.button.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, .96) 0%, rgba(13, 13, 13, .82) 42%, rgba(13, 13, 13, .36) 100%),
    url("../assets/images/hero-card.jpg") center / cover no-repeat;
  color: #fff;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero-product {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 9% 1% 4% 16%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 25, 32, .38), rgba(255, 255, 255, .06));
  transform: skewY(-4deg);
}

.hero-product img {
  position: relative;
  width: min(520px, 100%);
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, .42));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(46px, 7vw, 88px);
  max-width: 920px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero .lead,
.section-head .lead,
.text-block .lead,
.plan-card .lead,
.article-page .lead {
  color: var(--muted);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-strip {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.proof-grid div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--ink);
}

.proof-grid strong {
  font-size: 20px;
}

.proof-grid span {
  color: rgba(255, 255, 255, .66);
  font-weight: 700;
}

body[data-page="home"] section[id] {
  scroll-margin-top: 96px;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--soft);
}

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

.seo-overview {
  background: var(--cream);
}

.seo-overview-intro {
  max-width: 900px;
}

.seo-overview-intro h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4.5vw, 58px);
}

.seo-overview-intro p,
.seo-overview-use-cases p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.seo-pillars article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.seo-pillars h3,
.seo-overview-use-cases h3 {
  font-size: 24px;
  line-height: 1.15;
}

.seo-pillars p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-overview-use-cases {
  max-width: 900px;
  margin-top: 46px;
  padding-left: 26px;
}

.seo-overview-use-cases a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head > div {
  max-width: 760px;
}

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

.feature {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-icon,
.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.feature p,
.kard-card p,
.post-card p,
.step p,
.contact-card p,
.footer p,
.price-list li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #18cad5;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.text-block > * + * {
  margin-top: 18px;
}

.offer-head {
  margin-bottom: 28px;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.12fr);
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.offer-visual {
  position: relative;
  min-height: 620px;
  background: #211b1c;
}

.offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(215, 25, 32, .05), rgba(215, 25, 32, .28));
}

.offer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(18, 18, 18, .07);
}

.featured-plan {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: none;
}

.featured-plan::after {
  content: var(--offer-badge);
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.price {
  font-size: 78px;
  line-height: .9;
  font-weight: 950;
}

.price small {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: var(--muted);
}

.featured-plan .price small {
  color: rgba(255, 255, 255, .68);
}

.plan-card .button {
  margin-top: auto;
}

.plan-intro {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}

.price-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  break-inside: avoid;
  margin-bottom: 10px;
  color: var(--muted);
}

.featured-plan .price-list li {
  color: rgba(255, 255, 255, .78);
}

.price-list li::before {
  content: "+";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.kards-grid,
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kard-card,
.post-card,
.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.post-thumb {
  display: block;
  overflow: hidden;
  margin: -18px -18px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--soft);
}

.post-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .25s ease;
}

.post-card:hover .post-thumb img {
  transform: scale(1.03);
}

.kard-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent), #fff 82%);
}

.kard-media img {
  width: 100%;
  aspect-ratio: 1.25 / .82;
  object-fit: cover;
}

.qr-media {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent), #fff 84%), #fff);
}

.qr-media img {
  width: min(220px, 70%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 18, 18, .12);
}

.kard-card .text-link {
  display: inline-flex;
  margin-top: 14px;
}

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

.step {
  min-height: 230px;
  padding: 24px;
  border-top: 3px solid var(--red);
  background: #fff;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner {
  min-height: 136px;
  background: #fff;
}

.partner a {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  transition: background-color 180ms ease;
}

.partner a:hover {
  background: var(--soft);
}

.partner a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.partner img {
  display: block;
  width: auto;
  max-width: min(100%, 210px);
  max-height: 72px;
  object-fit: contain;
}

.partner--sendix img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(16%) saturate(1906%) hue-rotate(158deg) brightness(92%) contrast(91%);
}

.trustpilot-section {
  background: var(--soft);
}

.trustpilot-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.trustpilot-intro p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.trustpilot-official-widget {
  min-height: 100px;
  display: grid;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cta-band {
  background: var(--red);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background: var(--ink);
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -190px;
  right: 2vw;
  color: rgba(255, 255, 255, .025);
  font-size: 620px;
  font-weight: 900;
  line-height: 1;
}

body[data-page="blog"] .page-hero::before { content: "Blog"; }
body[data-page="examples"] .page-hero::before { content: "Kards"; }
body[data-page="contact"] .page-hero::before { content: "@"; }

.page-hero::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(215, 25, 32, .16);
  filter: blur(90px);
}

.page-hero > .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(54px, 6.5vw, 86px);
}

.page-hero .lead {
  max-width: none;
  color: rgba(255, 255, 255, .82);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.chip.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.faq-hero { position: relative; overflow: hidden; padding: 64px 0 58px; background: var(--ink); color: #fff; }
.faq-hero::before { content: "?"; position: absolute; top: -190px; right: 2vw; color: rgba(255,255,255,.025); font-size: 620px; font-weight: 900; line-height: 1; }
.faq-hero::after { content: ""; position: absolute; right: 18%; bottom: -180px; width: 420px; height: 420px; border-radius: 50%; background: rgba(215,25,32,.16); filter: blur(90px); }
.faq-hero-inner { position: relative; z-index: 1; display: block; }
.faq-hero-copy { max-width: none; }
.faq-hero h1 { font-size: clamp(54px, 6.5vw, 86px); }
.faq-hero h1 span { color: var(--red); }
.faq-hero .lead { max-width: none; }
.faq-section { background: #fff; }
.faq-intro { margin-bottom: 58px; }
.faq-intro h2 { margin-top: 16px; }
.faq-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); gap: 72px; align-items: start; }
.faq-sidebar, .faq-results { min-width: 0; }
.faq-sidebar { position: sticky; top: 108px; }
.faq-sidebar > p { margin-bottom: 16px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.faq-sidebar nav { display: grid; border-top: 1px solid var(--line); }
.faq-filter { display: grid; grid-template-columns: 34px 1fr; gap: 8px; width: 100%; padding: 16px 10px 16px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-size: 14px; font-weight: 800; text-align: left; cursor: pointer; }
.faq-filter span { color: #b8b8be; font-size: 11px; }
.faq-filter:hover, .faq-filter.is-active { color: var(--ink); }
.faq-filter.is-active span { color: var(--red); }
.faq-group { margin-bottom: 58px; scroll-margin-top: 110px; }
.faq-group > header { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.faq-group > header > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; }
.faq-group h3 { font-size: clamp(24px,3vw,32px); }
.faq-group header p { margin-top: 4px; color: var(--muted); font-size: 13px; }
.faq-questions { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 55px rgba(18,18,18,.055); }
.faq-questions details { border-bottom: 1px solid var(--line); background: #fff; }
.faq-questions details:last-child { border-bottom: 0; }
.faq-questions details[open] { background: #fcfafa; }
.faq-questions summary { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 25px 26px; cursor: pointer; font-size: 17px; font-weight: 850; list-style: none; }
.faq-questions summary::-webkit-details-marker { display: none; }
.faq-questions summary i { position: relative; width: 30px; height: 30px; flex: 0 0 30px; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.faq-questions summary i::before, .faq-questions summary i::after { content: ""; position: absolute; top: 14px; left: 9px; width: 10px; height: 1.5px; background: var(--ink); transition: transform .2s ease; }
.faq-questions summary i::after { transform: rotate(90deg); }
.faq-questions details[open] summary i { border-color: var(--red); background: var(--red); }
.faq-questions details[open] summary i::before, .faq-questions details[open] summary i::after { background: #fff; transform: rotate(0); }
.faq-answer { padding: 0 78px 26px 26px; }
.faq-answer p { max-width: 720px; color: var(--muted); line-height: 1.75; }
.faq-empty { padding: 64px 24px; border: 1px solid var(--line); border-radius: 12px; text-align: center; }
.faq-empty > span { display: grid; width: 54px; height: 54px; margin: 0 auto 20px; place-items: center; border-radius: 50%; background: var(--soft); color: var(--red); font-size: 24px; font-weight: 900; }
.faq-empty p { margin: 10px 0 24px; color: var(--muted); }
.faq-contact { padding: 82px 0; background: var(--ink); color: #fff; }
.faq-contact-inner { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; }
.faq-contact h2 { margin-top: 16px; }
.faq-contact-inner > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-left: 40px; border-left: 1px solid rgba(255,255,255,.16); }
.faq-contact-inner > div:last-child p { color: rgba(255,255,255,.66); }
.faq-contact .button { flex: 0 0 auto; gap: 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}

.contact-grid-enhanced {
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 104px;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(18, 18, 18, .96), rgba(61, 13, 16, .94)),
    var(--ink);
  color: #fff;
}

.contact-info p,
.contact-info .lead {
  color: rgba(255, 255, 255, .76);
}

.contact-info a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.contact-highlights {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
}

.contact-highlights div {
  padding: 16px;
  background: rgba(255, 255, 255, .06);
}

.contact-highlights strong,
.contact-highlights span {
  display: block;
}

.contact-highlights span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-weight: 700;
}

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

.contact-form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 18, 18, .08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert p + p {
  margin-top: 6px;
}

.form-alert.success {
  color: #083d22;
  background: #d9f8e6;
}

.form-alert.error {
  color: #5a080c;
  background: #ffe1e4;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.article-layout {
  max-width: 1180px;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.article-body.has-toc {
  grid-template-columns: 250px minmax(0, 820px);
  align-items: start;
  gap: 64px;
}

.article-page {
  min-width: 0;
}

.article-content-column {
  min-width: 0;
}

.article-header {
  width: min(820px, 100%);
  margin: 0 auto;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
}

.article-header .lead {
  max-width: 720px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.article-back {
  display: inline-flex;
  margin-bottom: 32px;
}

.article-hero-image {
  width: 100%;
  max-height: 560px;
  margin-top: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.article-toc {
  position: sticky;
  top: 104px;
}

.article-toc-panel {
  overflow: hidden;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 18, 18, .06);
}

.article-toc-panel summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.article-toc-panel summary::-webkit-details-marker {
  display: none;
}

.article-toc-panel summary::after {
  content: "+";
  margin-left: auto;
  color: var(--red);
  font-size: 20px;
}

.article-toc-panel[open] summary::after {
  content: "−";
}

.article-toc-panel summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.article-toc-panel nav {
  padding: 2px 12px 16px;
  border-top: 1px solid var(--line);
}

.article-toc-panel ol {
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.article-toc-panel li + li {
  margin-top: 2px;
}

.article-toc-panel a {
  display: block;
  padding: 9px 8px 9px 12px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.article-toc-panel .toc-level-3 a {
  padding-left: 24px;
  font-size: 12px;
}

.article-toc-panel .toc-level-4 a {
  padding-left: 36px;
  font-size: 12px;
}

.article-toc-panel a:hover,
.article-toc-panel a.is-active {
  border-left-color: var(--red);
  color: var(--red);
  background: var(--soft);
}

.rich-content {
  max-width: 74ch;
  margin-top: 42px;
  color: #303138;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.78;
}

.rich-content > * + * {
  margin-top: 1.45em;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  color: var(--ink);
  line-height: 1.16;
  scroll-margin-top: 120px;
}

.rich-content h2 {
  margin-top: 2.35em;
  padding-top: .7em;
  border-top: 1px solid var(--line);
  font-size: clamp(30px, 3.6vw, 43px);
}

.rich-content h3 {
  margin-top: 2em;
  font-size: clamp(25px, 3vw, 32px);
}

.rich-content h4 {
  margin-top: 1.8em;
  font-size: clamp(20px, 2.4vw, 24px);
}

.rich-content p,
.rich-content li {
  text-wrap: pretty;
}

.rich-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 0;
  padding-left: 1.4em;
}

.rich-content li {
  padding-left: .3em;
}

.rich-content li + li {
  margin-top: .65em;
}

.rich-content li::marker {
  color: var(--red);
  font-weight: 900;
}

.rich-content strong {
  color: var(--ink);
}

.rich-content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  color: var(--ink);
  font-size: 1.05em;
  font-weight: 700;
}

.rich-content img,
.rich-content video,
.rich-content iframe {
  max-width: 100%;
  border-radius: var(--radius);
}

.rich-content iframe,
.rich-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.rich-content hr {
  margin: 2.5em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-solution-cta {
  margin-top: 52px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.article-solution-cta h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.article-solution-cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
}

.article-solution-cta .button {
  margin-top: 24px;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-summary {
  margin: 28px 0 42px;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  color: #34343a;
}

.legal-content {
  color: #2f3035;
  font-size: 17px;
}

.legal-content > * + * {
  margin-top: 16px;
}

.legal-content h2 {
  margin-top: 42px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.legal-content h3 {
  margin-top: 28px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content a,
.form-privacy-note a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}

.legal-meta,
.form-privacy-note,
.offer-legal-note {
  color: var(--muted);
  font-size: 14px;
}

.offer-legal-note {
  margin: 18px 0 0;
}

.offer-legal-note a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--soft);
}

.form-privacy-note {
  margin: 2px 0 0;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: #fff;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer img {
  width: 164px;
}

.footer-navigation {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
}

body[data-page="home"] .hero {
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, .98) 0%, rgba(13, 13, 13, .9) 50%, rgba(13, 13, 13, .6) 100%),
    url("../assets/images/hero-card.jpg") center / cover no-repeat;
}

body[data-page="home"] .hero-inner {
  min-height: min(720px, calc(100vh - 76px));
  padding: 56px 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(36px, 5vw, 72px);
}

body[data-page="home"] .hero-copy {
  width: 100%;
}

body[data-page="home"] .hero h1 {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(48px, 5.35vw, 76px);
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
}

body[data-page="home"] .hero h1 span {
  color: #ff3d43;
}

body[data-page="home"] .hero .lead {
  max-width: 630px;
  margin-top: 22px;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.6;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-offer strong {
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: .9;
  letter-spacing: -.035em;
}

.hero-offer span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

body[data-page="home"] .hero-actions {
  align-items: center;
  margin-top: 28px;
  gap: 20px;
}

.hero-secondary-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 5px;
}

.hero-secondary-link span {
  display: inline-block;
  margin-left: 7px;
  color: #ff4b51;
  transition: transform 180ms ease;
}

.hero-secondary-link:hover span {
  transform: translateX(4px);
}

body[data-page="home"] .hero-product {
  position: relative;
  align-self: center;
  min-height: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #211b1c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

body[data-page="home"] .hero-product::before {
  content: none;
}

body[data-page="home"] .hero-product img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  filter: none;
}

.hero-product figcaption,
.value-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(13, 13, 13, .88);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.hero-product figcaption strong,
.hero-product figcaption span,
.value-visual figcaption strong,
.value-visual figcaption span {
  display: block;
}

.hero-product figcaption span,
.value-visual figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

body[data-page="home"] .proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

body[data-page="home"] .proof-grid div {
  min-height: 88px;
  padding: 18px 24px;
}

body[data-page="home"] .proof-grid strong {
  font-size: 17px;
}

.home-value {
  background: #fff;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
}

.value-copy h2 {
  max-width: 740px;
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -.03em;
  text-wrap: balance;
}

.value-lead {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.value-points {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.value-points article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.value-points article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.value-points h3 {
  font-size: 21px;
}

.value-points p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.65;
}

.value-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #18cad5;
  box-shadow: var(--shadow);
}

.value-visual img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
}

.home-offer {
  background: var(--cream);
}

body[data-page="home"] .offer-head {
  max-width: 820px;
  margin-bottom: 34px;
}

body[data-page="home"] .offer-head h2 {
  letter-spacing: -.03em;
}

body[data-page="home"] .offer-shell {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  border-radius: 16px;
}

body[data-page="home"] .offer-visual {
  min-height: 650px;
}

.offer-visual-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(18, 18, 18, .22);
}

body[data-page="home"] .featured-plan {
  padding: clamp(34px, 5vw, 62px);
  border-radius: 0;
}

body[data-page="home"] .featured-plan::after {
  content: var(--no-subscription);
  top: 26px;
  right: 26px;
}

.plan-name {
  color: #ff4b51;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-page="home"] .price {
  margin-top: 20px;
}

.offer-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.offer-includes div {
  min-height: 112px;
  padding: 20px;
  background: var(--ink);
}

.offer-includes strong,
.offer-includes span {
  display: block;
}

.offer-includes strong {
  color: #fff;
  font-size: 16px;
}

.offer-includes span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.55;
}

.decision-proof {
  padding: 44px 0;
  background: var(--ink);
  color: #fff;
}

.decision-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, .55fr)) minmax(300px, 1.35fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.decision-stat,
.decision-reviews {
  min-height: 170px;
  padding: 26px;
  background: var(--ink);
}

.decision-stat {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.decision-stat strong {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.decision-stat span,
.decision-reviews p {
  margin-top: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 700;
}

.decision-reviews h2 {
  font-size: 28px;
}

.decision-reviews .trustpilot-widget {
  min-height: 52px;
  display: grid;
  align-items: center;
  margin-top: 18px;
}

.decision-reviews .trustpilot-widget a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: #00b67a;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.home-steps {
  background: #fff;
}

.section-aside {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

body[data-page="home"] .steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

body[data-page="home"] .step {
  min-height: 230px;
  border-top: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

body[data-page="home"] .step:last-child {
  border-right: 0;
}

body[data-page="home"] .step-number {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 48px;
  background: none;
  color: var(--red);
  font-size: 13px;
  letter-spacing: .08em;
}

body[data-page="home"] .partner-strip {
  grid-template-columns: repeat(5, 1fr);
}

body[data-page="home"] .seo-overview {
  background: var(--cream);
}

body[data-page="home"] .seo-overview-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 28px 64px;
  max-width: none;
}

body[data-page="home"] .seo-overview-intro h2 {
  grid-row: span 2;
  margin-top: 0;
  letter-spacing: -.03em;
}

body[data-page="home"] .seo-overview-intro p {
  margin-top: 0;
}

body[data-page="home"] .seo-pillars article {
  padding: 28px 0;
  border: 0;
  border-top: 1px solid #d8d0cc;
  border-radius: 0;
  background: transparent;
}

body[data-page="home"] .seo-overview-use-cases {
  max-width: none;
  padding: 34px;
  border-left: 0;
  border-radius: 14px;
  background: #fff;
}

body[data-page="home"] .cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.cta-band .cta-primary {
  background: #fff;
  color: var(--red-dark);
  box-shadow: 0 16px 38px rgba(100, 0, 5, .2);
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .hero-copy {
    animation: home-copy-reveal 700ms cubic-bezier(.16, 1, .3, 1) both;
  }

  body[data-page="home"] .hero-product {
    animation: home-product-reveal 850ms 90ms cubic-bezier(.16, 1, .3, 1) both;
  }
}

@keyframes home-copy-reveal {
  from { opacity: .25; transform: translateY(18px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes home-product-reveal {
  from { opacity: .2; transform: translateY(28px) scale(.985); clip-path: inset(7% 0 0 0 round 16px); }
  to { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 0 round 16px); }
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 80px 0 42px;
    grid-template-columns: 1fr;
  }

  .article-body,
  .article-body.has-toc {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-toc {
    position: static;
  }

  .article-toc-panel {
    max-height: none;
    overflow: hidden;
  }

  .hero-product {
    min-height: 380px;
  }

  .proof-grid,
  .grid-3,
  .seo-pillars,
  .kards-grid,
  .posts-grid,
  .steps,
  .partner-strip,
  .offer-shell,
  .split,
  .contact-grid,
  .form-row,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-navigation {
    justify-items: start;
  }

  .faq-hero-inner, .faq-layout, .faq-contact-inner { grid-template-columns: 1fr; gap: 42px; }
  .faq-sidebar { position: static; }
  .faq-sidebar nav { display: flex; overflow-x: auto; gap: 8px; border: 0; padding-bottom: 6px; }
  .faq-filter { display: block; width: auto; flex: 0 0 auto; padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; }
  .faq-filter span { display: none; }
  .faq-filter.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
  .faq-contact-inner > div:last-child { padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }

  .offer-visual {
    min-height: 360px;
  }

  .section-head,
  .cta-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list {
    columns: 1;
  }

  .nav {
    position: relative;
    min-height: 68px;
    padding: 12px 0;
    align-items: center;
    flex-direction: row;
  }

  .nav-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
  }

  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle i {
    position: relative;
  }

  .nav-toggle i::before,
  .nav-toggle i::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle i::before { top: -6px; }
  .nav-toggle i::after { top: 6px; }

  .site-header.is-menu-open .nav-toggle i {
    background: transparent;
  }

  .site-header.is-menu-open .nav-toggle i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-header.menu-ready .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: -16px;
    left: -16px;
    width: auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 44px rgba(18, 18, 18, .12);
  }

  .site-header.menu-ready.is-menu-open .nav-links {
    display: grid;
  }

  .site-header.menu-ready .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--soft);
  }

  .site-header.menu-ready .nav-links .nav-cta {
    background: var(--red);
    color: #fff;
  }

  body[data-page="home"] .hero-inner {
    min-height: 0;
    padding: 64px 0 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body[data-page="home"] .hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 8.4vw, 68px);
  }

  body[data-page="home"] .hero-product {
    width: min(680px, 100%);
  }

  body[data-page="home"] .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-layout,
  body[data-page="home"] .seo-overview-intro {
    grid-template-columns: 1fr;
  }

  .value-copy h2 {
    max-width: 760px;
  }

  .value-visual {
    width: min(680px, 100%);
  }

  .value-visual img {
    min-height: 440px;
  }

  body[data-page="home"] .offer-shell {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .offer-visual {
    min-height: 420px;
  }

  .decision-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-reviews {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] .step:nth-child(2) {
    border-right: 0;
  }

  body[data-page="home"] .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  body[data-page="home"] .partner-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  body[data-page="home"] .seo-overview-intro h2 {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .article-header {
    padding-bottom: 32px;
  }

  .article-header h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .article-hero-image {
    margin-top: 28px;
  }

  .rich-content {
    margin-top: 32px;
    line-height: 1.72;
  }

  .rich-content h2 {
    margin-top: 1.9em;
  }

  .rich-content blockquote {
    padding: 20px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .price {
    font-size: 68px;
  }

  .hero-product {
    min-height: 300px;
  }

  .nav-toggle span {
    display: none;
  }

  .site-header.menu-ready .nav-links {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-inner {
    padding: 48px 0 34px;
    gap: 34px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: .98;
  }

  body[data-page="home"] .hero .lead {
    font-size: 17px;
  }

  .hero-offer {
    margin-top: 22px;
  }

  .hero-offer strong {
    font-size: 44px;
  }

  body[data-page="home"] .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .hero-actions .button {
    width: 100%;
  }

  .hero-secondary-link {
    align-self: flex-start;
    padding: 8px 0;
  }

  .hero-product figcaption,
  .value-visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
  }

  body[data-page="home"] .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] .proof-grid div {
    min-height: 92px;
    padding: 15px;
  }

  body[data-page="home"] .proof-grid strong {
    font-size: 15px;
  }

  body[data-page="home"] .proof-grid span {
    font-size: 13px;
  }

  .value-layout {
    gap: 42px;
  }

  .value-copy h2 {
    font-size: 38px;
  }

  .value-lead {
    font-size: 17px;
  }

  .value-visual img {
    min-height: 360px;
  }

  body[data-page="home"] .featured-plan {
    padding: 28px 22px;
  }

  body[data-page="home"] .featured-plan::after {
    display: none;
  }

  .offer-includes,
  .decision-proof-grid,
  body[data-page="home"] .steps,
  body[data-page="home"] .partner-strip {
    grid-template-columns: 1fr;
  }

  .offer-includes div {
    min-height: 0;
  }

  .decision-reviews {
    grid-column: auto;
  }

  body[data-page="home"] .step,
  body[data-page="home"] .step:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body[data-page="home"] .step-number {
    margin-bottom: 24px;
  }

  body[data-page="home"] .seo-overview-use-cases {
    padding: 24px;
  }

  .cta-band .section-actions,
  .cta-band .button {
    width: 100%;
  }

  .page-hero,
  .faq-hero { padding: 54px 0 48px; }
  .faq-intro { margin-bottom: 42px; }
  .faq-questions summary { padding: 21px 18px; font-size: 16px; }
  .faq-answer { padding: 0 18px 22px; }
  .faq-contact-inner > div:last-child { align-items: flex-start; flex-direction: column; }
}

/* Language names remain readable when translated labels expand. */
html[lang="en"] { --offer-badge: "Complete package"; --no-subscription: "No subscription"; }
html[lang="de"] { --offer-badge: "Komplettpaket"; --no-subscription: "Ohne Abonnement"; }
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 16px;
  font-size: 14px;
}
.language-links a { padding-block: 6px; }
.language-links a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
.language-links a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
html:not([lang="fr"]) :is(h1, h2, h3, .button, .nav-links, .footer-links) {
  overflow-wrap: anywhere;
}
html:not([lang="fr"]) :is(.button, .nav-cta) { white-space: normal; text-align: center; }
