*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #ffec40;
  --yellow-dark: #e6d400;
  --black: #111111;
  --white: #ffffff;
  --gray-100: #f7f7f5;
  --gray-200: #8f8f87;
  --gray-300: #b0b0a8;
  --gray-400: #6e6e66;
  --gray-700: #5a5a5a;
  --text: #1a1a18;
  --text-muted: #6e6e66;
  --text-muted-dark: #b0b0a8;
  --text-on-dark: #d4d4d0;
  --border: #8f8f87;
  --border-dark: rgba(255, 255, 255, 0.35);
  --focus-color: #111111;
  --focus-color-dark: #ffec40;
  --placeholder-dark: rgba(255, 255, 255, 0.55);
  --green: #4db87d;
  --red: #e05a5a;
  --radius: 4px;
  --max: 1140px;
  --section-pad: 96px 24px;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}

.contact :focus-visible,
footer :focus-visible,
.stats :focus-visible,
.adv-visual :focus-visible {
  outline-color: var(--focus-color-dark);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: box-shadow 0.2s;
}

#nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
}

.logo {
  display: block;
  width: 130px;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  width: 130px;
  height: auto;
}

.nav-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--yellow);
}

.logo-text span {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--gray-700);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary, .form-button_submit {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover,
.btn-primary:focus-visible, .form-button_submit:hover, .form-button_submit:focus-visible {
  background: var(--yellow-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gray-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav {
  padding: 9px 16px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}

.lang-switch__link {
  color: var(--gray-700);
  padding: 4px 5px;
  border-radius: 3px;
  transition: color 0.15s;
}

.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  color: var(--black);
}

.lang-switch__link.is-active {
  color: var(--black);
}

.lang-switch__sep {
  color: var(--gray-300);
  user-select: none;
  font-weight: 400;
}

.mobile-menu__lang {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu .lang-switch {
  justify-content: center;
}

.nav-mobile-tools {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  z-index: 98;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.mobile-menu-backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.burger:hover,
.burger:focus-visible {
  background: var(--gray-100);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  z-index: 99;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  display: block;
  min-height: 48px;
  line-height: 1.25;
}

.mobile-menu__cta {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
}

.mobile-menu a:hover {
  color: var(--gray-700);
}

.mobile-menu a:focus-visible {
  color: var(--black);
}

.hero {
  padding: 160px 24px 96px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: url('/assets/img/icon.svg') no-repeat center center;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}

.hero-content {
  flex: 1 1 280px;
  min-width: 0;
}

.hero-visual {
  flex: 1 1 280px;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

h1 em {
  font-style: normal;
  color: var(--gray-700);
}

.hero-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.funnel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.funnel-card .card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.funnel-step:last-child {
  border-bottom: none;
}

.funnel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-yellow {
  background: var(--yellow);
}

.dot-gray {
  background: var(--gray-300);
}

.dot-green {
  background: var(--green);
}

.funnel-step-text {
  font-size: 14px;
}

.funnel-step-text strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.funnel-step-text span {
  color: var(--text-muted);
  font-size: 12px;
}

.funnel-bar-wrap {
  margin-top: 4px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
}

.funnel-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  width: 68%;
}

.funnel-stats {
  margin-top: 20px;
}

.funnel-stats-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* ── STATS ── */
.stats {
  background: var(--black);
  padding: 56px 24px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.stat-item {
  flex: 1 1 200px;
  padding: 32px 40px;
  text-align: center;
}

.stat-item dd {
  margin: 0;
}

.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 1.4;
}

/* ── SECTION SHARED ── */
section {
  padding: var(--section-pad);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 540px;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--white);
}

.how-header {
  margin-bottom: 64px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 6rem;
  right: 36%;
  height: 1px;
  background: var(--gray-200);
}

.step {
  flex: 1 1 250px;
  padding: 0 32px 0 0;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── USPs ── */
.usps {
  background: var(--gray-100);
}

.usps-header {
  margin-bottom: 56px;
}

.usps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.usp-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.usp-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.usp-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usp-icon svg {
  width: 24px;
  height: 24px;
}

.usp-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.usp-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── FOR ADVERTISERS ── */
.advertisers {
  background: var(--white);
}

.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.adv-visual,
.adv-content {
  flex: 1 1 400px;
  min-width: 0;
}

.adv-visual {
  background: var(--black);
  border-radius: 12px;
  padding: 40px 36px;
  color: var(--white);
}

.adv-table {
  width: 100%;
  border-collapse: collapse;
}

.adv-table caption {
  caption-side: top;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.adv-table th,
.adv-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.adv-table tr:last-child th,
.adv-table tr:last-child td {
  border-bottom: none;
}

.adv-table th {
  color: var(--text-muted-dark);
  font-weight: 400;
  padding-right: 16px;
}

.adv-table td {
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.adv-table td.yes {
  color: var(--green);
}

.adv-table td.no {
  color: var(--red);
}

.adv-table .cell-val {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.check-icon {
  width: 16px;
  height: 16px;
}

.adv-content h2 {
  margin-bottom: 20px;
}

.adv-content .section-lead {
  margin-bottom: 32px;
}

.adv-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.adv-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.bullet-check {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bullet-check svg {
  width: 10px;
  height: 10px;
}

/* ── TRUST / POWERED BY ── */
.trust {
  background: var(--gray-100);
}

.trust-header {
  margin-bottom: 56px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.trust-item {
  flex: 1 1 250px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.trust-item .ti-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 6px;
}

.trust-item .ti-sub {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.4;
}

.powered-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

.powered-logo {
  display: flex;
  align-items: center;
  gap: 0 5px;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

/* ── CONTACT ── */
.contact {
  background: var(--black);
  padding: var(--section-pad);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact .section-lead {
  color: var(--text-on-dark);
  margin: 0 auto 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row-50 {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem
}
.form-row-50 .form-row-wrap {
width: calc(50% - 0.5rem);
}
.form-row {
  width: 100%;
}


label {
  display: block;
  font-size: 12px;
  margin-top: .6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.form-checkbox-label {
  text-transform: none;
  position: relative;
  padding-left: 2rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: .4rem;
  width: 18px;
  height: 18px;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.15s;
  outline: none;
  margin: .2rem 0;
}
select {
  margin: 0 0 .4rem;
}
textarea {
  margin-top: .2rem;
}
input::placeholder,
textarea::placeholder {
  color: var(--placeholder-dark);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--yellow);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--red);
}

.form-error {
  display: none;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(224, 90, 90, 0.15);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: #ffc8c8;
  font-size: 14px;
}

.form-error.visible {
  display: block;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #ffc8c8;
}

.field-error.visible {
  display: block;
}

select option {
  background: var(--black);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row-submit {
  margin-top: 8px;
}

.form-row-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.form-button_submit {
  display: block;
  padding: 13px 20px;
  border: none;width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 28px;
  height: 28px;
}

.success-msg h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.success-msg p {
  color: var(--text-muted-dark);
  font-size: 15px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
}

.footer-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo span em {
  color: var(--text-muted-dark);
  font-style: normal;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 13px;
}

.footer-links a {
  color: var(--text-muted-dark);
  transition: color 0.15s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-page {
  padding: 120px 24px 96px;
  background: var(--white);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--black);
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 16px 1.25rem;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--gray-700);
}

.legal-meta {
  margin: 30px 0 0;
  padding: 24px 24px 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-style: normal;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.legal-meta p {
  margin: 0 0 12px;
}

.legal-meta strong {
  color: var(--black);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--black);
}

.legal-table td {
  color: var(--gray-700);
}

.legal-stand {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-backdrop {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
    font-size: 13px;
  }

  .btn-nav {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 72px 24px;
  }

  #nav {
    padding: 0 16px;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
  }

  .nav-center,
  .nav-actions {
    display: none;
  }

  .nav-mobile-tools {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }
  .how-header {
    margin-bottom: 32px;
  }

  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .steps::before {
    display: none;
  }

  .step {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .step-num {}

  .step-content {
    width: calc(100% - 72px);
    padding-left: 1.5rem;
  }

  .usp-card {
    flex: 1 1 100%;
  }

  .adv-grid {
    flex-direction: column;
    gap: 40px;
  }

  .adv-visual {
    order: -1;
  }

  .trust-item {
    flex: 1 1 100%;
  }

  .form-row>div {
    flex: 1 1 100%;
  }

  .powered-bar {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .stats-inner {
    flex-direction: column;
    gap: 0;
  }

  .stat-item {
    flex: 1 1 100%;
    padding: 28px 24px;
  }

  .stat-label br {
    display: none;
  }

  .hero {
    padding: 120px 24px 72px;
  }

  .form-row-50 .form-row-wrap {
    width: 100%;
  }
  .form-row-50 {
    gap: 0;
  }
}