:root {
  --ink: #12231f;
  --ink-soft: #4b5d56;
  --muted: #4b5d56;
  --paper: #fffdf8;
  --cream: #f5f0e6;
  --cream-deep: #e8decb;
  --green: #125844;
  --green-bright: #1d7158;
  --mint: #d9efe5;
  --coral: #d7634f;
  --amber: #f2b84b;
  --white: #fff;
  --border: rgba(18, 35, 31, 0.14);
  --shadow: 0 30px 90px rgba(18, 35, 31, 0.14);
  --shadow-small: 0 12px 36px rgba(18, 35, 31, 0.09);
  --content-width: 1280px;
  --page-gutter: 48px;
  --map-x: 50%;
  --map-y: 50%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 94% 3%, rgba(217, 239, 229, 0.72), transparent 29rem),
    var(--paper);
  color: var(--ink);
}
button, input, select { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.landing-header {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 13px;
  flex: 0 0 auto;
}
.brand strong, .brand small { display: block; }
.brand strong { letter-spacing: -0.03em; }
.brand-inline {
  color: var(--green);
  font-weight: 850;
}
.brand small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landing-header nav { display: flex; gap: clamp(14px, 1.7vw, 24px); }
.landing-header nav a, .landing-footer a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}
.footer-topic-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.answer-band {
  width: min(calc(100% - 40px), 1320px);
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(18, 35, 31, 0.12);
  border-radius: 28px;
  background: #f4f0e7;
}

.answer-band-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.answer-band-heading h2 {
  margin: 8px 0 0;
}

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

.answer-band-grid article {
  min-width: 0;
  padding: 22px;
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(18, 35, 31, 0.06);
}

.answer-band-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.answer-band-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 780px) {
  .answer-band {
    width: min(calc(100% - 24px), 1320px);
    border-radius: 22px;
  }

  .answer-band-grid {
    grid-template-columns: 1fr;
  }
}
.landing-header nav a:hover, .landing-footer a:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-control select {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding-block: 0;
  padding-inline: 12px 36px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 15px; font-size: 14px; }
.button-primary { background: var(--green); color: var(--white); box-shadow: 0 12px 28px rgba(18, 88, 68, 0.2); }
.button-primary:hover { background: var(--green-bright); }
.button-secondary, .button-outline { border-color: var(--border); background: rgba(255, 255, 255, 0.7); color: var(--ink); }
.booking-button { white-space: nowrap; }
.button-light { background: var(--paper); color: var(--green); }
.button-booking-light {
  border-color: rgba(255,255,255,.46);
  background: transparent;
  color: var(--white);
}
.button-booking-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.full-button { width: 100%; margin-top: 12px; }
.landing-hero {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: clamp(40px, 6vw, 84px);
  padding: 56px 0 68px;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 { max-width: 800px; margin-bottom: 22px; font-size: clamp(48px, 5vw, 70px); line-height: 1; }
h1 span, h1 em { display: block; }
h1 em { color: var(--green); font-weight: 500; }
h2 { margin-bottom: 20px; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.02; }
h3 { letter-spacing: -0.02em; }
.hero-intro { max-width: 780px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.58; }
.hero-upload-promo {
  max-width: 680px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  border: 1px solid rgba(18, 88, 68, 0.22);
  border-radius: 18px;
  padding: 15px;
  background: linear-gradient(125deg, rgba(217, 239, 229, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-small);
}
.hero-upload-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(18, 88, 68, 0.16);
}
.hero-upload-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.hero-upload-copy small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-upload-copy strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.3;
}
.hero-upload-copy > span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.hero-upload-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.hero-upload-cta:hover { background: var(--green-bright); }
.hero-upload-cta-arrow { font-size: 16px; }
[dir="rtl"] .hero-upload-cta-arrow { transform: rotate(180deg); }
.hero-email-promo {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid rgba(18, 88, 68, .2);
  border-radius: 18px;
  background: #f7f3ea;
  padding: 18px;
}
.hero-email-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.hero-email-heading > span:last-child { display: grid; gap: 4px; }
.hero-email-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 88, 68, .24);
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
}
.hero-email-heading small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-email-title {
  display: block;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 620;
  line-height: 1.28;
}
.hero-email-address {
  width: fit-content;
  border-bottom: 1px solid rgba(18, 88, 68, .35);
  color: var(--green);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 720;
  text-decoration: none;
}

.hero-email-contact-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.hero-email-contact-row .hero-email-address {
  flex: 1 1 auto;
}

.hero-save-contact {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 88, 68, 0.28);
  border-radius: 12px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.hero-save-contact:hover,
