:root {
  --ink: #101010;
  --ink-soft: #55565a;
  --ink-mute: #8a8b90;
  --paper: #ffffff;
  --paper-soft: #f4f4f5;
  --paper-line: #e4e4e6;
  --accent: #f6871f;
  --accent-deep: #e0700c;
  --dark: #131313;
  --grey-band: #c9c9c9;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shell: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }

p { margin: 0 0 14px; }

ul { margin: 0; padding: 0; list-style: none; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--dark); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.section-title { font-size: clamp(26px, 4.2vw, 40px); max-width: 15ch; }
.section-title--center { margin: 0 auto; text-align: center; max-width: 22ch; }

.eyebrow { color: var(--accent); font-size: 13px; font-weight: 500; margin-bottom: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none;
  font: inherit; font-weight: 500; font-size: 13px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--accent); color: #fff;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.35), transparent 60%);
  opacity: 0; transform: scale(.4); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(246,135,31,.28); }
.btn:hover::after { opacity: 1; transform: scale(1); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { box-shadow: 0 12px 24px rgba(0,0,0,.22); }
.btn--outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn--outline:hover { box-shadow: 0 12px 24px rgba(246,135,31,.18); }
.btn--block { display: flex; width: 100%; }

.round-btn {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--paper-line);
  background: var(--paper); color: var(--ink);
  font: inherit; font-size: 14px; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.round-btn:hover { transform: translateY(-2px); }
.round-btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.round-btn--ghost { background: rgba(255,255,255,.85); border-color: rgba(0,0,0,.08); }
.round-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { padding: 8px 0; box-shadow: 0 8px 26px rgba(0,0,0,.07); background: rgba(255,255,255,.95); }

.header__inner { display: flex; align-items: center; gap: 16px; }

.header__home {
  text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 9px 22px; border-radius: 999px; background: var(--paper-soft);
  transition: background .25s var(--ease);
}
.header__home:hover { background: var(--paper-line); }

.header__nav { display: flex; gap: 26px; margin-left: auto; margin-right: auto; }
.header__nav a {
  position: relative; text-decoration: none; font-size: 13px; color: var(--ink-soft);
  padding: 4px 0;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.header__nav a:hover { color: var(--ink); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.header__phone {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--paper-line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.header__phone:hover { transform: translateY(-2px); border-color: var(--accent); }
.header__phone svg { width: 15px; height: 15px; fill: currentColor; }

.burger {
  display: none; width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--paper-soft); cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.burger span {
  display: block; width: 16px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.hero { position: relative; padding: 46px 0 70px; overflow: hidden; }
.hero__blob {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  filter: blur(90px); opacity: .5; pointer-events: none; will-change: transform;
}
.hero__blob--a { top: -140px; left: -120px; background: rgba(246,135,31,.32); }
.hero__blob--b { top: 60px; right: -160px; background: rgba(120,140,255,.18); }

.hero__title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(30px, 7.2vw, 66px);
  font-weight: 600;
  letter-spacing: -0.035em;
  background: linear-gradient(100deg, #101010 35%, #4a4a4a 70%, #101010);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__cta { text-align: center; margin: 22px 0 34px; }

.hero__tags {
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 26px;
}

.hero__cards { display: grid; gap: 18px; grid-template-columns: 1fr; }

.shot {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  background: var(--paper-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
.shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover img { transform: scale(1.04); }
.shot__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; background: var(--paper-soft);
}
.shot__bar h2 { font-size: 15px; font-weight: 500; max-width: 18ch; }
.shot__arrow { color: var(--ink-soft); transition: transform .3s var(--ease); }
.shot:hover .shot__arrow { transform: translate(3px, -3px); }

.shot--tall img { aspect-ratio: 4 / 3; }
.shot__overlay {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: #fff;
}
.shot__overlay h3 { font-size: 17px; font-weight: 500; }

.elevate { padding: 60px 0; }
.elevate__grid { display: grid; gap: 30px; }
.elevate__lead { color: var(--ink-soft); max-width: 34ch; font-size: 13px; }
.elevate__cta { margin: 18px 0; }

.elevate__video { position: relative; margin: 22px 0 0; border-radius: var(--radius-m); overflow: hidden; }
.elevate__video img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.play::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7); animation: pulse 2.6s infinite;
}
.play svg { width: 22px; height: 22px; fill: var(--ink); }
.play:hover { transform: scale(1.08); }
@keyframes pulse { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }

.elevate__shot { position: relative; margin: 0; border-radius: var(--radius-m); overflow: hidden; }
.elevate__shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.elevate__dot {
  position: absolute; top: 18px; left: 18px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.25);
}
.elevate__dot::after {
  content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--ink);
}
.elevate__row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; margin-top: 14px; }

.rating-card {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-m);
  padding: 26px 20px; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 130px; box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.rating-card__stars { color: var(--accent); letter-spacing: 3px; font-size: 13px; }
.rating-card__label { font-size: 12px; color: var(--ink-soft); margin: 8px 0 0; }

.stats { margin: 0; display: grid; gap: 14px; align-content: center; }
.stats__item dd { margin: 0; font-size: 11px; color: var(--ink-mute); line-height: 1.4; }
.stats__value { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; }

.results { padding: 40px 0 60px; }
.results__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.results__nav { display: flex; gap: 8px; }
.results__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: thin;
}
.results__track > * { scroll-snap-align: start; }

.result-card {
  border: 1px solid var(--paper-line); border-radius: var(--radius-m); padding: 18px;
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.08); }
.result-card__meter { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); }
.result-card__meter strong { font-weight: 500; }
.bar { height: 7px; border-radius: 999px; background: var(--paper-soft); margin: 8px 0 18px; overflow: hidden; }
.bar i {
  display: block; height: 100%; width: var(--fill); border-radius: 999px;
  background: linear-gradient(90deg, #e2340f, var(--accent), #ffd15c);
  transform-origin: left; transform: scaleX(0); transition: transform .9s var(--ease);
}
.reveal.is-in .bar i { transform: scaleX(1); }
.result-card__title { font-size: 17px; margin-bottom: 8px; }
.result-card p { font-size: 13px; color: var(--ink-soft); }
.result-card__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.result-card__shots img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-s);
  transition: transform .5s var(--ease);
}
.result-card__shots img:hover { transform: scale(1.04); }

