:root {
  --teal: #0DA19F;
  --teal-dark: #087775;
  --teal-deep: #063F3E;
  --teal-soft: #E8F7F6;
  --orange: #EC6008;
  --orange-dark: #C64E05;
  --orange-soft: #FFF0E7;
  --ink: #102A2A;
  --text: #3F5A59;
  --muted: #748A89;
  --line: #DDEBEA;
  --surface: #FFFFFF;
  --surface-alt: #F7FBFB;
  --shadow-sm: 0 12px 32px rgba(6,63,62,.08);
  --shadow-lg: 0 28px 72px rgba(6,63,62,.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --content: 1240px;
  --header-content: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
main { display: block; }
svg { display: block; }

.container {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}
.narrow {
  width: min(860px, calc(100% - 64px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,161,159,.12);
  backdrop-filter: blur(18px);
}
.header-inner.container {
  width: min(var(--header-content), calc(100% - 64px));
}
.header-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  flex: 0 0 168px;
  width: 168px;
  display: flex;
  align-items: center;
}
.brand img {
  width: 168px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  white-space: nowrap;
}
.nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #294746;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.nav a:hover,
.nav a.active { color: var(--teal-dark); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions .btn { padding: 12px 18px; }
.menu-toggle { display: none !important; }
.mobile-menu-button,
.mobile-nav { display: none; }
.mobile-menu-button {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
}
.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  width: 20px;
  height: 2px;
  display: block;
  position: relative;
  border-radius: 2px;
  background: var(--ink);
}
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}
.mobile-menu-button span::before { top: -6px; }
.mobile-menu-button span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(236,96,8,.22);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(13,161,159,.22);
}
.btn-secondary:hover { background: var(--teal-dark); }
.btn-ghost {
  color: var(--teal-deep);
  background: white;
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--teal-dark);
  border-color: rgba(13,161,159,.48);
}
.btn-link { color: var(--teal-dark); font-weight: 750; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow.orange { color: var(--orange-dark); background: var(--orange-soft); }
.accent { color: var(--teal); }
.accent-orange { color: var(--orange); }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  background: linear-gradient(180deg, #FBFEFE 0%, #FFFFFF 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,161,159,.16), rgba(13,161,159,0) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -170px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,96,8,.11), rgba(236,96,8,0) 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  gap: 68px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero h1,
.page-hero h1 {
  margin: 0;
  letter-spacing: -.045em;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 5.1vw, 70px);
  line-height: 1.03;
}
.hero-copy {
  max-width: 640px;
  margin: 24px 0 30px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 34px;
}
.proof-chip {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.88);
}
.proof-chip > div { min-width: 0; }
.proof-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  box-shadow: 0 10px 22px rgba(13,161,159,.22);
  font-size: 0;
}
.proof-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.proof-icon-payout {
  background: linear-gradient(145deg, #FF7A22, var(--orange));
  box-shadow: 0 10px 22px rgba(236,96,8,.22);
}
.proof-icon-status {
  background: linear-gradient(145deg, var(--teal), #087775);
}
.proof-chip {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.proof-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(13,161,159,.22);
  box-shadow: 0 14px 30px rgba(6,63,62,.08);
}
.proof-chip strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}
.proof-chip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-height: 555px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(4,74,73,.16));
}
.visual-badge {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 12px 15px;
  border: 1px solid rgba(13,161,159,.12);
  border-radius: 15px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}
.visual-badge.top { top: 8%; right: 1%; }
.visual-badge.bottom { left: 1%; bottom: 8%; }

