@font-face {
  font-family: "Elyno Roboto";
  src: url("assets/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  --ink: #11172e;
  --ink-soft: #455064;
  --muted: #727c8e;
  --teal: #087e89;
  --teal-dark: #05636c;
  --teal-soft: #e7f5f7;
  --cyan-soft: #e8f7fc;
  --lime: #7daa18;
  --lime-soft: #f1f8d9;
  --success: #169b55;
  --warning: #e2743a;
  --canvas: #f7f9fb;
  --surface: #ffffff;
  --divider: #e5e9ef;
  --outline: #d5dbe4;
  --shadow: 0 18px 50px rgba(17, 23, 46, 0.12);
  --content: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Elyno Roboto", Roboto, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
select {
  font: inherit;
}

button,
a,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 126, 137, 0.36);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(213, 219, 228, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--content), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 22px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-inline: 10px 4px;
  border: 1px solid var(--outline);
  border-radius: 7px;
  background: var(--surface);
  color: var(--teal-dark);
}

.language-control .icon {
  width: 18px;
  height: 18px;
}

.language-control select {
  max-width: 118px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 14px;
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 28px rgba(8, 126, 137, 0.26);
}

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

.button-secondary {
  border-color: var(--outline);
  background: var(--surface);
  color: var(--teal-dark);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-light {
  background: white;
  color: var(--teal-dark);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--outline);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(82svh - var(--header-height)));
  max-height: 760px;
  overflow: hidden;
  background: #0a1c47;
  color: white;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.hero-shade {
  background: rgba(7, 17, 46, 0.64);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-block: 56px;
}

.hero-copy {
  width: min(650px, 62%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9bf0e2;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 900;
}

.hero-title-support {
  margin: 18px 0 0;
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof .icon {
  width: 16px;
  height: 16px;
  color: #9bf0e2;
}

.hero-phone {
  position: absolute;
  inset-inline-end: 24px;
  bottom: -120px;
  width: 310px;
  height: 610px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 44px;
  background: #0e1224;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(3deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  inset-block-start: 21px;
  inset-inline-start: 50%;
  width: 92px;
  height: 23px;
  border-radius: 14px;
  background: #050812;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 54px 17px 22px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--canvas);
  color: var(--ink);
}

.phone-topbar {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.phone-topbar img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.phone-topbar strong {
  font-size: 18px;
}

.phone-topbar span {
  color: var(--muted);
  font-size: 11px;
}

.phone-attention,
.phone-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: white;
}

.phone-attention strong,
.phone-attention small,
.phone-row strong,
.phone-row small {
  display: block;
}

.phone-attention strong {
  font-size: 13px;
}

.phone-attention small,
.phone-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.phone-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff0e9;
  color: var(--warning);
}

.phone-icon .icon {
  width: 20px;
  height: 20px;
}

.phone-icon-lime {
  background: var(--lime-soft);
  color: var(--lime);
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-block: 10px;
}

.phone-grid > div {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 13px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: white;
}

.phone-grid .icon {
  margin-bottom: auto;
  color: var(--teal);
}

.phone-grid span {
  color: var(--muted);
  font-size: 10px;
}

.phone-grid strong {
  font-size: 17px;
}

.phone-ai {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font-size: 12px;
}

.phone-ai .icon {
  color: var(--teal);
}

.trust-strip {
  width: min(var(--content), calc(100% - 40px));
  min-height: 118px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--divider);
}

.trust-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--muted);
}

.trust-item + .trust-item {
  border-inline-start: 1px solid var(--divider);
}

.trust-item strong {
  color: var(--ink);
  font-size: 30px;
}

.trust-item span {
  font-size: 14px;
}

.section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding-block: 104px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section h2,
.guide-hero h1,
.guide-content h2,
.guide-finish h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading > p:last-child,
.workflow-intro > p:last-of-type,
.ai-copy > p:last-of-type,
.report-copy > p:last-of-type,
.security-section > div > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.feature-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 23, 46, 0.09);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--lime-soft);
  color: var(--lime);
}

.feature-card:nth-child(3) .feature-icon {
  background: #fff0e9;
  color: var(--warning);
}