.platform { padding: 40px 0 60px; }
.platform__head { display: grid; gap: 14px; margin-bottom: 22px; }
.platform__head p { color: var(--ink-soft); font-size: 13px; max-width: 44ch; }

.platform__panel {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  min-height: 420px; padding: 20px; display: grid; align-content: start; gap: 18px;
}
.platform__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transform: scale(1.02);
}
.platform__panel::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,0,0,.45), rgba(0,0,0,.15) 45%, rgba(0,0,0,.55));
}
.platform__ui, .platform__card, .platform__arrows { position: relative; z-index: 2; }

.platform__ui { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.platform__search {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,.92); border-radius: 999px; padding: 7px 7px 7px 18px;
  font-size: 12px; color: var(--ink-soft); flex: 1 1 260px;
}
.platform__go {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  transition: transform .25s var(--ease);
}
.platform__go:hover { transform: rotate(90deg); }
.platform__link { color: #fff; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }

.platform__card {
  background: var(--paper); border-radius: var(--radius-m); padding: 20px; max-width: 320px;
  box-shadow: 0 20px 44px rgba(0,0,0,.2);
}
.platform__tag { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); }
.platform__dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); }
.platform__pill {
  display: inline-block; background: var(--accent); color: #fff; font-size: 11px;
  border-radius: 999px; padding: 2px 12px; margin-bottom: 6px;
}
.platform__card h3 { font-size: 20px; margin-bottom: 16px; }
.platform__arrows { display: flex; gap: 8px; justify-content: flex-end; }

