:root {
  --seo-ink: #0b1f33;
  --seo-muted: #52687d;
  --seo-blue: #0068cc;
  --seo-blue-strong: #004f9e;
  --seo-sky: #eaf5ff;
  --seo-line: #dce7f1;
  --seo-paper: #ffffff;
  --seo-soft: #f5f9fc;
  --seo-success: #0b7555;
  --seo-shadow: 0 20px 60px rgba(13, 50, 83, .12);
  --seo-radius: 24px;
  --seo-wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--seo-ink);
  background: var(--seo-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.seo-wrap {
  width: min(calc(100% - 40px), var(--seo-wrap));
  margin-inline: auto;
}

.seo-skip {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--seo-ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.seo-skip:focus { transform: translateY(0); }

.seo-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--seo-line);
  background: #fff;
}

.seo-header-inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}

.seo-brand > img { flex: 0 0 auto; width: 37px; height: 42px; object-fit: contain; }

.seo-brand > strong { font-size: 17px; letter-spacing: -.02em; }

.seo-main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.seo-main-nav a {
  color: #365068;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.seo-main-nav a:hover { color: var(--seo-blue); }

.seo-lang {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.seo-lang a {
  min-width: 26px;
  padding: 10px 0 7px;
  border-bottom: 2px solid transparent;
  text-align: center;
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.seo-lang a:hover { color: var(--seo-blue); }
.seo-lang a[aria-current="page"] { color: var(--seo-ink); border-bottom-color: var(--seo-blue); }

.seo-mobile-nav { display: none; }
.seo-mobile-nav summary {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--seo-line);
  border-radius: 7px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--seo-ink);
  cursor: pointer;
  list-style: none;
}
.seo-mobile-nav summary::-webkit-details-marker { display: none; }
.seo-mobile-nav summary svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.seo-mobile-nav summary span { display: none; font-size: 12px; font-weight: 750; }
.seo-mobile-nav nav {
  position: absolute;
  z-index: 120;
  top: calc(100% + 11px);
  right: 0;
  width: min(300px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid var(--seo-line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11, 31, 51, .14);
  display: grid;
  gap: 2px;
}
.seo-mobile-nav:not([open]) > nav { display: none; }
.seo-mobile-nav nav a { min-height: 44px; padding: 0 13px; border-radius: 6px; display: flex; align-items: center; color: var(--seo-ink); font-size: 13px; font-weight: 750; text-decoration: none; }
.seo-mobile-nav nav a:hover, .seo-mobile-nav nav a:focus-visible { color: var(--seo-blue); background: var(--seo-sky); }
.seo-mobile-nav nav .seo-mobile-nav__cta { margin-bottom: 5px; color: #fff; background: var(--seo-blue); }
.seo-mobile-nav nav .seo-mobile-nav__cta:hover, .seo-mobile-nav nav .seo-mobile-nav__cta:focus-visible { color: #fff; background: var(--seo-blue-strong); }

.seo-header-cta,
.seo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  background: var(--seo-blue);
  border: 1px solid var(--seo-blue);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 104, 204, .2);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.seo-header-cta { min-height: 42px; padding: 10px 16px; }
.seo-button:hover, .seo-header-cta:hover { background: var(--seo-blue-strong); border-color: var(--seo-blue-strong); }
.seo-button:focus-visible, .seo-header-cta:focus-visible, .seo-main-nav a:focus-visible, .seo-lang a:focus-visible, summary:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.seo-button-secondary {
  color: var(--seo-ink);
  background: #fff;
  border-color: var(--seo-line);
  box-shadow: none;
}
.seo-button-secondary:hover { color: var(--seo-blue); background: var(--seo-sky); border-color: #b7d8f4; }

.seo-breadcrumb {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: var(--seo-muted);
  font-size: 12px;
  white-space: nowrap;
}
.seo-breadcrumb a { color: var(--seo-blue); text-decoration: none; }
.seo-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }

.seo-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--seo-line);
  background:
    radial-gradient(circle at 76% 30%, rgba(74, 166, 255, .18), transparent 31%),
    linear-gradient(135deg, #fff 0%, #f4f9fe 58%, #eaf5ff 100%);
}

.seo-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -190px;
  border: 1px solid rgba(0, 104, 204, .16);
  border-radius: 50%;
}

.seo-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 60px;
  padding-block: 54px 66px;
}

