:root {
  --ink: #12231f;
  --ink-soft: #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;
  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 { scroll-behavior: smooth; }
body {
  margin: 0;
  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;
  left: 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, .mini-brand {
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--paper);
  font-family: Georgia, serif;
}
.brand-mark { width: 42px; height: 42px; border-radius: 13px; font-size: 25px; }
.brand strong, .brand small { display: block; }
.brand strong { letter-spacing: -0.03em; }
.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;
}
.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: 0 36px 0 12px;
  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); }
.button-light { background: var(--paper); color: var(--green); }
.full-button { width: 100%; margin-top: 12px; }
.landing-hero {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: 82px 0 98px;
}
.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: 730px; margin-bottom: 26px; font-size: clamp(50px, 5.6vw, 76px); line-height: 0.98; }
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: 660px; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; }
.hero-clarity {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-clarity li {
  min-height: 92px;
  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: 34px 0 28px; }
.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-right: 7px; color: var(--green); font-weight: 900; }
.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-left: 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-left: 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: 18px 0 0 54px; border-left: 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(4, 1fr);
  border-radius: 26px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.fact-strip div { min-height: 146px; display: flex; flex-direction: column; justify-content: center; padding: 24px clamp(22px, 4vw, 58px); border-right: 1px solid rgba(255,255,255,.14); }
.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: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.compact { max-width: 640px; }
.section-heading p:last-child { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 380px;
  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-letter { background: #fbf8f1; }
.service-application { background: var(--green); color: var(--white); }
.service-business { background: #f2f7f4; }
.service-number { color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-application .service-number { color: var(--amber); }
.service-symbol { width: 58px; height: 58px; display: grid; place-items: center; margin: 42px 0 26px; border-radius: 17px; background: rgba(255,255,255,.8); color: var(--green); font-size: 30px; }
.service-card h3 { max-width: 290px; margin-bottom: 14px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.service-card p { color: var(--ink-soft); line-height: 1.6; }
.service-application p { color: rgba(255,255,255,.75); }
.service-card a { margin-top: auto; color: var(--green); font-weight: 800; text-decoration: none; }
.service-application a { color: var(--white); }
.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;
}
.use-case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(.9) contrast(.98);
}
.use-case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.case-label {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.use-case-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}
.use-case-card p {
  color: var(--ink-soft);
  line-height: 1.62;
}
.use-case-card blockquote {
  margin: 8px 0 18px;
  border-left: 3px solid var(--coral);
  padding: 4px 0 4px 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  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(50px, 8vw, 120px); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 0 0 34px; }
.process-list li:not(:last-child) { border-bottom: 1px solid var(--border); margin-bottom: 34px; }
.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; }
.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; }
.country-cloud { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.country-cloud span {
  aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(18,88,68,.15);
  border-radius: 50%; background: var(--paper); color: var(--green); font-family: Georgia, serif; font-size: clamp(18px, 2vw, 28px);
}
.pricing-section { padding-top: 130px; }
.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: right; }
.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: 110px; padding-bottom: 110px; }
.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: 70px 0 130px;
}
.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; right: -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: 14px 0 14px 31px; border-bottom: 1px solid var(--border); }
.expert-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.expert-note { color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.test-section { padding-top: 30px; }
.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 p:not(.eyebrow) { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.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; }
.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); }
.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: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 760; list-style: none; }
.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: 105px 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); }
.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; }
.mobile-cta { display: none; }

@media (max-width: 1160px) {
  .landing-header nav { display: none; }
  .landing-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; }
  .product-preview { max-width: 700px; width: 100%; }
  .service-grid, .use-case-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .service-symbol { margin: 28px 0 20px; }
  .process-section, .faq-section { grid-template-columns: 1fr; }
  .coverage-section, .privacy-card, .expert-section, .test-card, .pricing-audiences { grid-template-columns: 1fr; }
  .use-case-card { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); }
  .use-case-card img { height: 100%; aspect-ratio: auto; }
  .pricing-audience header { min-height: auto; padding-bottom: 22px; }
  .expert-image-wrap { max-width: 520px; }
  .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: 62px 0 72px; gap: 42px; }
  h1 { font-size: clamp(43px, 13.4vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .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; }
  .product-preview { min-height: 440px; border-radius: 22px; }
  .preview-topbar { padding: 0 16px; }
  .preview-status { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .preview-body { padding: 22px 16px; }
  .preview-result { margin-left: 18px; }
  .fact-strip { grid-template-columns: 1fr 1fr; border-radius: 20px; }
  .fact-strip div { min-height: 118px; padding: 20px; }
  .fact-strip div:nth-child(2) { border-right: 0; }
  .fact-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { width: calc(100% - 32px); padding: 84px 0; }
  .section-heading { margin-bottom: 36px; }
  .service-card { min-height: 300px; padding: 23px; }
  .use-case-card { display: flex; }
  .use-case-card img { aspect-ratio: 4 / 3; height: auto; }
  .use-case-content { padding: 23px; }
  .use-case-card h3 { font-size: 26px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .process-list li > span { width: 42px; height: 42px; }
  .coverage-section { padding: 58px 22px; gap: 42px; border-radius: 22px; }
  .country-cloud { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .country-cloud span { font-size: 14px; }
  .privacy-card, .test-card { padding: 29px 22px; border-radius: 22px; }
  .expert-section { width: calc(100% - 32px); padding: 40px 0 100px; }
  .expert-image-wrap img { height: 440px; }
  .expert-seal { right: -5px; width: 92px; height: 92px; font-size: 14px; }
  .promo-row { grid-template-columns: 1fr; }
  .test-card form { padding: 18px; }
  .price-option { grid-template-columns: 1fr; gap: 12px; }
  .price-option p { text-align: left; }
  .pricing-audience { padding: 26px 21px; border-radius: 22px; }
  .final-cta { padding: 80px 18px 105px; border-radius: 22px; }
  .landing-footer { padding-bottom: 108px; text-align: center; }
  .footer-brand small { display: block; }
  .mobile-cta {
    position: fixed; left: 0; right: 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; }
}