/* Shared sections */
.section { padding: 88px 0; }
.section.alt { background: var(--surface-alt); }
.section.teal-band {
  color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.section-head {
  max-width: 790px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center p { max-width: 720px; margin-inline: auto; }
.section-head h2,
.split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-head p,
.split-copy p {
  margin-top: 0;
  color: var(--text);
  font-size: 17px;
}
.section-head p { font-size: 18px; }
.teal-band .section-head p { color: rgba(255,255,255,.78); }

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  align-items: stretch;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
.card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 8px 24px rgba(6,63,62,.035);
}
.card:hover { box-shadow: var(--shadow-sm); }
.card-icon {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(13,161,159,.10);
  border-radius: 18px;
  color: var(--teal-dark);
  background: linear-gradient(180deg, #F5FCFC 0%, var(--teal-soft) 100%);
  box-shadow: 0 12px 28px rgba(6,63,62,.08);
  font-weight: 900;
  font-size: 0;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.card-icon.orange {
  color: var(--orange-dark);
  border-color: rgba(236,96,8,.10);
  background: linear-gradient(180deg, #FFF8F3 0%, var(--orange-soft) 100%);
  box-shadow: 0 12px 28px rgba(236,96,8,.08);
}
.card h3 { margin: 0 0 9px; font-size: 22px; line-height: 1.25; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--text); }
.card .link-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--teal-dark);
  font-weight: 750;
}
.product-card { position: relative; overflow: hidden; min-height: 280px; }
.product-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: var(--teal-soft);
  pointer-events: none;
}
.product-card:nth-child(even)::after { background: var(--orange-soft); }
.product-card > * { position: relative; z-index: 1; }

.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 72px;
  align-items: center;
}
.split > * { min-width: 0; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
.split-copy { align-self: center; }
.split-copy p:last-of-type { margin-bottom: 0; }
.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-weight: 900;
}
.split-visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.18);
}
.metric {
  min-width: 0;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: rgba(3,88,86,.36);
}
.metric strong { display: block; margin-bottom: 5px; font-size: 21px; }
.metric span { color: rgba(255,255,255,.75); font-size: 14px; }

.code-panel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  color: #DFF7F6;
  background: #102A2A;
  box-shadow: var(--shadow-lg);
}
.code-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  color: #9AC9C7;
  background: #173B3A;
  font-size: 13px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.dot:nth-child(2) { background: #F2B053; }
.dot:nth-child(3) { background: var(--teal); }
.code-panel pre {
  margin: 0;
  padding: 25px;
  overflow-x: auto;
  white-space: pre;
  font: 13px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.code-panel .key { color: #8EE3DF; }
.code-panel .value { color: #FFB17E; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  counter-reset: steps;
}
.step {
  min-width: 0;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  font-weight: 850;
}
.step h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; }
.step p { margin: 0; color: var(--text); font-size: 14px; }

/* Inner page hero */
.page-hero {
  padding: 84px 0 76px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #F1FBFA 0%, #FFF8F3 100%);
}
.page-hero .hero-grid {
  grid-template-columns: minmax(0,1fr) minmax(360px,.82fr);
  gap: 64px;
  align-items: center;
}
.page-hero h1 {
  max-width: 800px;
  font-size: clamp(42px, 4.55vw, 60px);
  line-height: 1.05;
}
.page-hero p {
  max-width: 680px;
  margin: 22px 0 28px;
  color: var(--text);
  font-size: 19px;
}
.page-hero .page-visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-hero .page-visual img {
  width: 100%;
  max-width: 560px;
  max-height: 430px;
  margin: 0;
  object-fit: contain;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a { color: var(--teal-dark); font-weight: 700; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: 60px;
  align-items: start;
}
.side-title { position: sticky; top: 120px; }
.side-title h2 { margin: 0 0 14px; font-size: 38px; line-height: 1.1; }
.feature-stack { display: grid; gap: 18px; }
.feature-stack .card {
  height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
}
.feature-stack .card .card-icon { margin: 0; }

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
table { width: 100%; min-width: 680px; border-collapse: collapse; }
th, td { padding: 15px 17px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
th { color: var(--teal-deep); background: var(--surface-alt); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 800;
}
.tag.orange { color: var(--orange-dark); background: var(--orange-soft); }

.callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1.4fr) auto;
  gap: 40px;
  align-items: center;
  padding: 44px 48px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.callout::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -120px;
  border: 46px solid rgba(236,96,8,.5);
  border-radius: 50%;
  pointer-events: none;
}
.callout > * { min-width: 0; }
.callout h2 { margin: 0 0 10px; font-size: 38px; line-height: 1.12; letter-spacing: -.03em; }
.callout p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); }
.callout .hero-actions { position: relative; z-index: 1; justify-content: flex-end; flex-wrap: nowrap; }
.callout .btn-primary { background: var(--orange); }
.callout .btn-ghost { color: white; background: transparent; border-color: rgba(255,255,255,.38); }