.seo-kicker {
  margin: 0 0 14px;
  color: var(--seo-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.seo-hero h1,
.seo-section h2,
.seo-contact h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.seo-hero h1 { max-width: 760px; font-size: clamp(42px, 5.4vw, 72px); }
.seo-section h2, .seo-contact h2 { max-width: 760px; font-size: clamp(30px, 3.5vw, 48px); }

.seo-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #38536d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.seo-provider-disclosure {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--seo-blue);
  background: #eef7ff;
  color: #294761;
  font-size: 14px;
  line-height: 1.55;
}

.seo-editorial-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 20px 0 0; color: var(--seo-muted); font-size: 12px; line-height: 1.45; }
.seo-editorial-meta span + span { position: relative; }
.seo-editorial-meta span + span::before { content: "·"; position: absolute; left: -9px; color: #9aabba; }
.seo-editorial-meta a { color: var(--seo-blue-strong); font-weight: 750; text-underline-offset: 3px; }

.seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.seo-hero-media {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.seo-hero-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% 3% 4%;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(190, 215, 238, .8);
  border-radius: 36px;
  box-shadow: var(--seo-shadow);
  transform: rotate(2deg);
}

.seo-hero-media picture {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.seo-hero-media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 535px;
  max-width: 520px;
  max-height: 535px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(8, 42, 72, .2));
}

.seo-section { padding-block: 92px; }
.seo-section:nth-of-type(even) { background: var(--seo-soft); }

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

.seo-benefit-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--seo-line);
  border-radius: 20px;
  background: #fff;
}

.seo-benefit-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--seo-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.seo-benefit-grid h3, .seo-product-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.seo-benefit-grid p, .seo-product-card p { margin: 0; color: var(--seo-muted); }