.feature-card:nth-child(4) .feature-icon {
  background: #f0ecff;
  color: #6753a3;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
}

.feature-icon .icon {
  width: 27px;
  height: 27px;
}

.feature-card h3 {
  margin: auto 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  border-top: 1px solid var(--divider);
}

.workflow-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-step {
  counter-increment: workflow;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding-block: 30px;
  border-bottom: 1px solid var(--divider);
}

.workflow-step:first-child {
  padding-top: 0;
}

.workflow-step::before {
  content: counter(workflow, decimal-leading-zero);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.workflow-step h3 {
  margin: 3px 0 8px;
  font-size: 24px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.check-list,
.security-points,
.guide-dos ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.security-points li,
.guide-dos li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.check-list .icon,
.security-points .icon,
.guide-dos .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--success);
}

.ai-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 50px;
  background: var(--teal-soft);
  border-radius: 8px;
}

.document-sheet {
  width: min(100%, 410px);
  padding: 26px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.document-header {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--divider);
}

.document-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--teal);
}

.document-header strong,
.document-header small {
  display: block;
}

.document-header small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.confidence {
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--lime-soft);
  color: #557a0c;
  font-size: 12px;
  font-weight: 900;
}

.document-sheet dl {
  margin: 18px 0;
}

.document-sheet dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
}

.document-sheet dt {
  color: var(--muted);
}

.document-sheet dd {
  margin: 0;
  font-weight: 800;
  text-align: end;
}

.document-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 7px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.report-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  border-top: 1px solid var(--divider);
}

.report-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 44px;
  background: #f0ecff;
  border-radius: 8px;
}

.report-page {
  width: min(100%, 390px);
  min-height: 430px;
  padding: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.report-page-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}

.report-page-head img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.report-bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding-block: 24px 14px;
  border-bottom: 1px solid var(--divider);
}

.report-bars span {
  width: 30%;
  height: var(--bar);
  display: block;
  background: var(--teal);
}

.report-bars span:nth-child(2) {
  background: var(--lime);
}

.report-bars span:nth-child(3) {
  background: var(--warning);
}

.report-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-block: 20px;
}

.report-numbers small,
.report-numbers strong {
  display: block;
}

.report-numbers small {
  color: var(--muted);
}

.report-numbers strong {
  margin-top: 4px;
  font-size: 19px;
}

.report-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  background: var(--lime-soft);
  color: #4f700f;
  font-size: 13px;
  font-weight: 800;
}

.report-copy .button {
  margin-top: 26px;
}

.security-section {
  display: grid;
  grid-template-columns: 86px 1fr 0.85fr;
  gap: 38px;
  align-items: start;
  border-top: 1px solid var(--divider);
}

.security-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime-soft);
  color: var(--lime);
}

.security-icon .icon {
  width: 38px;
  height: 38px;
}

.security-points {
  margin: 0;
}

.security-section > *,
.security-points li,
.security-points span {
  min-width: 0;
}

.ai-section > *,
.report-section > *,
.ai-copy,
.report-copy,
.check-list li,
.check-list span,
.final-cta > * {
  min-width: 0;
}

.security-section h2,
.security-section p,
.security-points span,
.ai-copy h2,
.ai-copy p,
.check-list span,
.report-copy h2,
.report-copy p,
.final-cta h2,
.final-cta p,
.final-cta .button {
  overflow-wrap: anywhere;
}

.final-cta,
.guide-finish {
  width: min(var(--content), calc(100% - 40px));
  min-height: 250px;
  margin: 24px auto 80px;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 44px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: white;
}

.final-cta img,
.guide-finish img {
  border-radius: 8px;
}

.final-cta h2,
.guide-finish h2 {
  color: white;
  font-size: clamp(30px, 4vw, 50px);
}

.final-cta p:last-child,
.guide-finish p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  width: min(var(--content), calc(100% - 40px));
  min-height: 130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--divider);
  color: var(--muted);
  font-size: 13px;
}

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

