/* ===== Tokens ===== */
:root {
  --bg: #0b1020;
  --bg-alt: #0f1730;
  --surface: #131c38;
  --surface-2: #182347;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef2ff;
  --muted: #9aa6c7;
  --muted-2: #6f7ba0;
  --brand: #6d8bff;
  --brand-2: #9d7bff;
  --accent: #34e0c0;
  --good: #34e0a8;
  --bad: #ff7b8a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  --grad: linear-gradient(135deg, var(--brand), var(--brand-2));
  --maxw: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60vw 60vw at 80% -10%, rgba(109, 139, 255, 0.18), transparent 60%),
    radial-gradient(50vw 50vw at -10% 20%, rgba(157, 123, 255, 0.14), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, .brand__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(109, 139, 255, 0.8);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(109, 139, 255, 0.9); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand); background: rgba(109, 139, 255, 0.1); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.6);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.is-scrolled {
  background: rgba(11, 16, 32, 0.88);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; color: #fff;
  box-shadow: 0 6px 18px -6px rgba(109, 139, 255, 0.8);
}
.brand__name { font-size: 1.25rem; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.95rem; color: var(--muted); font-weight: 500;
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--grad); border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { padding: 80px 0 100px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 800; }
.hero .lead { font-size: 1.12rem; color: var(--muted); margin: 22px 0 30px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__points {
  list-style: none; display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 26px; color: var(--muted); font-size: 0.92rem; font-weight: 500;
}
.hero__points li { color: var(--accent); }

/* Browser mockup */
.hero__preview { position: relative; }
.browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transition: transform .5s var(--ease);
}
.hero__preview:hover .browser { transform: perspective(1200px) rotateY(0) rotateX(0); }
.browser__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 14px; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.browser__url {
  margin-left: 12px; flex: 1; font-size: 0.78rem; color: var(--muted-2);
  background: rgba(0, 0, 0, 0.25); padding: 5px 12px; border-radius: 8px;
}
.browser__screen { padding: 18px; display: grid; gap: 14px; }
.mock__hero {
  display: flex; align-items: center; gap: 12px;
  background: var(--grad); border-radius: var(--radius-sm); padding: 16px;
}
.mock__logo {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.22);
  display: grid; place-items: center; font-weight: 800; color: #fff;
}
.mock__lines { flex: 1; display: grid; gap: 7px; }
.mock__title { height: 9px; width: 70%; background: rgba(255, 255, 255, 0.85); border-radius: 5px; }
.mock__sub { height: 7px; width: 45%; background: rgba(255, 255, 255, 0.5); border-radius: 5px; }
.mock__btn { background: rgba(255, 255, 255, 0.95); color: #1a2348; font-size: 0.72rem; font-weight: 700; padding: 7px 13px; border-radius: 999px; }
.mock__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock__card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px; display: grid; gap: 3px; text-align: center;
}
.mock__ico { font-size: 1.1rem; }
.mock__card strong { font-size: 0.78rem; }
.mock__card small { font-size: 0.66rem; color: var(--muted-2); }
.mock__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mock__gallery span {
  aspect-ratio: 1; border-radius: 9px;
  background: linear-gradient(135deg, var(--surface-2), rgba(157, 123, 255, 0.25));
  border: 1px solid var(--border);
}
.mock__cta {
  text-align: center; background: var(--accent); color: #06231d;
  font-weight: 700; padding: 12px; border-radius: var(--radius-sm); font-size: 0.85rem;
}
.floaty {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  animation: float 4s ease-in-out infinite;
}
.floaty--1 { top: -16px; left: -22px; }
.floaty--2 { bottom: 30px; right: -26px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
.section__sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* Card base */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ===== Problem / Solution ===== */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prob-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.prob-card--bad { background: linear-gradient(180deg, rgba(255, 123, 138, 0.07), transparent); border-color: rgba(255, 123, 138, 0.25); }
.prob-card--good { background: linear-gradient(180deg, rgba(52, 224, 168, 0.08), transparent); border-color: rgba(52, 224, 168, 0.28); }
.prob-card h3 { font-size: 1.25rem; margin-bottom: 18px; }
.cross-list, .check-list { list-style: none; display: grid; gap: 11px; }
.cross-list li, .check-list li { padding-left: 30px; position: relative; color: var(--muted); }
.cross-list li::before { content: "✕"; position: absolute; left: 0; color: var(--bad); font-weight: 700; }
.check-list li { color: var(--text); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.prob-card__note { margin-top: 20px; font-weight: 600; color: var(--bad); }
.prob-card__note--good { color: var(--good); }

/* ===== Services ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service { padding: 28px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.service::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad); opacity: 0; transition: opacity .3s; z-index: 0;
}
.service:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.service__num { position: absolute; top: 18px; right: 22px; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.1rem; color: var(--muted-2); }
.service__ico {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: rgba(109, 139, 255, 0.14);
  font-size: 1.5rem; margin-bottom: 18px;
}
.service h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 0.93rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  position: relative; padding: 34px 30px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--popular {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(109, 139, 255, 0.12), var(--surface));
  box-shadow: 0 30px 60px -25px rgba(109, 139, 255, 0.6);
  transform: scale(1.03);
}
.price-card--popular:hover { transform: scale(1.03) translateY(-6px); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card__name { font-size: 1.2rem; }
.price-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.price-card__price .was {
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 1.35rem;
  color: var(--muted-2); text-decoration: line-through;
  text-decoration-color: var(--bad); text-decoration-thickness: 3px;
}
.price-card__price .amt { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 2.6rem; }
.price-card__price .per { color: var(--muted); font-size: 0.92rem; }
.price-card__limited {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  color: #ffd9a8; background: rgba(255, 138, 91, 0.16);
  border: 1px solid rgba(255, 138, 91, 0.4);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.price-card__tag { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.price-card .check-list { margin-bottom: 26px; }
.price-card .check-list li { font-size: 0.92rem; }
.price-card .btn { margin-top: auto; }

/* Comparison table */
.compare { margin-top: 56px; }
.compare__title { text-align: center; font-size: 1.3rem; margin-bottom: 24px; }
.compare__scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare__table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--surface); }
.compare__table th, .compare__table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.compare__table th { font-family: 'Plus Jakarta Sans'; font-size: 0.95rem; background: var(--surface-2); }
.compare__table th:first-child, .compare__table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare__table tbody td { color: var(--muted); font-size: 0.92rem; }
.compare__table .y { color: var(--good); font-weight: 700; font-size: 1.05rem; }
.compare__table .n { color: var(--muted-2); }
.compare__table .is-pop { background: rgba(109, 139, 255, 0.08); }
.compare__table th.is-pop { background: rgba(109, 139, 255, 0.18); color: var(--text); }