.seo-products { background: var(--seo-ink) !important; color: #fff; }
.seo-products .seo-kicker, .seo-products .seo-verified { color: #82c3ff; }

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

.seo-product-card {
  overflow: hidden;
  color: var(--seo-ink);
  background: #fff;
  border-radius: var(--seo-radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .16);
}

.seo-product-media {
  aspect-ratio: 1.16 / 1;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #f9fcff, #e9f4fd);
}
.seo-product-media picture { width: 100%; height: 100%; display: grid; place-items: center; }
.seo-product-media img { width: 100%; height: 100%; object-fit: contain; }
.seo-product-body { padding: 24px; }
.seo-product-card ul { padding: 0; margin: 18px 0; list-style: none; }
.seo-product-card li { position: relative; padding-left: 20px; color: #35506a; font-size: 13px; }
.seo-product-card li + li { margin-top: 7px; }
.seo-product-card li::before { content: "✓"; position: absolute; left: 0; color: var(--seo-success); font-weight: 900; }

.seo-product-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--seo-line);
}
.seo-product-price > span { color: var(--seo-muted); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.seo-product-price strong { grid-row: span 2; font-size: 26px; line-height: 1; letter-spacing: -.04em; }
.seo-product-price small { color: var(--seo-muted); font-size: 11px; }
.seo-monthly { margin-top: 8px !important; font-size: 12px; }
.seo-text-link { display: inline-flex; margin-top: 20px; color: var(--seo-blue); font-size: 13px; font-weight: 750; text-decoration: none; }
.seo-verified { margin: 22px 0 0; color: var(--seo-muted); font-size: 12px; }

.seo-offer { background: linear-gradient(135deg, #eff8ff, #fff) !important; }
.seo-offer-grid { display: grid; grid-template-columns: 1fr 370px; align-items: center; gap: 64px; }
.seo-offer-grid > div:first-child > p:not(.seo-kicker) { max-width: 680px; color: var(--seo-muted); font-size: 18px; }
.seo-price-panel { padding: 30px; background: var(--seo-ink); color: #fff; border-radius: var(--seo-radius); box-shadow: var(--seo-shadow); }
.seo-price-panel > span:first-child { display: block; color: #a9bfd2; font-size: 12px; text-transform: uppercase; }
.seo-price-panel > strong { display: block; margin: 8px 0 2px; font-size: 45px; line-height: 1; letter-spacing: -.05em; }
.seo-price-panel > small { color: #a9bfd2; }
.seo-zero { display: block; margin: 22px 0 18px; padding: 12px; color: #baf5dc; background: rgba(22, 165, 113, .13); border-radius: 10px; font-size: 13px; font-weight: 750; }
.seo-price-panel .seo-button { width: 100%; }

.seo-evidence { background: #fff !important; }
.seo-evidence-intro { max-width: 820px; margin: 20px 0 34px; color: var(--seo-muted); font-size: 18px; }
.seo-evidence-table { overflow-x: auto; border: 1px solid var(--seo-line); border-radius: 18px; background: #fff; box-shadow: 0 16px 45px rgba(13, 50, 83, .07); }
.seo-evidence-table:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
.seo-evidence table { width: 100%; border-collapse: collapse; font-size: 13px; line-height: 1.55; }
.seo-evidence th, .seo-evidence td { padding: 18px; border-bottom: 1px solid var(--seo-line); text-align: left; vertical-align: top; }
.seo-evidence thead th { color: #fff; background: var(--seo-ink); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.seo-evidence tbody tr:last-child > * { border-bottom: 0; }
.seo-evidence tbody th { width: 17%; background: #f6faff; }
.seo-evidence tbody th strong { display: block; font-size: 15px; }
.seo-evidence tbody th a { display: inline-flex; margin-top: 8px; color: var(--seo-blue); font-size: 11px; font-weight: 750; text-decoration: none; }
.seo-evidence tbody td { color: #38536d; }
.seo-evidence-note { margin: 22px 0 0; padding: 18px 20px; color: #24425e; background: var(--seo-sky); border-left: 4px solid var(--seo-blue); border-radius: 10px; font-size: 13px; }

.seo-demo { overflow: hidden; background: #f5f9fc !important; }
.seo-demo-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.seo-demo-heading > p { max-width: 430px; margin: 0; color: var(--seo-muted); text-align: right; }
.seo-demo-media { overflow: hidden; aspect-ratio: 3 / 2; background: #e7f0f7; border: 1px solid var(--seo-line); border-radius: var(--seo-radius); box-shadow: var(--seo-shadow); }
.seo-demo-media picture { width: 100%; height: 100%; display: block; }
.seo-demo-media img { width: 100%; height: 100%; object-fit: cover; }
.seo-demo-media.is-portrait { aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at center, #fff, #e6f2fb); }
.seo-demo-media.is-portrait picture { display: grid; place-items: center; }
.seo-demo-media.is-portrait img { width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(8, 42, 72, .2)); }

.seo-scope { background: #fff !important; }
.seo-scope-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 70px; align-items: start; }
.seo-scope-grid > div > p:last-child { max-width: 740px; margin: 24px 0 0; color: var(--seo-muted); font-size: 18px; }
.seo-scope aside { padding: 28px; color: #24425e; background: var(--seo-sky); border: 1px solid #cfe7fb; border-radius: 18px; }
.seo-scope aside strong { color: var(--seo-blue-strong); }
.seo-scope aside p { margin: 10px 0 0; }

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.seo-related-grid a { min-height: 220px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--seo-line); border-radius: 18px; background: #fff; text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.seo-related-grid a:hover { border-color: #94c8f2; transform: translateY(-3px); }
.seo-related-grid span { color: var(--seo-blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.seo-related-grid strong { margin-top: 16px; font-size: 18px; line-height: 1.3; letter-spacing: -.02em; }
.seo-related-grid em { margin-top: auto; color: var(--seo-muted); font-size: 12px; font-style: normal; font-weight: 750; }

.seo-faq { background: #fff !important; }
.seo-faq-grid { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 80px; align-items: start; }
.seo-faq details { border-top: 1px solid var(--seo-line); }
.seo-faq details:last-child { border-bottom: 1px solid var(--seo-line); }
.seo-faq summary { position: relative; padding: 22px 42px 22px 0; cursor: pointer; font-size: 17px; font-weight: 750; line-height: 1.35; list-style: none; }
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after { content: "+"; position: absolute; right: 6px; color: var(--seo-blue); font-size: 25px; line-height: 1; }
.seo-faq details[open] summary::after { content: "–"; }
.seo-faq details p { max-width: 720px; margin: 0 0 22px; color: var(--seo-muted); }

.seo-contact { padding-block: 82px; color: #fff; background: var(--seo-blue-strong); }
.seo-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.seo-contact .seo-kicker { color: #9bd1ff; }
.seo-contact h2 { max-width: 650px; }
.seo-contact p:not(.seo-kicker) { margin: 14px 0 0; color: #d9ecff; }
.seo-contact .seo-actions { margin: 0; justify-content: flex-end; }
.seo-contact .seo-button { background: #fff; border-color: #fff; color: var(--seo-blue-strong); box-shadow: none; }
.seo-contact .seo-button-light { background: transparent; color: #fff; }

.seo-footer { padding: 64px 0 24px; color: #c4d5e3; background: #071725; }
.seo-footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.15fr; gap: 45px; }
.seo-brand-footer { color: #fff; }
.seo-brand-footer > img { width: 35px; height: 40px; }
.seo-footer p { margin: 16px 0 0; font-size: 13px; }
.seo-footer nav, .seo-footer-grid > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.seo-footer nav a, .seo-footer-grid > div:last-child a { color: #c4d5e3; font-size: 12px; line-height: 1.35; text-decoration: none; }
.seo-footer-grid > div:last-child button { padding: 0; color: #c4d5e3; background: transparent; border: 0; cursor: pointer; font: inherit; font-size: 12px; line-height: 1.35; text-align: left; }
.seo-footer-grid > div:last-child button:hover, .seo-footer-grid > div:last-child button:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.seo-footer nav a:hover, .seo-footer-grid > div:last-child a:hover { color: #fff; }
.seo-footer-grid > div:last-child strong { color: #fff; font-size: 13px; }
.seo-footer-grid > div:last-child p { margin: 0 0 8px; }
.seo-copyright { margin-top: 44px !important; padding-top: 20px; border-top: 1px solid #173047; color: #7990a4; }

@media (max-width: 1050px) {
  .seo-main-nav { display: none; }
  .seo-lang { margin-left: auto; }
  .seo-mobile-nav { display: block; }
  .seo-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(310px, .75fr); gap: 28px; }
  .seo-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .seo-wrap { width: min(calc(100% - 28px), var(--seo-wrap)); }
  .seo-header-inner { min-height: 66px; gap: 10px; }
  .seo-brand > img { width: 32px; height: 36px; }
  .seo-brand > strong { font-size: 14px; }
  .seo-header-cta { margin-left: auto; min-height: 38px; padding: 9px 12px; font-size: 12px; }
  .seo-lang { margin-left: 0; }
  .seo-lang { gap: 9px; }
  .seo-lang a { min-width: 24px; padding-inline: 0; }
  .seo-breadcrumb { min-height: 44px; }
  .seo-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 30px; padding-block: 38px 42px; }
  .seo-hero h1 { font-size: clamp(38px, 11vw, 58px); }
  .seo-lead { font-size: 18px; }
  .seo-hero-media { min-height: 360px; order: -1; }
  .seo-hero-media::after { inset: 5% 3% 2%; border-radius: 26px; }
  .seo-hero-media img { height: 390px; max-height: 390px; }
  .seo-section { padding-block: 64px; }
  .seo-benefit-grid, .seo-product-grid { grid-template-columns: 1fr; }
  .seo-benefit-grid article { min-height: 0; }
  .seo-benefit-grid article > span { margin-bottom: 24px; }
  .seo-offer-grid, .seo-scope-grid, .seo-faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .seo-contact-inner { display: block; }
  .seo-demo-heading { display: block; }
  .seo-demo-heading > p { margin-top: 12px; text-align: left; }
  .seo-demo-media.is-portrait { aspect-ratio: 4 / 5; padding: 18px; }
  .seo-contact .seo-actions { margin-top: 28px; justify-content: flex-start; }
  .seo-evidence-table { overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .seo-evidence table, .seo-evidence tbody, .seo-evidence tr, .seo-evidence th, .seo-evidence td { display: block; width: 100%; }
  .seo-evidence thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .seo-evidence tbody { display: grid; gap: 12px; }
  .seo-evidence tbody tr { overflow: hidden; border: 1px solid var(--seo-line); border-radius: 15px; background: #fff; box-shadow: 0 10px 30px rgba(13, 50, 83, .06); }
  .seo-evidence tbody th { padding: 16px; border-bottom: 1px solid var(--seo-line); }
  .seo-evidence tbody td { padding: 14px 16px; border-bottom: 1px solid var(--seo-line); }
  .seo-evidence tbody td::before { content: attr(data-label); display: block; margin-bottom: 5px; color: var(--seo-ink); font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
  .seo-evidence tbody tr > *:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  .seo-header { backdrop-filter: none; }
  .seo-header-cta { display: none; }
  .seo-actions { display: grid; grid-template-columns: 1fr; }
  .seo-button { width: 100%; }
  .seo-hero-media { min-height: 300px; }
  .seo-hero-media img { height: 320px; max-height: 320px; }
  .seo-related-grid { grid-template-columns: 1fr; }
  .seo-related-grid a { min-height: 170px; }
  .seo-price-panel > strong { font-size: 38px; }
  .seo-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .seo-footer { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.seo-provider-intro { max-width: 780px; margin: 18px 0 0; color: var(--seo-muted); font-size: 17px; }
.seo-provider-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.seo-provider-grid article { min-width: 0; padding: 25px; background: #fff; border: 1px solid var(--seo-line); border-radius: 18px; }
.seo-provider-grid h3 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.seo-provider-grid p { margin: 12px 0 18px; color: var(--seo-muted); font-size: 14px; }
.seo-provider-grid .seo-text-link { font-size: 12px; font-weight: 800; }

.seo-decision { background: #fff !important; }
.seo-decision-intro,
.seo-setup-intro { max-width: 820px; margin: 20px 0 0; color: var(--seo-muted); font-size: 18px; }
.seo-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.seo-decision-grid article { min-width: 0; padding: 28px; border: 1px solid #cbe5da; border-radius: 18px; background: #f4fbf8; }
.seo-decision-grid article.seo-decision-clarify { border-color: #f0d7c9; background: #fff8f3; }
.seo-decision-grid h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.seo-decision-grid ul { margin: 20px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.seo-decision-grid li { position: relative; padding-left: 25px; color: #38536d; }
.seo-decision-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--seo-success); font-weight: 900; }
.seo-decision-clarify li::before { content: "!"; width: 17px; height: 17px; top: 4px; display: grid; place-items: center; color: #8c4e2f; border: 1px solid #d7a488; border-radius: 50%; font-size: 11px; line-height: 1; }

.seo-setup { background: var(--seo-soft) !important; }
.seo-setup-grid { margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; list-style: none; counter-reset: none; }
.seo-setup-grid li { min-width: 0; padding: 28px; border: 1px solid var(--seo-line); border-radius: 18px; background: #fff; }
.seo-setup-grid li > span { display: inline-grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--seo-blue-strong); border-radius: 10px; font-size: 12px; font-weight: 850; }
.seo-setup-grid h3 { margin: 22px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.seo-setup-grid p { margin: 0; color: var(--seo-muted); }

@media (max-width: 680px) {
  .seo-provider-grid, .seo-decision-grid, .seo-setup-grid { grid-template-columns: 1fr; }
}

/* Localized payment-fee calculator. The component is inert unless the page
   exposes a [data-fee-calculator] mount point. */
.seo-fee-calculator {
  padding: clamp(24px, 4vw, 46px);
  color: var(--seo-ink);
  background: linear-gradient(145deg, #ffffff 0%, #f4f9fe 100%);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius);
  box-shadow: 0 18px 55px rgba(13, 50, 83, .09);
}

.seo-fee-calculator__heading { max-width: 830px; }
.seo-fee-calculator__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-wrap: balance;
}
.seo-fee-calculator__heading > p:last-child { margin: 18px 0 0; color: var(--seo-muted); font-size: 17px; }

.seo-fee-calculator__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 16px;
  margin-top: 30px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--seo-line);
  border-radius: 18px;
}

.seo-fee-calculator__field { min-width: 0; }
.seo-fee-calculator__field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.seo-fee-calculator__field small { display: block; margin-top: 6px; color: var(--seo-muted); font-size: 11px; }
.seo-fee-calculator__input-wrap {
  min-height: 50px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: #f8fbfe;
  border: 1px solid #cbdce9;
  border-radius: 12px;
}
.seo-fee-calculator__input-wrap:focus-within { border-color: var(--seo-blue); box-shadow: 0 0 0 3px rgba(0, 104, 204, .14); }
.seo-fee-calculator__input-wrap > span { padding-left: 14px; color: var(--seo-muted); font-size: 12px; font-weight: 850; }
.seo-fee-calculator__input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px 12px 8px;
  color: var(--seo-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-weight: 750;
}

.seo-fee-calculator__submit {
  min-height: 50px;
  padding: 12px 20px;
  color: #fff;
  background: var(--seo-blue);
  border: 1px solid var(--seo-blue);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.seo-fee-calculator__submit:hover { background: var(--seo-blue-strong); border-color: var(--seo-blue-strong); }
.seo-fee-calculator__submit:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }

.seo-fee-calculator__assumptions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 22px;
  margin: 18px 2px 0;
  color: var(--seo-muted);
  font-size: 12px;
}
.seo-fee-calculator__assumptions strong { color: var(--seo-ink); }
.seo-fee-calculator__assumptions b { color: var(--seo-blue-strong); }
.seo-fee-calculator__assumptions > span:last-child { flex-basis: 100%; }

.seo-fee-calculator__results { margin-top: 34px; }
.seo-fee-calculator__results h3 { margin: 0 0 16px; font-size: 21px; letter-spacing: -.025em; }
.seo-fee-calculator__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.seo-fee-calculator__grid article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
}
.seo-fee-calculator__provider { min-height: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.seo-fee-calculator__provider strong { font-size: 15px; }
.seo-fee-calculator__provider span {
  padding: 3px 7px;
  color: #315673;
  background: var(--seo-sky);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.seo-fee-calculator__grid output { min-height: 56px; display: flex; align-items: center; margin-top: 9px; color: var(--seo-blue-strong); font-size: 20px; font-weight: 850; line-height: 1.25; letter-spacing: -.02em; }
.seo-fee-calculator__grid output.is-quote { font-size: 16px; }
.seo-fee-calculator__grid article > p { margin: 12px 0 0; color: var(--seo-muted); font-size: 11px; line-height: 1.55; }
.seo-fee-calculator__grid [data-provider="twint"] { border-color: #b8ddf3; }
.seo-fee-calculator__grid [data-provider="wallee"] { border-style: dashed; }

.seo-fee-calculator__disclaimer { margin: 22px 0 0; padding: 15px 17px; color: #36536c; background: #eaf5ff; border-left: 4px solid var(--seo-blue); border-radius: 10px; font-size: 11px; }
.seo-fee-calculator__sources { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 16px; color: var(--seo-muted); font-size: 11px; }
.seo-fee-calculator__sources strong { color: var(--seo-ink); }
.seo-fee-calculator__sources a { color: var(--seo-blue-strong); font-weight: 750; text-underline-offset: 3px; }
.seo-fee-calculator__sources a:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }

@media (max-width: 920px) {
  .seo-fee-calculator__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-fee-calculator__submit { grid-column: 1 / -1; }
  .seo-fee-calculator__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .seo-fee-calculator { padding: 24px 16px; border-radius: 18px; }
  .seo-fee-calculator__form { grid-template-columns: 1fr; padding: 16px; }
  .seo-fee-calculator__submit { grid-column: auto; width: 100%; white-space: normal; }
  .seo-fee-calculator__grid { grid-template-columns: 1fr; }
  .seo-fee-calculator__grid article { padding: 18px; }
  .seo-fee-calculator__grid output { min-height: 0; }
}