.footer-brand img {
  border-radius: 7px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 17px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-footer > p {
  justify-self: end;
  text-align: end;
}

/* Guide */
.guide-hero {
  width: min(var(--content), calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 60px;
  padding-block: 64px;
  border-bottom: 1px solid var(--divider);
}

.guide-hero-copy > p:last-of-type {
  max-width: 650px;
  margin: 20px 0 28px;
  color: var(--ink-soft);
  font-size: 19px;
}

.guide-hero-visual {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 36px;
  border-radius: 8px;
  background: var(--teal-soft);
}

.guide-route {
  display: grid;
  grid-template-columns: 54px 1fr 54px 1fr 54px 1fr 54px;
  align-items: center;
}

.guide-route span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--teal);
  box-shadow: 0 8px 22px rgba(17, 23, 46, 0.1);
}

.guide-route span:last-child {
  background: var(--teal);
  color: white;
}

.guide-route i {
  height: 2px;
  background: var(--teal);
}

.guide-route-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  color: var(--ink-soft);
  font-weight: 800;
  text-align: center;
}

.guide-layout {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  padding-block: 72px 110px;
}

.guide-layout > *,
.guide-content,
.guide-step > * {
  min-width: 0;
}

.guide-step h2,
.guide-step p,
.guide-step-action {
  overflow-wrap: anywhere;
}

.guide-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.guide-toc > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-toc nav {
  display: flex;
  flex-direction: column;
}

.guide-toc nav a {
  padding: 10px 12px;
  border-inline-start: 2px solid var(--divider);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.guide-toc nav a:hover,
.guide-toc nav a.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.guide-help {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 10px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: white;
  color: var(--teal);
}

.guide-help span {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.guide-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 48px;
  padding: 22px;
  border-inline-start: 4px solid var(--lime);
  background: var(--lime-soft);
}

.guide-callout > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: white;
  color: var(--lime);
}

.guide-callout p {
  margin: 5px 0 0;
  color: var(--ink-soft);
}

.guide-step {
  scroll-margin-top: calc(var(--header-height) + 24px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding-block: 42px;
  border-bottom: 1px solid var(--divider);
}

.guide-step:first-child {
  padding-top: 0;
}

.guide-step-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 19px;
  font-weight: 900;
}

.guide-step h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.guide-step p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.guide-step-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 13px;
  border: 1px solid var(--outline);
  border-radius: 7px;
  background: white;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.guide-step-action .icon {
  width: 18px;
  height: 18px;
}

.guide-dos,
.faq-section {
  padding-block: 80px 16px;
}

.guide-dos {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
}

.guide-dos h2,
.faq-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.guide-dos ul {
  margin-top: 0;
}

.faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--divider);
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--ink-soft);
}

[dir="rtl"] .icon-directional {
  transform: scaleX(-1);
}

[dir="rtl"] .hero-phone {
  transform: rotate(-3deg);
}