.hero-save-contact:focus-visible {
  border-color: var(--green);
  background: #fff;
  transform: translateY(-1px);
}
.hero-email-promo > p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.hero-email-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-email-steps li {
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  border-radius: 12px;
  background: rgba(217,239,229,.55);
  padding: 10px;
}
.hero-email-steps li > span:first-child {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
}
.hero-email-step-text {
  min-width: 0;
  width: auto;
  height: auto;
  display: block;
  align-self: start;
  color: var(--ink);
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 620;
  line-height: 1.4;
}
.hero-email-promo .hero-email-note {
  padding-top: 10px;
  border-top: 1px solid rgba(18, 88, 68, .12);
  color: #587069;
  font-size: 11px;
  font-weight: 700;
}
.hero-upload-secondary {
  max-width: 760px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  padding: 11px 13px;
  color: var(--ink);
  text-decoration: none;
}
.hero-upload-secondary > span {
  grid-row: 1 / 3;
  color: var(--green);
  font-size: 20px;
}
.hero-upload-secondary strong { font-size: 13px; line-height: 1.3; }
.hero-upload-secondary small { color: var(--ink-soft); font-size: 11px; }
.hero-upload-secondary b {
  grid-column: 3;
  grid-row: 1 / 3;
  color: var(--green);
  font-size: 18px;
}
.hero-clarity {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.hero-clarity li {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.56);
}
.hero-clarity span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}
.hero-clarity strong { font-size: 12px; line-height: 1.4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}
.trust-line li::before { content: "✓"; margin-inline-end: 7px; color: var(--green); font-weight: 900; }
.hero-person {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-person img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.86) contrast(.98);
}
.hero-person figcaption {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 17px;
  padding: 16px 18px;
  background: rgba(18,35,31,.86);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.hero-person figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.hero-person figcaption span { color: rgba(255,255,255,.74); font-size: 12px; }
.product-preview {
  position: relative;
  min-height: 492px;
  border: 1px solid rgba(18, 88, 68, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 780;
}
.mini-brand { width: 30px; height: 30px; border-radius: 9px; }
.preview-status {
  margin-inline-start: auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--mint);
  color: var(--green);
  font-size: 11px;
}
.preview-body { position: relative; z-index: 1; padding: 28px; }
.preview-steps { display: flex; align-items: center; margin-bottom: 34px; }
.preview-steps span {
  width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--border);
  border-radius: 50%; background: var(--white); color: var(--ink-soft); font-size: 12px; font-weight: 800;
}
.preview-steps span.active { background: var(--green); color: var(--white); border-color: var(--green); }
.preview-steps i { flex: 1; height: 1px; background: var(--border); }
.preview-label { margin-bottom: 9px; color: var(--ink-soft); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.document-card {
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); border-radius: 16px;
  padding: 17px; background: var(--paper); box-shadow: var(--shadow-small);
}
.document-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--cream); color: var(--green); font-size: 23px; }
.document-card strong, .document-card small { display: block; }
.document-card small { margin-top: 4px; color: var(--ink-soft); }
.check { margin-inline-start: auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-weight: 900; }
.preview-result { margin-block: 18px 0; margin-inline: 54px 0; border-inline-start: 3px solid var(--coral); padding: 16px 18px; background: #fff9f4; }
.preview-result span { color: var(--coral); font-size: 11px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.preview-result strong { display: block; margin: 7px 0; }
.preview-result p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.preview-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-one { width: 280px; height: 280px; right: -170px; bottom: -90px; border: 38px solid rgba(217, 239, 229, .58); }
.orbit-two { width: 150px; height: 150px; left: -100px; top: 110px; border: 24px solid rgba(242, 184, 75, .15); }
.fact-strip {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 26px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.fact-strip details {
  min-width: 0;
  min-height: 138px;
  border-inline-end: 1px solid rgba(255,255,255,.14);
  transition: background 180ms ease;
}
.fact-strip details:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
.fact-strip details:nth-child(3n) { border-inline-end: 0; }
.fact-strip details:last-child { border-inline-end: 0; }
.fact-strip details:hover,
.fact-strip details[open] { background: rgba(217,239,229,.1); }
.fact-strip summary {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 2.5vw, 34px);
  cursor: pointer;
  list-style: none;
}
.fact-strip summary::-webkit-details-marker { display: none; }
.fact-strip details p {
  margin: -18px 0 0;
  padding: 0 clamp(18px, 2.5vw, 34px) 24px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.55;
}
.fact-strip strong { font-family: Georgia, serif; font-size: 36px; font-weight: 500; color: var(--mint); }
.fact-strip span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; }
.section { width: min(var(--content-width), calc(100% - var(--page-gutter))); margin: 0 auto; padding: 84px 0; }
.section-heading { max-width: 960px; margin-bottom: 38px; }
.section-heading.compact { max-width: 640px; }
.section-heading p:last-child { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.market-comparison-section { padding-top: 72px; padding-bottom: 72px; }

.live-engine-section {
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.live-demo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}

.live-demo-choices {
  display: grid;
  gap: 10px;
}

.live-demo-choice {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 3px 13px;
  align-content: center;
  min-height: 112px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
  cursor: pointer;
  text-align: start;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.live-demo-choice:hover,
.live-demo-choice.active {
  transform: translateX(4px);
  border-color: rgba(18, 88, 68, 0.45);
  background: var(--mint);
}

.live-demo-choice > span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--paper);
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
}

.live-demo-choice strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.live-demo-choice small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.live-demo-result {
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(18, 88, 68, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(217, 239, 229, 0.72), rgba(255, 255, 255, 0.95) 58%);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 25px 68px rgba(18, 35, 31, 0.11);
}

.live-demo-result.is-loading {
  opacity: 0.7;
}

.live-demo-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-demo-status-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.live-demo-status small,
.live-demo-status strong {
  display: block;
}

.live-demo-status small {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-demo-status strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.live-demo-result > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.live-demo-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(18, 88, 68, 0.2);
  border-inline-start: 1px solid rgba(18, 88, 68, 0.2);
}

.live-demo-facts > div {
  display: grid;
  gap: 6px;
  border-inline-end: 1px solid rgba(18, 88, 68, 0.2);
  border-bottom: 1px solid rgba(18, 88, 68, 0.2);
  padding: 12px;
}

.live-demo-facts dt {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-demo-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 780;
}

.live-demo-proof {
  border-top: 1px solid rgba(18, 88, 68, 0.2);
  padding-top: 12px;
}

.live-demo-proof summary {
  cursor: pointer;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.live-demo-proof ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.live-demo-result .button {
  justify-self: start;
}

.engine-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  margin-top: clamp(48px, 7vw, 82px);
  border-top: 1px solid var(--border);
  padding-top: clamp(34px, 5vw, 54px);
}

.engine-comparison > div:first-child {
  max-width: 960px;
}

.engine-comparison h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 43px);
  font-weight: 500;
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

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

.engine-comparison-grid article {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.75);
  padding: 21px;
}

.engine-comparison-grid article.engine-comparison-assis {
  border-color: rgba(18, 88, 68, 0.42);
  background: var(--mint);
}