.brands { padding: 40px 0 60px; }
.brands__grid { display: grid; gap: 18px; margin-top: 26px; }
.brand-card {
  position: relative; display: grid; gap: 0; border-radius: var(--radius-m); overflow: hidden;
  background: var(--paper-soft);
}
.brand-card__light { padding: 20px; display: grid; gap: 12px; align-content: start; }
.brand-card__light h3 { font-size: 18px; }
.brand-card__light img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-s); }
.brand-card__light p { font-size: 12px; color: var(--ink-soft); margin: 0; }
.brand-card__dark {
  position: relative; background: var(--dark); color: #fff; padding: 20px;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.brand-card.is-collapsed .brand-card__dark { opacity: .25; transform: translateY(6px); }
.brand-card__close {
  position: absolute; top: 12px; right: 12px; width: 22px; height: 22px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  cursor: pointer; font-size: 13px; line-height: 1;
}
.brand-card__name { font-weight: 500; margin-bottom: 4px; }
.brand-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 12px; }
.brand-card__dark p:last-child { font-size: 12px; color: rgba(255,255,255,.72); margin: 10px 0 0; }

.what { padding: 40px 0 60px; }
.what__grid { display: grid; gap: 16px; margin-top: 30px; }
.what-card {
  background: var(--paper-soft); border-radius: var(--radius-m); padding: 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.what-card:hover { transform: translateY(-5px); background: var(--paper); box-shadow: 0 18px 38px rgba(0,0,0,.08); }
.what-card__icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.what-card__icon svg { width: 18px; height: 18px; fill: var(--accent); }
.what-card h3 { font-size: 15px; margin-bottom: 8px; }
.what-card p { font-size: 12px; color: var(--ink-soft); margin: 0; }

.pricing { padding: 50px 0 60px; }
.pricing__note, .pricing__fine {
  max-width: 62ch; margin: 16px auto 0; text-align: center;
  font-size: 12px; color: var(--ink-soft);
}
.pricing__fine { margin-top: 28px; }
.pricing__grid { display: grid; gap: 16px; margin-top: 32px; }

.price-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--paper-line); border-radius: var(--radius-m); background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.price-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s var(--ease); }
.price-card:hover img { transform: scale(1.05); }
.price-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-card__body h3 { font-size: 15px; }
.price-card__body p { font-size: 12px; color: var(--ink-soft); margin: 0; }
.price { font-size: 19px; font-weight: 600; color: var(--ink); margin-top: auto; }
.price-card .btn { margin-top: 6px; }

.accelerate { padding: 40px 0 70px; }
.accelerate__cta { text-align: center; margin: 20px 0 30px; }
.accelerate__grid { display: grid; gap: 18px; }

.ai { background: var(--grey-band); padding: 54px 0; }
.ai__grid { display: grid; gap: 18px; align-items: start; }
.ai__intro .section-title { max-width: 12ch; }
.ai__intro p { font-size: 13px; color: #3c3c3c; max-width: 34ch; margin-top: 16px; }
.ai__card {
  background: var(--paper-soft); border-radius: var(--radius-m); padding: 20px;
  display: grid; gap: 14px; align-content: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ai__card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,.14); }
.ai__card h3 { font-size: 19px; max-width: 14ch; }
.ai__card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-s); }
.ai__card--ghost { background: var(--paper); }
.ai__card--ghost p { font-size: 12px; color: var(--ink-soft); margin: 0; }