@media (max-width: 1040px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--divider);
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 6px;
    color: var(--ink-soft);
    font-weight: 800;
  }

  .mobile-nav a:hover {
    background: var(--teal-soft);
    color: var(--teal-dark);
  }

  .hero-copy {
    width: min(660px, 72%);
  }

  .hero-phone {
    inset-inline-end: -88px;
    opacity: 0.84;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-section,
  .ai-section,
  .report-section,
  .security-section,
  .guide-hero,
  .guide-dos {
    grid-template-columns: 1fr;
  }

  .workflow-intro {
    position: static;
  }

  .ai-visual,
  .report-visual {
    min-height: 480px;
  }

  .security-section {
    gap: 24px;
  }

  .security-points {
    margin-inline-start: 100px;
  }

  .final-cta,
  .guide-finish {
    grid-template-columns: 76px 1fr;
  }

  .final-cta .button,
  .guide-finish .button {
    grid-column: 2;
    justify-self: start;
  }

  .guide-hero-visual {
    min-height: 260px;
  }

  .guide-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .header-inner,
  .hero-inner,
  .trust-strip,
  .section,
  .final-cta,
  .site-footer,
  .guide-hero,
  .guide-layout,
  .guide-finish {
    width: min(100% - 28px, var(--content));
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 20px;
  }

  .language-control {
    padding-inline-start: 8px;
  }

  .language-control select {
    width: 96px;
    max-width: 96px;
  }

  .hero {
    min-height: min(660px, calc(79svh - var(--header-height)));
  }

  .hero-background {
    object-position: 61% center;
  }

  .hero-shade {
    background: rgba(7, 17, 46, 0.73);
  }

  .hero-inner {
    padding-block: 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 82px);
  }

  .hero-title-support {
    max-width: 520px;
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .hero-lead {
    max-width: 540px;
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 7px;
  }

  .hero-phone {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 12px 4px;
  }

  .trust-item + .trust-item {
    border-inline-start: 0;
    border-top: 1px solid var(--divider);
  }

  .trust-item strong {
    width: 48px;
    font-size: 24px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section h2,
  .guide-hero h1 {
    font-size: clamp(32px, 10.5vw, 45px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .workflow-section,
  .ai-section,
  .report-section {
    gap: 42px;
  }

  .workflow-step {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .workflow-step::before {
    width: 46px;
    height: 46px;
  }

  .ai-section,
  .report-section {
    padding-inline: 0;
  }

  .ai-visual,
  .report-visual {
    min-height: 400px;
    padding: 24px 14px;
  }

  .document-sheet,
  .report-page {
    transform: none;
  }

  .security-icon {
    width: 62px;
    height: 62px;
  }

  .security-points {
    margin-inline-start: 0;
  }

  .final-cta,
  .guide-finish {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
    padding: 30px 24px;
  }

  .final-cta .button,
  .guide-finish .button {
    grid-column: 1;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 32px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer > p {
    justify-self: start;
    text-align: start;
  }

  .guide-hero {
    min-height: auto;
    gap: 38px;
    padding-block: 50px;
  }

  .guide-hero-visual {
    min-height: 230px;
    padding: 34px 18px;
  }

  .guide-route {
    grid-template-columns: 42px 1fr 42px 1fr 42px 1fr 42px;
  }

  .guide-route span {
    width: 42px;
    height: 42px;
  }

  .guide-route span .icon {
    width: 18px;
    height: 18px;
  }

  .guide-route-labels {
    font-size: 11px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    padding-block: 48px 80px;
  }

  .guide-toc {
    position: static;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--divider);
  }

  .guide-toc nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .guide-toc nav a {
    border-inline-start: 0;
    border-bottom: 2px solid var(--divider);
  }

  .guide-help {
    display: none;
  }

  .guide-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding-block: 34px;
  }

  .guide-step-number {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .guide-step h2 {
    font-size: 29px;
  }

  .guide-step p {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .language-control .icon {
    display: none;
  }

  .guide-toc nav {
    grid-template-columns: 1fr;
  }

  .document-header {
    grid-template-columns: 40px 1fr;
  }

  .confidence {
    grid-column: 2;
    justify-self: start;
  }
}

/* Privacy, policy, support and legal pages */
.legal-header .desktop-nav {
  gap: 22px;
}

.legal-hero {
  width: min(var(--content), calc(100% - 40px));
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  padding-block: 76px 64px;
  border-bottom: 1px solid var(--divider);
}

.legal-hero > div:first-child {
  max-width: 850px;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.policy-date {
  min-width: 180px;
  padding: 16px 18px;
  border-inline-start: 3px solid var(--teal);
  background: var(--teal-soft);
}

.policy-date span,
.policy-date strong {
  display: block;
}

.policy-date span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-date strong {
  color: var(--ink);
  font-size: 15px;
}

.privacy-summary {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--divider);
}

.privacy-summary article {
  position: relative;
  min-height: 230px;
  padding: 42px 34px;
  border-inline-end: 1px solid var(--divider);
}

.privacy-summary article:last-child {
  border-inline-end: 0;
}

.summary-index {
  display: block;
  margin-bottom: 25px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.privacy-summary h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.privacy-summary p,
.privacy-rights-grid p,
.contact-panel p,
.support-tip p,
.support-security-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-rights-section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding-block: 86px;
}

.compact-heading {
  max-width: 760px;
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.privacy-rights-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface);
}

.privacy-rights-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.delete-account-band {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  padding: 54px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.delete-account-band > *,
.delete-account-band li,
.delete-account-band strong,
.delete-account-band span {
  min-width: 0;
}

.delete-account-band h2,
.delete-account-band p,
.delete-account-band strong,
.delete-account-band span {
  overflow-wrap: anywhere;
}

.delete-account-band .eyebrow {
  color: var(--aqua);
}

.delete-account-band h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
}

.delete-account-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.delete-account-band ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: deletion-step;
}

.delete-account-band li {
  position: relative;
  min-height: 82px;
  padding: 4px 0 24px 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  counter-increment: deletion-step;
}

[dir="rtl"] .delete-account-band li {
  padding: 4px 52px 24px 0;
}

.delete-account-band li + li {
  padding-top: 24px;
}

.delete-account-band li::before {
  content: counter(deletion-step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  color: var(--aqua);
  font-weight: 900;
}

.delete-account-band strong,
.delete-account-band span {
  display: block;
}

.delete-account-band strong {
  margin-bottom: 7px;
  font-size: 18px;
}

.delete-account-band span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.request-layout,
.support-layout {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 26px;
  align-items: start;
}

.request-layout > *,
.support-layout > *,
.support-sidebar,
.form-grid,
.form-grid > *,
.contact-form > label,
.contact-panel {
  min-width: 0;
}

.contact-form,
.contact-panel,
.legal-identity-card {
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface);
}

.contact-form {
  padding: 38px;
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h2,
.contact-panel h2 {
  margin: 10px 0 12px;
  font-size: 32px;
}

.form-heading p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two-column {
  grid-template-columns: 1fr 1fr;
}

.contact-form > label,
.form-grid label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--outline);
  border-radius: 7px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.form-heading,
.form-heading h2,
.form-heading p,
.contact-panel h2,
.contact-panel dd {
  overflow-wrap: anywhere;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 126, 137, 0.12);
}

.consent-row {
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start;
  gap: 11px !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.contact-form .button {
  min-width: 230px;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border-inline-start: 3px solid var(--teal);
  background: var(--teal-soft);
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-panel,
.legal-identity-card {
  padding: 30px;
}

.contact-panel dl,
.legal-identity-card dl {
  margin: 28px 0;
}

.contact-panel dl div,
.legal-identity-card dl div {
  padding-block: 14px;
  border-bottom: 1px solid var(--divider);
}

.contact-panel dt,
.legal-identity-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd,
.legal-identity-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel a,
.legal-identity-card a,
.policy-contact-grid a {
  color: var(--teal-dark);
}

.support-hero-mark {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
}

.support-hero-mark .icon {
  width: 64px;
  height: 64px;
}

.support-sidebar {
  display: grid;
  gap: 18px;
}

.support-tip,
.support-security-note {
  padding: 24px;
  border-radius: 8px;
}

.support-tip {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  background: var(--teal-soft);
}

.support-tip > .icon {
  width: 25px;
  height: 25px;
  color: var(--teal-dark);
}

.support-tip h3,
.support-security-note h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.support-security-note {
  border: 1px solid #f2c7bd;
  background: #fff7f4;
}

.policy-layout {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 64px;
  padding-block: 70px 110px;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.policy-toc > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-toc nav {
  display: grid;
  margin-bottom: 24px;
}

.policy-toc nav a {
  padding: 9px 12px;
  border-inline-start: 2px solid var(--divider);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.policy-toc nav a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.policy-choice-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--outline);
  border-radius: 7px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.policy-choice-link .icon {
  flex: 0 0 auto;
}

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

.policy-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 20px);
  padding: 0 0 58px 60px;
  border-bottom: 1px solid var(--divider);
}

[dir="rtl"] .policy-section {
  padding: 0 60px 58px 0;
}

.policy-section + .policy-section {
  padding-top: 58px;
}

.policy-section-number {
  position: absolute;
  inset-inline-start: 0;
  top: 5px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.policy-section + .policy-section .policy-section-number {
  top: 63px;
}

.policy-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 40px);
}

.policy-section > p,
.policy-purpose-grid p,
.processor-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.identity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--outline);
  border-radius: 8px;
  overflow: hidden;
  background: var(--outline);
}