.engine-comparison-grid article > span {
  display: block;
  margin-bottom: 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engine-comparison-grid ul {
  margin: 0;
  padding-inline-start: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.58;
}
.sme-comparison-section {
  padding-top: 30px;
  padding-bottom: 68px;
}
.professional-comparison-band {
  width: 100%;
  border-block: 1px solid rgba(18, 88, 68, .12);
  background:
    radial-gradient(circle at 88% 16%, rgba(217, 239, 229, .9), transparent 28rem),
    #eef5f1;
}
.professional-comparison-section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.comparison-heading {
  max-width: 1040px;
}
.comparison-table-wrap {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.comparison-scroll-hint {
  display: none;
}
.comparison-table-wrap:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}
.comparison-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.comparison-table-wide,
.professional-comparison-table { table-layout: fixed; }
.comparison-table-wide { min-width: 1240px; }
.professional-comparison-table { min-width: 1040px; }
.comparison-disclosure {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.comparison-disclosure > summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 6px 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}
.comparison-disclosure > summary::-webkit-details-marker { display: none; }
.comparison-disclosure > summary::after {
  content: "+";
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
}
.comparison-disclosure[open] > summary::after { content: "−"; }
.comparison-disclosure > summary span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
}
.comparison-disclosure > summary small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}
.comparison-disclosure-body {
  padding: 10px 22px 24px;
  border-top: 1px solid var(--border);
}
.advantage-section { padding-bottom: 58px; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.advantage-card {
  min-width: 0;
  min-height: 180px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0 24px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(18,35,31,.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.advantage-card:hover,
.advantage-card[open] {
  border-color: rgba(18,88,68,.38);
  background: #f2f7f4;
  box-shadow: var(--shadow-small);
  transform: translateY(-4px);
}
.advantage-card summary {
  min-height: 178px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-content: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}
.advantage-card summary::-webkit-details-marker { display: none; }
.advantage-card summary::after {
  content: "+";
  color: var(--green);
  font-size: 23px;
  font-weight: 500;
}
.advantage-card[open] summary::after { content: "−"; }
.advantage-card summary span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
}
.advantage-card summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.15vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}
.advantage-card p {
  margin: -30px 0 26px 50px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 11px;
  border-inline-end: 1px solid var(--border);
  border-block-end: 1px solid var(--border);
  vertical-align: top;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-align: start;
}
.comparison-table tr > :last-child {
  border-inline-end: 0;
}
.comparison-table tbody tr:last-child > * {
  border-block-end: 0;
}
.comparison-table thead th {
  background: #f3efe6;
  color: #55635e;
  font-size: 11px;
}
.comparison-table thead th:first-child {
  border-start-start-radius: 25px;
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.comparison-table thead th:last-child {
  border-start-end-radius: 25px;
}
.comparison-table thead th:nth-child(2) {
  background: #0d684d;
  color: var(--white);
  box-shadow: inset 3px 0 0 #f0b94b, inset -3px 0 0 #f0b94b;
}
.comparison-table tbody th {
  width: 16%;
  background: #fbf8f1;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.45;
}
.comparison-table td {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
  transition: background 160ms ease, color 160ms ease;
}
.comparison-table tbody tr:hover > th,
.comparison-table tbody tr:hover > td {
  background: #f7f3ea;
  color: var(--ink);
}
.comparison-table .comparison-highlight {
  background: #e1f2e9;
  color: #0a4031;
  font-weight: 760;
  box-shadow: inset 3px 0 0 #16825e, inset -3px 0 0 #16825e;
}
.comparison-table tbody tr:hover > .comparison-highlight {
  background: rgba(217, 239, 229, .78);
}
.comparison-table .comparison-gap-row > th,
.comparison-table .comparison-gap-row > td {
  background: rgba(215, 99, 79, .09);
  border-block-start: 2px solid rgba(215, 99, 79, .44);
}
.comparison-table .comparison-gap-row > th { color: #8f3f31; }
.comparison-table .comparison-gap-row > .comparison-highlight {
  background: rgba(217, 239, 229, .52);
  color: var(--ink);
}
.product-name {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.product-assis {
  color: var(--white);
  font-size: 19px;
  font-weight: 750;
}
.comparison-table thead th:nth-child(2) .product-assis,
.comparison-table thead th:nth-child(2) .product-assis .brand-inline {
  color: #ffffff;
}
.comparison-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 24px;
  margin-top: 18px;
}
.comparison-notes p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.62;
}
.comparison-notes p:first-child {
  border-inline-start: 3px solid var(--coral);
  padding-inline-start: 13px;
}
.comparison-notes p:last-child {
  text-align: end;
}
.comparison-notes a {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 3px;
}
.audience-section {
  padding-top: 56px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.audience-card {
  min-width: 0;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: #fbf8f1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.audience-card-primary {
  background: var(--green);
  color: var(--white);
}
.audience-kicker {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.audience-card-primary .audience-kicker {
  color: var(--amber);
}
.audience-card h3 {
  margin: 0 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}
.audience-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}
.audience-card-primary p {
  color: rgba(255, 255, 255, .74);
}
.empowerment-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: start;
  gap: clamp(44px, 7vw, 96px);
}
.empowerment-copy h2 { max-width: 880px; }
.empowerment-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.outcome-list {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 24px;
  background: var(--white);
  list-style: none;
  box-shadow: var(--shadow-small);
}
.outcome-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 0;
}
.outcome-list li:not(:last-child) { border-bottom: 1px solid var(--border); }
.outcome-list li > span { color: var(--coral); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.outcome-list strong { display: block; margin-bottom: 5px; }
.outcome-list p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.48; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 23px;
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); }
.service-email,
.service-compare,
.service-create { border-color: rgba(18, 88, 68, .2); }
.service-email { grid-column: span 2; }
.service-compare {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  align-items: stretch;
  gap: clamp(30px, 5vw, 72px);
  background: linear-gradient(135deg, #fbf8f1 0%, #f0f7f3 100%);
}
.service-compare-copy {
  display: flex;
  flex-direction: column;
}
.service-compare-copy a { margin-top: auto; }
.contract-diff-preview {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(18, 88, 68, .14);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, .72);
}
.contract-sheet {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(18, 35, 31, .13);
  border-radius: 13px;
  padding: 24px 18px;
  background: var(--white);
  box-shadow: 0 12px 25px rgba(18, 35, 31, .07);
}
.contract-sheet-original {
  transform: rotate(-1.2deg);
}
.contract-sheet-reviewed {
  transform: rotate(1.2deg);
  border-color: rgba(18, 88, 68, .28);
  box-shadow: 0 16px 34px rgba(18, 88, 68, .14);
}
.contract-sheet span {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #dce3df;
}
.contract-sheet span:nth-child(2) { width: 78%; }
.contract-sheet span:nth-child(4) { width: 88%; }
.contract-sheet span:nth-child(5) { width: 62%; }
.contract-sheet .contract-line-changed { background: #f2c9a0; }
.contract-sheet .contract-line-removed { background: #f3b4a9; }
.contract-sheet .contract-line-added { background: #9dd7bf; }
.contract-diff-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
}
.service-letter { background: #fbf8f1; }
.service-application { background: #f2f7f4; }
.service-law { background: #fff8f2; }
.service-business { background: var(--green); color: var(--white); }
.service-number { color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-business .service-number { color: var(--amber); }
.service-symbol { width: 52px; height: 52px; display: grid; place-items: center; margin: 26px 0 20px; border-radius: 15px; background: rgba(255,255,255,.8); color: var(--green); font-size: 28px; }
.service-card h3 { max-width: none; margin-bottom: 12px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.service-card p { color: var(--ink-soft); line-height: 1.6; }
.service-business p { color: rgba(255,255,255,.75); }
.service-card a { margin-top: auto; color: var(--green); font-weight: 800; text-decoration: none; }
.service-business a { color: var(--white); }
.service-law .service-symbol { background: rgba(215,99,79,.1); color: var(--coral); }
.use-case-section {
  border-top: 1px solid var(--border);
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.use-case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(18, 35, 31, 0.055);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.use-case-card img {
  width: 100%;
  height: 158px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.9) contrast(.98);
}
.use-case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.case-label {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.use-case-card h3 {
  margin-bottom: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}
.use-case-card p {
  color: var(--ink-soft);
  line-height: 1.62;
}
.use-case-card blockquote {
  margin: 6px 0 14px;
  border-inline-start: 3px solid var(--coral);
  padding-block: 4px;
  padding-inline: 16px 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}
.use-case-card .case-examples {
  margin-bottom: 24px;
  font-size: 13px;
}
.use-case-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.process-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 7vw, 96px); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 0 0 24px; }
.process-list li:not(:last-child) { border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--cream); color: var(--green); font-weight: 850; }
.process-list h3 { margin: 3px 0 8px; font-size: 19px; }
.process-list p { margin-bottom: 0; color: var(--ink-soft); line-height: 1.6; }
.source-evidence-section {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 84px);
  margin: 0 auto;
  border-block: 1px solid var(--border);
  padding: 84px 0;
}
.source-evidence-copy {
  align-self: center;
  max-width: 680px;
}
.source-evidence-copy h2 {
  max-width: 680px;
  text-wrap: balance;
}
.source-evidence-copy > p:not(.eyebrow, .source-legal-note) {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
}
.source-evidence-copy ul {
  display: grid;
  gap: 11px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}
.source-evidence-copy li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--ink-soft);
  line-height: 1.52;
}
.source-evidence-copy li::before {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}
.source-legal-note {
  margin: 28px 0 0;
  border-inline-start: 3px solid var(--cream-deep);
  border-radius: 0 12px 12px 0;
  padding: 13px 15px;
  background: rgba(245, 240, 230, .6);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.58;
}
[dir="rtl"] .source-legal-note {
  border-radius: 12px 0 0 12px;
}
.landing-source-proof {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(18, 88, 68, .28);
  border-radius: 26px;
  padding: clamp(26px, 3.4vw, 42px);
  background:
    radial-gradient(circle at 92% 7%, rgba(217, 239, 229, .1), transparent 14rem),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.source-proof-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}
.source-proof-head span {
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--mint);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}
.source-proof-head small {
  margin-inline-start: auto;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  text-align: end;
}
.landing-source-proof > a {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  text-decoration-color: rgba(217, 239, 229, .54);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  overflow-wrap: anywhere;
}
.landing-source-proof > a:hover {
  color: var(--mint);
}
.landing-source-proof > p {
  display: -webkit-box;
  margin: 20px 0 28px;
  overflow: hidden;
  color: rgba(255, 255, 255, .73);
  font-size: 13px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.landing-source-proof dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-block-start: 1px solid rgba(255, 255, 255, .14);
}
.landing-source-proof dl div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 13px 14px 13px 0;
}
.landing-source-proof dl div:nth-child(even) {
  border-inline-start: 1px solid rgba(255, 255, 255, .14);
  padding-inline: 18px 0;
}
.landing-source-proof dl div:nth-child(n + 3) {
  border-block-start: 1px solid rgba(255, 255, 255, .14);
}
.landing-source-proof dt {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.landing-source-proof dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.42;
}
.coverage-section {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  border-radius: 28px;
  padding: clamp(42px, 6vw, 82px);
  background: var(--cream);
}
.coverage-copy { max-width: 620px; }
.coverage-copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.text-link { color: var(--green); font-weight: 820; text-decoration: none; }
.coverage-map { min-width: 0; margin: 0; }
.coverage-map-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 88, 68, .14);
  border-radius: 24px;
  background: #f8f5ec;
  box-shadow: 0 12px 34px rgba(18, 35, 31, .08);
}
.coverage-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}
.map-hotspot {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 5px 15px rgba(18, 35, 31, .24);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .03em;
  transform: translate(-50%, -50%);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}