.contact { background: var(--grey-band); padding: 0 0 60px; }
.contact__card {
  background: var(--paper); border-radius: var(--radius-l); padding: 34px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.contact__card .section-title { font-size: clamp(20px, 3.4vw, 28px); max-width: 30ch; font-weight: 500; }
.contact__lead { text-align: center; font-size: 13px; color: var(--ink-soft); max-width: 52ch; margin: 14px auto 28px; }

.form { display: grid; gap: 16px; max-width: 720px; margin: 0 auto; }
.form__row { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; }
.field__hint { color: var(--ink-mute); font-weight: 400; }
.field input, .field textarea {
  font: inherit; font-size: 13px; color: var(--ink);
  border: 1px solid var(--paper-line); border-radius: var(--radius-s);
  padding: 11px 14px; background: var(--paper-soft);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus { background: var(--paper); border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.field .is-invalid { border-color: #cf2f18; background: #fdf3f1; }
.field__error { font-size: 11px; color: #cf2f18; margin: 0; min-height: 0; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 4px 10px; }
.field--check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.field--check label { font-size: 12px; font-weight: 400; color: var(--ink-soft); }
.field--check .field__error { grid-column: 1 / -1; }

.form__privacy { font-size: 11px; color: var(--ink-mute); text-align: center; margin: 0; }
.form__privacy a { color: var(--accent); }

.form__done { max-width: 620px; margin: 0 auto; text-align: center; }
.form__done-title { font-size: 18px; font-weight: 600; }
.form__done p { font-size: 13px; color: var(--ink-soft); }

.site-footer { background: #d8d8d8; padding: 44px 0 24px; }
.footer__cols { display: grid; gap: 26px; margin-bottom: 30px; }
.footer__col h2 { font-size: 13px; margin-bottom: 12px; }
.footer__col li { font-size: 12px; color: #4b4b4b; margin-bottom: 7px; }
.footer__col a { text-decoration: none; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--accent); }

.footer__bar {
  background: var(--paper); border-radius: 999px; padding: 14px 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer__bar p { margin: 0; font-size: 11px; color: var(--ink-soft); }
.footer__icons { display: flex; gap: 8px; }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: var(--dark); color: #fff; cursor: pointer; font-size: 16px;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.policy { padding: 40px 0 70px; }
.policy__head { max-width: 62ch; margin-bottom: 34px; }
.policy__head h1 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 14px; }
.policy__updated { font-size: 12px; color: var(--ink-mute); }
.policy__layout { display: grid; gap: 34px; align-items: start; }
.policy__toc {
  background: var(--paper-soft); border-radius: var(--radius-m); padding: 20px;
}
.policy__toc h2 { font-size: 13px; margin-bottom: 12px; }
.policy__toc li { margin-bottom: 8px; }
.policy__toc a { font-size: 12px; color: var(--ink-soft); text-decoration: none; }
.policy__toc a:hover { color: var(--accent); }
.policy__body h2 { font-size: 20px; margin: 34px 0 10px; scroll-margin-top: 90px; }
.policy__body h2:first-child { margin-top: 0; }
.policy__body p, .policy__body li { font-size: 13px; color: var(--ink-soft); }
.policy__body ul { list-style: disc; padding-left: 20px; margin: 0 0 14px; }
.policy__body li { margin-bottom: 6px; }
.policy__body a { color: var(--accent); }
.policy__body address { font-style: normal; font-size: 13px; color: var(--ink-soft); }

.read-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
}

@media (min-width: 700px) {
  body { font-size: 16px; }
  .hero__cards { grid-template-columns: 1fr 1fr; }
  .hero__tags { justify-content: space-between; }
  .hero__tags-right { margin-left: auto; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .brands__grid { grid-template-columns: 1fr 1fr; }
  .brand-card { grid-template-columns: 1fr 1fr; }
  .what__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .accelerate__grid { grid-template-columns: 1fr 1fr; }
  .platform__panel { padding: 26px; min-height: 480px; }
  .contact__card { padding: 44px 40px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .elevate__grid { grid-template-columns: 1fr 1.05fr; gap: 46px; }
  .pricing__grid { grid-template-columns: repeat(4, 1fr); }
  .results__track { grid-auto-columns: minmax(0, 1fr); overflow: visible; }
  .ai__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__cols { grid-template-columns: repeat(5, 1fr); }
  .policy__layout { grid-template-columns: 250px 1fr; gap: 50px; }
  .policy__toc { position: sticky; top: 92px; }
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .header__nav {
    position: absolute; top: calc(100% + 8px); left: 12px; right: 12px;
    flex-direction: column; gap: 6px; padding: 14px;
    background: var(--paper); border-radius: var(--radius-m);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .header__nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .header__nav a { font-size: 14px; padding: 8px 4px; }
  .header__cta { display: none; }
  .header__home { margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bar i { transform: scaleX(1); }
}