.identity-list div {
  padding: 18px;
  background: white;
}

.identity-list dt,
.identity-list dd {
  margin: 0;
}

.identity-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-list dd {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-table-wrap {
  margin: 30px 0 18px;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: 8px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}

.policy-table th,
.policy-table td {
  padding: 14px;
  border-bottom: 1px solid var(--divider);
  text-align: start;
  vertical-align: top;
}

.policy-table th {
  background: var(--ink);
  color: white;
  font-size: 11px;
  text-transform: uppercase;
}

.policy-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-note {
  padding: 16px 18px;
  border-inline-start: 3px solid var(--teal);
  background: var(--teal-soft);
}

.policy-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0;
}

.policy-purpose-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.policy-purpose-grid p {
  margin: 0;
}

.processor-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.processor-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 0.75fr);
  gap: 24px;
  padding: 20px 22px;
  border: 1px solid var(--outline);
  border-radius: 8px;
}

.processor-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.processor-card a {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.processor-card p {
  margin: 0;
}

.processor-data {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.policy-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
}

.policy-list span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

.policy-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.policy-contact-grid div {
  padding: 18px;
  border: 1px solid var(--outline);
  border-radius: 7px;
}

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

.policy-contact-grid span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.terms-layout {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 60px;
  padding-block: 70px 110px;
}

.legal-identity-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.legal-identity-card img {
  border-radius: 8px;
}

.legal-identity-card h2 {
  margin: 16px 0 0;
  font-size: 30px;
}

.terms-article section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 38px;
  border-bottom: 1px solid var(--divider);
}