/* ===== Examples ===== */
.examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.example { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s; }
.example:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.example__shot { position: relative; aspect-ratio: 4/3; padding: 18px; display: flex; align-items: flex-end; }
.example__shot--food { background: linear-gradient(135deg, #ff8a5b, #ff5b8a); }
.example__shot--salon { background: linear-gradient(135deg, #9d7bff, #6d8bff); }
.example__shot--contractor { background: linear-gradient(135deg, #34e0c0, #2e9bff); }
.example__shot--tutor { background: linear-gradient(135deg, #ffd16b, #ff9b50); }
.example__chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.74rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.example__mini { width: 100%; background: rgba(255, 255, 255, 0.95); border-radius: 10px; padding: 12px; display: grid; gap: 7px; box-shadow: 0 12px 30px -12px rgba(0,0,0,.5); }
.example__mini .bar { height: 7px; border-radius: 4px; background: #c9d2ec; }
.example__mini .bar--lg { height: 11px; width: 60%; background: #1a2348; }
.example__mini .bar--sm { width: 40%; }
.example__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 3px; }
.example__tiles i { aspect-ratio: 1; border-radius: 6px; background: linear-gradient(135deg, #e2e8fb, #b9c4ec); }
.example__body { padding: 20px 22px 24px; }
.example__body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.example__body p { color: var(--muted); font-size: 0.9rem; }
.example__link { display: inline-block; margin-top: 12px; color: var(--brand); font-weight: 600; font-size: 0.9rem; transition: transform .25s var(--ease); }
.example:hover .example__link { transform: translateX(4px); }

/* ===== Process ===== */
.process__layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.steps { list-style: none; display: grid; gap: 16px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateX(6px); border-color: var(--border-strong); }
.step__num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.2rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.needbox { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.needbox h3 { font-size: 1.2rem; }
.needbox__sub { color: var(--muted); font-size: 0.92rem; margin: 8px 0 20px; }
.needbox .check-list { margin-bottom: 24px; }
.needbox .check-list li { font-size: 0.93rem; }

/* ===== Who ===== */
.who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.who {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px 18px; text-align: center;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.who:hover { transform: translateY(-6px); border-color: var(--brand); background: var(--surface-2); }
.who span { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.who h3 { font-size: 1rem; margin-bottom: 4px; }
.who p { color: var(--muted); font-size: 0.84rem; }

/* ===== Trust ===== */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 18px 26px;
  font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 1.02rem;
  transition: transform .3s var(--ease), border-color .3s;
}
.badge:hover { transform: translateY(-4px); border-color: var(--brand); }
.badge span { font-size: 1.4rem; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px 24px;
  transition: border-color .3s;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--brand); font-weight: 400;
  transition: transform .3s var(--ease); flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 22px; max-width: 90%; }

/* ===== Contact ===== */
.contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.contact__form { padding: 32px; display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px; color: var(--text);
  font-family: inherit; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(109, 139, 255, 0.18);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form__status { font-size: 0.92rem; min-height: 1.2em; text-align: center; }
.form__status.is-ok { color: var(--good); }
.form__status.is-err { color: var(--bad); }
.contact__side { display: grid; gap: 20px; }
.contact__quick { padding: 28px; }
.contact__quick h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact__quick p { color: var(--muted); font-size: 0.93rem; margin-bottom: 20px; }
.contact__btns { display: grid; gap: 12px; }
.contact__assure { padding: 24px 28px; display: grid; gap: 10px; }
.contact__assure p { color: var(--good); font-weight: 500; font-size: 0.95rem; }

/* ===== Footer ===== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 280px; }
.footer__area { font-size: 0.88rem; }
.footer h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text); }
.footer__links, .footer__contact { display: grid; gap: 10px; align-content: start; }
.footer__links a, .footer__contact a { color: var(--muted); font-size: 0.92rem; transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--text); }
.footer__social { display: flex; gap: 10px; margin-top: 8px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 700; transition: .25s;
}
.footer__social a:hover { background: var(--surface-2); border-color: var(--brand); transform: translateY(-3px); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-top: 1px solid var(--border); gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { color: var(--muted-2); font-size: 0.88rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards-grid, .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(11, 16, 32, 0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    transform: translateY(-120%); transition: transform .35s var(--ease);
    pointer-events: none;
  }
  .nav__links.is-open { transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 50px 0 70px; }
  .browser { transform: none; }
  .hero__preview:hover .browser { transform: none; }

  .problem__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-6px); }
  .process__layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards-grid, .examples-grid, .who-grid, .trust-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .floaty--1 { left: 0; } .floaty--2 { right: 0; }
  .hero__points { gap: 14px; }
}