.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot[aria-pressed="true"] {
  z-index: 3;
  box-shadow: 0 7px 20px rgba(18, 35, 31, .34);
  filter: saturate(1.15);
  transform: translate(-50%, -50%) scale(1.22);
}
.map-hotspot-core { background: var(--green); }
.map-hotspot-nordic { background: #348d86; }
.map-hotspot-extension { background: var(--coral); }
.map-hotspot[data-map-country="DE"] { --map-x: 51%; --map-y: 55%; }
.map-hotspot[data-map-country="AT"] { --map-x: 61%; --map-y: 67%; }
.map-hotspot[data-map-country="CH"] { --map-x: 47%; --map-y: 72%; }
.map-hotspot[data-map-country="BE"] { --map-x: 28%; --map-y: 57%; }
.map-hotspot[data-map-country="NL"] { --map-x: 39%; --map-y: 45%; }
.map-hotspot[data-map-country="LU"] { --map-x: 39%; --map-y: 64%; }
.map-hotspot[data-map-country="SE"] { --map-x: 60%; --map-y: 26%; }
.map-hotspot[data-map-country="DK"] { --map-x: 47%; --map-y: 42%; }
.map-hotspot[data-map-country="FI"] { --map-x: 81%; --map-y: 21%; }
.map-hotspot[data-map-country="NO"] { --map-x: 46%; --map-y: 29%; }
.map-hotspot[data-map-country="HU"] { --map-x: 70%; --map-y: 70%; }
.map-extension-note {
  position: absolute;
  left: 72%;
  top: 74%;
  max-width: 130px;
  border-inline-start: 2px solid var(--coral);
  padding-inline-start: 9px;
  color: #8f3f31;
  font-size: 10px;
  font-weight: 820;
  line-height: 1.25;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
}
.map-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}
.map-legend i {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}
.map-legend-core { background: var(--green); }
.map-legend-nordic { background: #348d86; }
.map-legend-extension { background: var(--coral); }
.map-country-info {
  min-height: 84px;
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .72);
}
.map-country-info strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}
.map-country-info span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}
.coverage-map figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.pricing-section { padding-top: 88px; }
.email-forwarding-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #f7f3ea;
  padding: 28px;
}
.email-forwarding-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
}
.email-forwarding-section h2 { margin: 0 0 10px; font-size: clamp(29px, 3.4vw, 45px); }
.email-forwarding-section p:last-child { max-width: 850px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.email-forwarding-section .button { white-space: nowrap; }

.landing-limits-section { padding-top: 74px; padding-bottom: 62px; }
.landing-limits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.landing-limits-grid article {
  min-width: 0;
  border: 1px solid #e4b4aa;
  border-radius: 20px;
  background: #fff5f2;
  padding: 24px;
}
.landing-limits-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #792f24;
  font-size: 17px;
}
.landing-limits-grid p {
  margin: 0;
  color: #684239;
  font-size: 14px;
  line-height: 1.6;
}
.landing-limits-outcome {
  margin: 16px 0 0;
  border-inline-start: 4px solid var(--green);
  padding: 13px 0 13px 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.pricing-switch {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 4px;
  margin: 0 auto 28px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 4px;
  background: var(--cream);
}
.pricing-switch button {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  padding: 8px 17px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 780;
}
.pricing-switch button.active { background: var(--white); color: var(--green); box-shadow: var(--shadow-small); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}
.first-matter-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  border: 1px solid rgba(18, 88, 68, .34);
  border-radius: 20px;
  background: #eef7f2;
  padding: 18px 20px;
}
.first-matter-badge {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}
.first-matter-offer strong { display: block; margin-bottom: 4px; font-size: 17px; }
.first-matter-offer p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.price-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.audience-card:hover,
.use-case-card:hover,
.price-card:hover {
  border-color: rgba(18,88,68,.34);
  box-shadow: var(--shadow-small);
  transform: translateY(-4px);
}
.price-card.featured { border-color: rgba(18,88,68,.38); background: #eff6f2; box-shadow: var(--shadow-small); }
.price-card h3 { min-height: 58px; margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 500; }
.price-card .price { margin: 0 0 8px; }
.price-card .price > span { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 40px; line-height: 1; }
.price-card [data-audience-value][hidden] { display: none !important; }
.price-card .price small { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 12px; }
.plan-detail { min-height: 40px; margin: 0 0 16px; color: var(--green); font-size: 14px; font-weight: 780; }
.price-card ul { display: grid; gap: 10px; margin: 0 0 26px; padding: 20px 0 0; border-top: 1px solid var(--border); list-style: none; }
.price-card li { color: var(--ink-soft); font-size: 14px; line-height: 1.42; }
.price-card li::before { content: "✓"; margin-inline-end: 8px; color: var(--green); font-weight: 900; }
.price-card > .button { width: 100%; margin-top: auto; }
.popular-label {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pricing-audience {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 46px);
  background: #fbf8f1;
}
.pricing-audience.business-pricing {
  background: #eff6f2;
}
.pricing-audience header {
  min-height: 164px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.pricing-kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pricing-audience h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
}
.pricing-audience header > p:last-child {
  color: var(--ink-soft);
  line-height: 1.55;
}
.pricing-options { margin-bottom: 26px; }
.price-option {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.price-option.featured {
  margin: 0 -14px;
  border-bottom: 0;
  border-radius: 15px;
  padding: 18px 14px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.price-option strong,
.price-option div > span {
  display: block;
}
.price-option strong { margin-bottom: 5px; }
.price-option div > span {
  color: var(--ink-soft);
  font-size: 13px;
}
.price-option p { margin: 0; text-align: end; }
.price-option p span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
}
.price-option p small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
}
.pricing-audience > .button { width: 100%; margin-top: auto; }
.pricing-note {
  max-width: 900px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}
.privacy-section { padding-top: 84px; padding-bottom: 84px; }
.privacy-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 8vw, 110px);
  border-radius: 28px;
  padding: clamp(34px, 6vw, 78px);
  background: var(--ink);
  color: var(--white);
}
.privacy-card h2 { color: var(--white); }
.privacy-card p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; }
.privacy-card .text-link { color: var(--mint); }
.privacy-points { display: flex; flex-direction: column; justify-content: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.privacy-points li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.13); padding-bottom: 18px; }
.privacy-points span:first-child { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,239,229,.12); color: var(--mint); font-weight: 900; }
.expert-section {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  padding: 56px 0 88px;
}
.expert-image-wrap { position: relative; }
.expert-image-wrap img { width: 100%; height: 540px; display: block; object-fit: cover; object-position: center 22%; border-radius: 26px; filter: saturate(.86); }
.expert-seal {
  position: absolute; inset-inline-end: -24px; bottom: -24px; width: 110px; height: 110px; display: grid; place-items: center;
  border: 8px solid var(--paper); border-radius: 50%; background: var(--coral); color: var(--white); font-family: Georgia, serif; text-align: center;
}
.expert-lede { color: var(--ink-soft); font-size: 19px; line-height: 1.6; }
.expert-copy ul { margin: 28px 0; padding: 0; list-style: none; }
.expert-copy li { position: relative; padding-block: 14px; padding-inline: 31px 0; border-bottom: 1px solid var(--border); }
.expert-copy li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 900; }
.expert-note { color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.team-trust-section {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(34px, 6vw, 88px);
  border: 1px solid rgba(18, 88, 68, .16);
  border-radius: 28px;
  padding: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 4% 8%, rgba(217, 239, 229, .78), transparent 34%),
    var(--white);
}
.team-trust-copy { display: flex; flex-direction: column; justify-content: center; }
.team-trust-lede { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.team-trust-note {
  margin-top: 24px;
  border-inline-start: 3px solid var(--coral);
  padding-inline-start: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.competence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.competence-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 253, 248, .82);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.competence-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 88, 68, .4);
  box-shadow: var(--shadow-small);
}
.competence-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 800;
}
.competence-grid strong { font-size: 16px; }
.competence-grid p { margin: 9px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.compliance-section { padding-top: 70px; padding-bottom: 78px; }
.compliance-section .section-heading {
  width: 100%;
  max-width: none;
}
.compliance-section #compliance-title {
  white-space: nowrap;
  font-size: clamp(31px, 3.25vw, 50px);
}
.compliance-section .section-heading > p:last-child {
  display: block;
  width: 100%;
  max-width: 1080px;
  border-inline-start: 3px solid var(--mint);
  padding: 12px 16px;
  background: rgba(217, 239, 229, .32);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.compliance-badge {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background: var(--white);
}
.compliance-badge > span {
  min-width: 46px;
  width: max-content;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}
.compliance-badge.implemented {
  border-color: rgba(18, 88, 68, 0.24);
  box-shadow: 0 12px 34px rgba(11, 42, 34, 0.06);
}
.compliance-badge.planned > span { background: #fff1d7; color: #835b0a; }
.compliance-badge strong { font-size: 16px; line-height: 1.35; }
.compliance-badge small { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.reveal-section {
  opacity: 0;
  transform: translateY(28px) scale(.995);
  transition: opacity .68s cubic-bezier(.2,.72,.22,1), transform .68s cubic-bezier(.2,.72,.22,1);
  will-change: opacity, transform;
}
.reveal-section.is-visible { opacity: 1; transform: none; }
.test-section { padding-top: 18px; }
.test-card {
  display: grid; grid-template-columns: 1fr .82fr; gap: clamp(50px, 8vw, 100px); align-items: center;
  border: 1px solid rgba(18,88,68,.18); border-radius: 28px; padding: clamp(34px, 6vw, 72px); background: var(--mint);
}
.test-card h2 { font-size: clamp(29px, 3.2vw, 45px); line-height: 1.04; }
.test-card p:not(.eyebrow) { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.test-card form { border-radius: 20px; padding: 24px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-small); }
.test-card label { display: block; margin-bottom: 9px; font-weight: 780; }
.promo-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.promo-row input { min-width: 0; min-height: 50px; border: 1px solid var(--border); border-radius: 12px; padding: 0 14px; text-transform: uppercase; }
.promo-hint { margin: 9px 0 0; font-size: 12px !important; }
.promo-message { min-height: 23px; margin: 13px 0 0; font-size: 14px !important; font-weight: 760; }
.promo-message.success { color: var(--green); }
.promo-message.error { color: #9c3424; }
.promo-request-toggle { margin-top: 8px; }
.promo-request-fields {
  display: grid;
  gap: 11px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 17px;
}
.promo-request-fields[hidden] { display: none; }
.promo-request-fields > p:first-child {
  margin: 0 0 3px;
  font-size: 13px !important;
}
.promo-request-fields input {
  width: 100%;
  min-height: 47px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 13px;
  background: rgba(255, 255, 255, .92);
}
.promo-request-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.promo-request-grid label { margin: 0; }
.promo-request-grid span { display: block; min-height: 34px; margin-bottom: 7px; font-size: 12px; }
.promo-request-trap { position: absolute !important; inline-size: 1px; block-size: 1px; overflow: hidden; clip-path: inset(50%); }
.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); }
.faq-section > * { min-width: 0; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { min-height: 66px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; cursor: pointer; font-weight: 760; list-style: none; }
.faq-list summary span { min-width: 0; overflow-wrap: anywhere; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--green); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: 0 0 24px; color: var(--ink-soft); line-height: 1.65; }
.final-cta {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  border-radius: 28px;
  padding: 72px 24px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}
.final-cta h2 { max-width: 820px; margin: 0 auto 32px; color: var(--white); }
.final-cta .eyebrow { color: var(--amber); }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.landing-footer {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px;
  padding: 36px 0; border-top: 1px solid var(--border); background: var(--paper);
}
.landing-footer p { margin: 0; color: var(--ink-soft); font-size: 13px; text-align: center; }
.landing-footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.sme-comparison-section,
.professional-comparison-band { display: none; }
.footer-comparisons {
  grid-column: 1 / -1;
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px !important;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.footer-comparisons:has(.comparison-disclosure[open]) {
  grid-template-columns: minmax(0, 1fr);
}
.footer-comparisons > .sme-comparison-section,
.footer-comparisons > .professional-comparison-band {
  display: block;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}
.footer-comparisons .market-comparison-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.footer-comparisons .comparison-disclosure > summary {
  min-height: 46px;
  border-radius: 11px;
  padding: 9px 12px;
}
.footer-comparisons .comparison-disclosure > summary span {
  font-size: 12px;
  font-weight: 650;
}
.footer-comparisons .comparison-disclosure > summary small { display: none; }
.footer-comparisons .comparison-disclosure-body { padding: 20px 16px 16px; }
.footer-comparisons .comparison-heading h2 { font-size: clamp(25px, 3vw, 38px); }
.footer-comparisons .comparison-table { font-size: 11px; }
.mobile-cta { display: none; }

@media (max-width: 1360px) {
  .landing-header nav { display: none; }
}

@media (max-width: 1160px) {
  .landing-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 900px; }
  .hero-person { width: min(100%, 760px); }
  .hero-person img { height: 520px; object-position: center 31%; }
  .service-grid, .use-case-grid { grid-template-columns: 1fr; }
  .service-email,
  .service-compare { grid-column: auto; }
  .service-compare { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .service-symbol { margin: 28px 0 20px; }
  .process-section, .faq-section, .empowerment-section { grid-template-columns: 1fr; }
  .source-evidence-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .source-evidence-copy { max-width: 840px; }
  .coverage-section, .privacy-card, .expert-section, .team-trust-section, .test-card { grid-template-columns: 1fr; }
  .use-case-card { display: grid; grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr); }
  .use-case-card img { height: 100%; min-height: 280px; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-card:last-child { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .email-forwarding-section { grid-template-columns: auto minmax(0, 1fr); }
  .email-forwarding-section .button { grid-column: 1 / -1; width: 100%; }
  .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fact-strip details:nth-child(3) { border-inline-end: 0; }
  .fact-strip details:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .price-card h3 { min-height: auto; }
  .expert-image-wrap { max-width: 520px; }
  .compliance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .landing-footer { grid-template-columns: 1fr; justify-items: center; }
  .landing-footer > div { justify-content: center; }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 32px;
  }
  .landing-header { width: calc(100% - 32px); min-height: 72px; }
  .landing-header .button-outline { display: none; }
  .brand small { display: none; }
  .language-control select { width: 126px; }
  .landing-hero { width: calc(100% - 32px); padding: 42px 0 50px; gap: 30px; }
  h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.7vw, 52px);
    overflow-wrap: anywhere;
  }
  h2 { font-size: clamp(31px, 9vw, 43px); }
  .hero-intro { font-size: 17px; line-height: 1.52; }
  .hero-email-promo { border-radius: 18px; padding: 16px; }
  .hero-email-contact-row { flex-direction: column; }
  .hero-save-contact { width: 100%; }
  .hero-email-heading { grid-template-columns: 40px minmax(0, 1fr); }
  .hero-email-icon { width: 40px; height: 40px; border-radius: 12px; }
  .hero-email-address {
    max-width: 100%;
    font-size: clamp(18px, 6.2vw, 25px);
    overflow-wrap: anywhere;
  }
  .hero-email-steps { grid-template-columns: 1fr; }
  .hero-email-steps li {
    min-height: 0;
    align-items: start;
  }
  .hero-upload-secondary { grid-template-columns: auto minmax(0, 1fr) auto; }
  .hero-upload-promo {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    border-radius: 17px;
    padding: 14px;
  }
  .hero-upload-icon { width: 48px; height: 48px; }
  .hero-upload-cta {
    grid-column: 2;
    justify-self: start;
    min-width: 150px;
    white-space: normal;
  }
  .hero-actions { display: grid; }
  .hero-clarity { grid-template-columns: 1fr; }
  .hero-clarity li { min-height: 0; flex-direction: row; align-items: center; }
  .button { width: 100%; min-height: 52px; }
  .trust-line { display: grid; gap: 10px; }
  .hero-person { border-radius: 22px; }
  .hero-person img { height: min(116vw, 500px); object-position: center 31%; }
  .hero-person figcaption { inset-inline: 12px; bottom: 12px; padding: 14px; }
  .hero-person figcaption strong { font-size: 16px; }
  .fact-strip { grid-template-columns: 1fr; border-radius: 20px; }
  .fact-strip details,
  .fact-strip details:nth-child(3) {
    min-height: 0;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .fact-strip details:last-child { border-bottom: 0; }
  .fact-strip summary { min-height: 96px; padding: 17px 20px; }
  .fact-strip details p { margin-top: -10px; padding: 0 20px 20px; }
  .section { width: calc(100% - 32px); padding: 58px 0; }
  .section-heading { margin-bottom: 28px; }
  .live-demo-layout,
  .engine-comparison,
  .engine-comparison-grid { grid-template-columns: 1fr; }
  .live-demo-choice { min-height: 96px; }
  .live-demo-choice:hover,
  .live-demo-choice.active { transform: translateY(-2px); }
  .live-demo-facts { grid-template-columns: 1fr; }
  .live-demo-result .button { width: 100%; }
  .engine-comparison { gap: 24px; margin-top: 50px; }
  .market-comparison-section { padding-top: 52px; padding-bottom: 42px; }
  .sme-comparison-section { padding-top: 16px; }
  .comparison-disclosure > summary { min-height: 82px; padding: 18px; }
  .comparison-disclosure-body { padding: 8px 12px 16px; }
  .comparison-table-wide,
  .professional-comparison-table { min-width: 0; }
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; gap: 12px; }
  .comparison-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
  }
  .comparison-table tbody th {
    grid-column: 1 / -1;
    width: 100%;
    border-inline-end: 0;
    padding: 12px;
  }
  .comparison-table tbody td {
    padding: 11px 10px;
    border-inline-end: 1px solid var(--border);
  }
  .comparison-table tbody td::before {
    display: block;
    margin-bottom: 5px;
    color: #69756f;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .comparison-table tbody td:nth-of-type(1)::before { content: "Assis10th"; color: #0d684d; }
  .comparison-table-wide tbody td:nth-of-type(2)::before { content: "Klaro"; }
  .comparison-table-wide tbody td:nth-of-type(3)::before { content: "Contract AI"; }
  .comparison-table-wide tbody td:nth-of-type(4)::before { content: "mika"; }
  .comparison-table-wide tbody td:nth-of-type(5)::before { content: "ProofDocs"; }
  .comparison-table-wide tbody td:nth-of-type(6)::before { content: "KI"; }
  .professional-comparison-table tbody td:nth-of-type(2)::before { content: "Harvey"; }
  .professional-comparison-table tbody td:nth-of-type(3)::before { content: "CoCounsel"; }
  .professional-comparison-table tbody td:nth-of-type(4)::before { content: "CASUS"; }
  .professional-comparison-table tbody td:nth-of-type(5)::before { content: "WK Libra"; }
  .comparison-notes { grid-template-columns: 1fr; gap: 14px; }
  .comparison-notes p:last-child { text-align: start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .landing-limits-grid { grid-template-columns: 1fr; }
  .email-forwarding-section { grid-template-columns: 1fr; padding: 22px; }
  .email-forwarding-section .button { grid-column: 1; white-space: normal; }
  .first-matter-offer { grid-template-columns: auto minmax(0, 1fr); }
  .first-matter-offer .button { grid-column: 1 / -1; }
  .audience-section { padding-top: 42px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 0; padding-inline: 20px; }
  .advantage-card summary { min-height: 134px; }
  .advantage-card p { margin: -14px 0 22px 50px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card,
  .audience-card:last-child {
    min-height: 0;
    grid-column: auto;
    padding: 23px 21px;
  }
  .audience-kicker { margin-bottom: 24px; }
  .empowerment-section { gap: 24px; }
  .outcome-list { padding: 4px 18px; border-radius: 20px; }
  .outcome-list li { padding: 17px 0; }
  .service-card { min-height: 270px; padding: 22px; }
  .use-case-card { display: flex; }
  .use-case-card img { height: 142px; min-height: 0; }
  .use-case-content { padding: 20px; }
  .use-case-card h3 { font-size: 24px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .process-list li > span { width: 42px; height: 42px; }
  .source-evidence-section {
    width: calc(100% - 32px);
    gap: 26px;
    padding: 58px 0;
  }
  .source-evidence-copy > p:not(.eyebrow, .source-legal-note) { font-size: 16px; }
  .source-legal-note { margin-top: 22px; }
  .landing-source-proof {
    border-radius: 22px;
    padding: 23px 21px;
  }
  .source-proof-head {
    align-items: flex-start;
    margin-bottom: 21px;
  }
  .landing-source-proof > a { font-size: clamp(25px, 8vw, 34px); }
  .landing-source-proof dl { grid-template-columns: 1fr; }
  .landing-source-proof dl div {
    border-block-start: 1px solid rgba(255, 255, 255, .14);
    padding: 11px 0;
  }
  .landing-source-proof dl div:first-child { border-block-start: 0; }
  .landing-source-proof dl div:nth-child(even) {
    border-inline-start: 0;
    padding-inline: 0;
  }
  .coverage-section { padding: 42px 22px; gap: 30px; border-radius: 22px; }
  .coverage-map-stage { border-radius: 18px; }
  .map-hotspot { width: 31px; height: 31px; font-size: 8px; }
  .map-hotspot[data-map-country="BE"] { --map-x: 18%; --map-y: 58%; }
  .map-hotspot[data-map-country="NL"] { --map-x: 31%; --map-y: 40%; }
  .map-hotspot[data-map-country="LU"] { --map-x: 31%; --map-y: 72%; }
  .map-hotspot[data-map-country="DE"] { --map-x: 50%; --map-y: 54%; }
  .map-hotspot[data-map-country="CH"] { --map-x: 45%; --map-y: 76%; }
  .map-hotspot[data-map-country="AT"] { --map-x: 62%; --map-y: 68%; }
  .map-hotspot[data-map-country="DK"] { --map-x: 45%; --map-y: 38%; }
  .map-hotspot[data-map-country="NO"] { --map-x: 34%; --map-y: 19%; }
  .map-hotspot[data-map-country="SE"] { --map-x: 55%; --map-y: 18%; }
  .map-hotspot[data-map-country="FI"] { --map-x: 80%; --map-y: 17%; }
  .map-hotspot[data-map-country="HU"] { --map-x: 77%; --map-y: 71%; }
  .map-extension-note { left: 70%; top: 75%; max-width: 108px; font-size: 9px; }
  .map-legend { gap: 8px 11px; }
  .map-country-info { min-height: 98px; }
  .privacy-card, .test-card { padding: 29px 22px; border-radius: 22px; }
  .expert-section { width: calc(100% - 32px); padding: 34px 0 64px; }
  .team-trust-section { width: calc(100% - 32px); border-radius: 22px; padding: 28px 21px; }
  .competence-grid,
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-section #compliance-title { white-space: normal; }
  .competence-grid article,
  .compliance-badge { min-height: 0; }
  .expert-image-wrap img { height: 380px; }
  .expert-seal { inset-inline-end: -5px; width: 92px; height: 92px; font-size: 14px; }
  .promo-row { grid-template-columns: 1fr; }
  .promo-request-grid { grid-template-columns: 1fr; }
  .promo-request-grid span { min-height: 0; }
  .test-card form { padding: 18px; }
  .price-card { padding: 24px 21px; border-radius: 21px; }
  .popular-label { top: 15px; inset-inline-end: 14px; }
  .final-cta { padding: 58px 18px 88px; border-radius: 22px; }
  .landing-footer { padding-bottom: 108px; text-align: center; }
  .footer-comparisons { grid-template-columns: 1fr; }
  .footer-brand small { display: block; }
  .mobile-cta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 20; display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border);
    background: rgba(255,253,248,.96); backdrop-filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service-card { transition: none; }
  .reveal-section { opacity: 1; transform: none; transition: none; }
}