.terms-article section + section {
  padding-top: 38px;
}

.terms-article section > span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.terms-article h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.terms-article p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.terms-article .terms-highlight {
  margin: 0 -20px;
  padding: 38px 20px;
  border: 0;
  border-radius: 8px;
  background: #fff7f4;
}

@media (max-width: 1120px) {
  .privacy-rights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-layout,
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .policy-toc,
  .legal-identity-card {
    position: static;
  }

  .policy-toc nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .policy-toc nav a {
    border-inline-start: 0;
    border-bottom: 2px solid var(--divider);
  }
}

@media (max-width: 820px) {
  .legal-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding-block: 52px 42px;
  }

  .legal-hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .policy-date {
    width: 100%;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .privacy-summary article {
    min-height: auto;
    padding: 30px 0;
    border-inline-end: 0;
    border-bottom: 1px solid var(--divider);
  }

  .privacy-summary article:last-child {
    border-bottom: 0;
  }

  .summary-index {
    margin-bottom: 12px;
  }

  .delete-account-band,
  .request-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .delete-account-band {
    gap: 42px;
    padding: 34px 24px;
  }

  .form-grid.two-column,
  .identity-list,
  .policy-purpose-grid,
  .policy-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form .button {
    width: 100%;
  }

  .support-hero-mark {
    width: 100%;
    height: 100px;
  }

  .policy-layout,
  .terms-layout {
    padding-block: 42px 80px;
  }

  .policy-toc nav {
    grid-template-columns: 1fr 1fr;
  }

  .policy-section,
  [dir="rtl"] .policy-section {
    padding-inline: 0;
    padding-bottom: 46px;
  }

  .policy-section + .policy-section {
    padding-top: 46px;
  }

  .policy-section-number,
  .policy-section + .policy-section .policy-section-number {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

  .policy-table-wrap {
    overflow: visible;
    border: 0;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .policy-table tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid var(--outline);
    border-radius: 8px;
  }

  .policy-table td {
    display: grid;
    grid-template-columns: minmax(105px, 0.35fr) minmax(0, 0.65fr);
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--divider);
  }

  .policy-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .policy-table td:last-child {
    border-bottom: 0;
  }

  .processor-card,
  .policy-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .terms-article section {
    grid-template-columns: 36px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .privacy-rights-grid,
  .policy-toc nav {
    grid-template-columns: 1fr;
  }

  .privacy-rights-grid article {
    min-height: auto;
  }

  .policy-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