.logo-cloud { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.logo-pill {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: white;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
  gap: 28px;
  align-items: start;
}
.contact-card {
  min-width: 0;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}
.contact-card h3 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { min-width: 0; display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--teal-deep); font-size: 13px; font-weight: 750; }
input, textarea, select {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  outline: none;
  border: 1px solid #CFE3E2;
  border-radius: 12px;
  color: var(--ink);
  background: white;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,161,159,.10);
}
textarea { min-height: 140px; resize: vertical; }
.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  color: #6E3D20;
  background: var(--orange-soft);
  font-size: 14px;
}
.form-success {
  padding: 15px 16px;
  border: 1px solid rgba(13,161,159,.28);
  border-radius: 14px;
  color: var(--teal-deep);
  background: rgba(13,161,159,.08);
  font-size: 14px;
  line-height: 1.6;
}
.form-success[hidden] { display: none; }
.form-grid .btn { width: fit-content; }

.faq { display: grid; gap: 12px; }
details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
summary { cursor: pointer; color: var(--teal-deep); font-weight: 800; }
details p { margin-bottom: 0; color: var(--text); }

.legal-content h2 { margin-top: 38px; color: var(--teal-deep); }
.legal-content p, .legal-content li { color: var(--text); }
.card, .step, .metric, .footer-links, .contact-card, .legal-content { overflow-wrap: anywhere; }

/* Footer */
.site-footer { margin-top: 0; color: white; background: #082F2E; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px,1.45fr) repeat(4,minmax(120px,.75fr));
  gap: 32px;
  align-items: start;
  padding: 64px 0 42px;
}
.footer-main > * { min-width: 0; }
.footer-brand img {
  width: 160px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.35) saturate(.92);
}
.footer-brand p { max-width: 340px; margin: 18px 0 22px; color: #B6D0CF; }
.footer-main h4 { margin: 4px 0 15px; font-size: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #B6D0CF; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9FC0BE;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1240px) {
  .nav, .header-actions { display: none; }
  .mobile-menu-button { display: flex; }
  .mobile-nav {
    position: absolute;
    z-index: 120;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .menu-toggle:checked ~ .mobile-nav { display: grid; }
  .mobile-nav a:not(.btn) {
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 700;
  }
  .mobile-nav a:not(.btn):hover { color: var(--teal-dark); background: var(--teal-soft); }
  .mobile-nav .btn { width: 100%; margin-top: 5px; }

  .hero-grid,
  .page-hero .hero-grid { grid-template-columns: minmax(0,1fr); gap: 44px; }
  .hero-visual { min-height: auto; max-width: 820px; margin-inline: auto; }
  .page-hero .page-visual { justify-content: center; }
  .page-hero .page-visual img { max-width: 650px; }
  .footer-main { grid-template-columns: minmax(280px,1.3fr) repeat(2,minmax(150px,1fr)); row-gap: 42px; }
}

@media (max-width: 920px) {
  .container, .header-inner.container, .narrow { width: min(100% - 40px, var(--content)); }
  .hero { padding: 76px 0 72px; }
  .hero h1 { font-size: clamp(46px, 8vw, 62px); }
  .hero-proof { grid-template-columns: 1fr; max-width: 620px; }
  .split,
  .feature-row,
  .contact-grid { grid-template-columns: minmax(0,1fr); gap: 38px; }
  .split.reverse .split-copy,
  .split.reverse .split-visual { order: initial; }
  .side-title { position: static; }
  .grid-3,
  .grid-4,
  .steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .metric-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .callout { grid-template-columns: minmax(0,1fr); }
  .callout .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
  .logo-cloud { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .container, .header-inner.container, .narrow { width: min(100% - 28px, var(--content)); }
  .header-inner { min-height: 70px; }
  .brand { flex-basis: 134px; width: 134px; }
  .brand img { width: 134px; height: 40px; }
  .mobile-menu-button { width: 40px; height: 40px; }
  .mobile-nav { border-radius: 15px; padding: 12px; }

  .hero, .page-hero { padding: 58px 0 56px; }
  .hero h1, .page-hero h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1.04; }
  .hero-copy, .page-hero p { font-size: 16px; line-height: 1.65; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-visual img, .page-hero .page-visual img { max-height: 400px; }
  .visual-badge { position: static; display: inline-flex; margin: 10px 8px 0 0; }

  .section { padding: 62px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head h2, .split-copy h2 { font-size: 34px; }
  .grid-2, .grid-3, .grid-4, .steps, .metric-strip, .form-grid { grid-template-columns: minmax(0,1fr); }
  .card, .step { padding: 23px; }
  .product-card { min-height: 0; }
  .metric { min-height: 104px; padding: 22px; }
  .callout { padding: 30px 24px; }
  .callout h2 { font-size: 32px; }
  .callout .hero-actions, .callout .hero-actions .btn { width: 100%; }
  .callout .hero-actions .btn { flex: 1 1 100%; }
  .form-grid .btn { width: 100%; }
  .field.full { grid-column: auto; }

  .footer-main { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 52px 0 34px; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .logo-cloud { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 440px) {
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  .hero h1, .page-hero h1 { font-size: 39px; }
  .footer-main { grid-template-columns: minmax(0,1fr); }
  .footer-brand { grid-column: auto; }
  .logo-cloud { grid-template-columns: minmax(0,1fr); }
}

/* Legal center and policy pages */
.legal-hero {
  padding: 62px 0 54px;
  background:
    radial-gradient(circle at 88% 15%, rgba(236,96,8,.09), transparent 24%),
    radial-gradient(circle at 12% 85%, rgba(13,161,159,.10), transparent 30%),
    linear-gradient(180deg, #FBFEFE 0%, #F8FCFC 100%);
  border-bottom: 1px solid var(--line);
}
.legal-hero .breadcrumbs { margin-bottom: 18px; }
.legal-hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.legal-meta span { display: inline-flex; align-items: center; gap: 7px; }
.legal-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.legal-meta span:nth-child(even)::before { background: var(--orange); }
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6,63,62,.045);
}
.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-deep);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-toc nav { display: grid; gap: 5px; }
.legal-toc a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}
.legal-toc a:hover { color: var(--teal-dark); background: var(--teal-soft); }
.legal-document {
  min-width: 0;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6,63,62,.045);
}
.legal-document > :first-child { margin-top: 0; }
.legal-document h2 {
  scroll-margin-top: 110px;
  margin: 44px 0 14px;
  color: var(--teal-deep);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.legal-document h3 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 18px;
}
.legal-document p,
.legal-document li {
  color: var(--text);
  line-height: 1.8;
}
.legal-document ul,
.legal-document ol { padding-left: 22px; }
.legal-document li + li { margin-top: 8px; }
.legal-document a { color: var(--teal-dark); font-weight: 700; }
.legal-note {
  margin: 0 0 34px;
  padding: 18px 20px;
  border: 1px solid rgba(13,161,159,.18);
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(13,161,159,.07), rgba(13,161,159,.025));
  color: var(--text);
}
.legal-note.orange {
  border-color: rgba(236,96,8,.18);
  border-left-color: var(--orange);
  background: linear-gradient(90deg, rgba(236,96,8,.07), rgba(236,96,8,.025));
}
.legal-contact {
  margin-top: 42px;
  padding: 24px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
}
.legal-contact h3 { margin: 0 0 8px; color: #fff; }
.legal-contact p { margin: 0; color: rgba(255,255,255,.78); }
.legal-contact a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.legal-center-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.legal-policy-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.legal-policy-card .card-icon { margin-bottom: 26px; }
.legal-policy-card .policy-label {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}
.legal-policy-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--teal-soft);
}
.legal-policy-card:nth-child(even)::after { background: var(--orange-soft); }
.legal-policy-card > * { position: relative; z-index: 1; }
.policy-summary {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  margin-top: 30px;
}
.policy-summary .metric {
  min-height: 110px;
  padding: 20px;
}
.policy-summary .metric strong { font-size: 16px; }
.policy-summary .metric span { font-size: 13px; }

@media (max-width: 920px) {
  .legal-layout { grid-template-columns: minmax(0,1fr); gap: 24px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .legal-center-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 680px) {
  .legal-hero { padding: 48px 0 42px; }
  .legal-hero h1 { font-size: 40px; }
  .legal-document { padding: 28px 22px; border-radius: 18px; }
  .legal-document h2 { font-size: 23px; }
  .legal-toc nav { grid-template-columns: minmax(0,1fr); }
  .policy-summary { grid-template-columns: minmax(0,1fr); }
}
