/* =====================================================
   Онлайн-официант — landing styles (BEM)
   Design tokens
   ===================================================== */

:root {
  /* Neutral, almost-white base with a light grey tint */
  --bg: #FDF7E7;
  --bg-alt: #F6ECCF;
  --bg-dark: #14161C;
  --ink: #1B1C20;
  --ink-soft: #63666C;
  --ink-faint: #94969E;
  --line: #E3E3E7;
  --line-strong: #D2D3D8;

  /* Pastel accent trio: sage, khaki, lime (client-provided hex) */
  --blue: #ACB78E;
  --blue-hover: #676E55;

  --green: #BAB86C;
  --green-hover: #706E41;

  --lilac: #C9DC87;
  --lilac-hover: #646E44;

  /* Legacy aliases kept so components read intent, not raw color */
  --graphite: var(--blue);
  --graphite-hover: var(--blue-hover);
  --on-graphite: var(--ink);

  --ph-1: #DFDFE3;
  --ph-2: #C8C9CF;
  --logo-dark: #444444;
  --logo-light: #D0D0D0;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --container: 1160px;
  --font-display: "Unbounded", "Arial", sans-serif;
  --font-body: "Inter", "Arial", sans-serif;
}

mark, .hl {
  background: var(--lilac);
  color: var(--ink);
  padding: 0 7px;
  border-radius: 5px;
  font-weight: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { margin: 0; }

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

/* Layout utility (outside BEM — shared by every block) */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Focus visibility (global, tag-based) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--graphite-hover);
  outline-offset: 3px;
}

/* =====================================================
   Block: eyebrow
   ===================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow__icon {
  width: 14px;
  height: 14px;
  flex: none;
}

/* =====================================================
   Block: btn
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--graphite);
  color: var(--ink);
}
.btn--primary:hover { background: var(--graphite-hover); color: #FFFFFF; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--block { width: 100%; }

/* =====================================================
   Block: brand (logo + name, reused in header & footer)
   ===================================================== */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo { width: 34px; height: 20px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* =====================================================
   Block: header
   ===================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.header__nav a:hover { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 20px; }
.header__phone {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  display: none;
}

.header__toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__toggle-icon, .header__toggle-icon::before, .header__toggle-icon::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__toggle-icon::before { position: absolute; top: -6px; }
.header__toggle-icon::after { position: absolute; top: 6px; }

/* =====================================================
   Block: hero
   ===================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
}

.hero__mark {
  position: absolute;
  top: -140px;
  right: -160px;
  width: 360px;
  height: 360px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 52px;
  line-height: 1.06;
  max-width: 620px;
}

.hero__lede {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__note { font-size: 13.5px; color: var(--ink-faint); }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}
.hero__stat-label {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* =====================================================
   Block: phone (hero mockup)
   ===================================================== */

.phone {
  position: relative;
  margin-left: auto;
  width: 300px;
  height: 560px;
  background: var(--bg-dark);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(27,27,26,0.35);
}
.phone__screen {
  height: 100%;
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__status {
  padding: 16px 20px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 600;
}
.phone__qr {
  margin: 0 18px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}
.phone__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--logo-dark); flex: none; }

.phone__item {
  margin: 0 18px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.phone__thumb {
  width: 52px; height: 52px;
  border-radius: var(--radius-s);
  background: var(--ph-1);
  flex: none;
}
.phone__lines { flex: 1; }
.phone__line { height: 9px; border-radius: 5px; background: var(--ph-1); margin-bottom: 7px; }
.phone__line--wide { width: 70%; }
.phone__line--narrow { width: 40%; background: var(--ph-2); }
.phone__price { font-size: 13px; font-weight: 700; color: var(--ink); flex: none; }

.phone__cart {
  margin-top: auto;
  margin: auto 14px 14px;
  background: var(--graphite);
  color: var(--on-graphite);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

/* =====================================================
   Block: section (page-rhythm utility block)
   ===================================================== */

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--bg); }

/* =====================================================
   Block: section-head
   ===================================================== */

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-head__title {
  font-size: 36px;
  line-height: 1.15;
}
.section-head__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.section--dark .section-head__sub { color: rgba(251,246,236,0.62); }

/* =====================================================
   Block: audience (Для бизнеса / Для гостя)
   ===================================================== */

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
}
.audience__tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.audience__title {
  font-size: 22px;
  margin-bottom: 12px;
}
.audience__text { color: var(--ink-soft); }

/* Block: statement (standalone closing line under "about") */
.statement {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 780px;
}

/* =====================================================
   Block: segments (Кому подходит)
   ===================================================== */

.segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.segments__card {
  background: var(--bg);
  padding: 30px 26px;
  transition: background 0.15s ease;
}
.segments__card:hover { background: var(--bg-alt); }
.segments__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.segments__icon svg { width: 20px; height: 20px; }
.segments__card:nth-child(3n+2) .segments__icon { background: var(--green); }
.segments__card:nth-child(3n) .segments__icon { background: var(--lilac); }
.segments__title { font-size: 16px; margin-bottom: 8px; }
.segments__text { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* =====================================================
   Block: benefits (Почему нужен)
   ===================================================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefits__card {
  padding: 30px 0 0;
  border-top: 2px solid var(--blue-hover);
}
.benefits__card:nth-child(3n+2) { border-top-color: var(--green-hover); }
.benefits__card:nth-child(3n) { border-top-color: var(--lilac-hover); }
.benefits__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 22px;
  display: block;
}
.benefits__title { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.benefits__text { font-size: 14.5px; color: var(--ink-soft); }

/* =====================================================
   Block: advantages (icon rows)
   ===================================================== */

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.advantages__card {
  background: var(--bg-alt);
  border-radius: var(--radius-m);
  padding: 32px;
}
.advantages__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.advantages__icon svg { width: 22px; height: 22px; stroke: var(--ink); }
.advantages__card:nth-child(3n+2) .advantages__icon { background: var(--green); }
.advantages__card:nth-child(3n) .advantages__icon { background: var(--lilac); }
.advantages__title { font-size: 18px; margin-bottom: 10px; }
.advantages__text { color: var(--ink-soft); font-size: 15px; }

/* =====================================================
   Block: feature (Ресторан в телефоне, dark split section)
   ===================================================== */

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.feature__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
}
.feature__title { font-size: 34px; margin-bottom: 18px; }
.feature__lede { color: rgba(251,246,236,0.7); font-size: 17px; margin-bottom: 36px; max-width: 460px; }

.feature__flow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.feature__step {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
.feature__arrow { color: rgba(251,246,236,0.4); font-size: 17px; }

/* =====================================================
   Utility: placeholder blocks (mixed onto other blocks' elements)
   ===================================================== */

.placeholder {
  background: linear-gradient(135deg, var(--ph-1), var(--ph-2));
  border-radius: var(--radius-m);
  position: relative;
  overflow: hidden;
}
.placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
  background-size: 22px 22px;
  opacity: 0.4;
}

/* =====================================================
   Block: values (Экономия времени)
   ===================================================== */

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}
.values__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.values__check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.values__check svg { width: 13px; height: 13px; stroke: var(--ink); }
.values__text { font-size: 16px; padding-top: 3px; }

/* =====================================================
   Block: detail (Актуальность / лояльность)
   ===================================================== */

.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail__list { display: flex; flex-direction: column; gap: 28px; }
.detail__title { font-size: 18px; margin-bottom: 8px; }
.detail__text { color: var(--ink-soft); font-size: 15px; }
.detail__visual { aspect-ratio: 1/1; border-radius: var(--radius-l); }

/* =====================================================
   Block: process (Как это работает) — real sequence, numbers justified
   ===================================================== */

.process {
  display: flex;
  flex-direction: column;
}
.process__step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.process__step:last-child { border-bottom: 1px solid var(--line); }
.process__num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--blue-hover);
  padding-top: 4px;
}
.process__step:nth-child(3n+2) .process__num { color: var(--green-hover); }
.process__step:nth-child(3n) .process__num { color: var(--lilac-hover); }
.process__title { font-size: 20px; margin-bottom: 10px; }
.process__text { color: var(--ink-soft); font-size: 15.5px; max-width: 560px; }

/* =====================================================
   Block: pricing
   ===================================================== */

.pricing {
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: var(--radius-l);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.pricing__heading { color: var(--bg); font-size: 26px; margin-bottom: 14px; }
.pricing__text { color: rgba(251,246,236,0.62); font-size: 15.5px; max-width: 420px; }
.pricing__list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing__list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(251,246,236,0.85); }
.pricing__list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }

.pricing__amount { text-align: right; }
.pricing__price {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--bg);
  line-height: 1;
}
.pricing__period { font-size: 15px; color: rgba(251,246,236,0.55); margin-top: 8px; }
.pricing__amount .btn { margin-top: 26px; }

/* =====================================================
   Block: lead (form section wrapper)
   ===================================================== */

.lead__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.lead__title { font-size: 34px; margin-bottom: 18px; }
.lead__text { color: var(--ink-soft); font-size: 16.5px; max-width: 420px; }
.lead__contacts { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.lead__contacts a { font-weight: 600; font-size: 16px; }
.lead__contact-value { font-weight: 600; font-size: 16px; }
.lead__contact-label { font-size: 13px; color: var(--ink-faint); display: block; margin-bottom: 2px; }

/* =====================================================
   Block: form
   ===================================================== */

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 40px;
}
.form__row { margin-bottom: 18px; }
.form__row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form__row input, .form__row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form__row input:focus, .form__row textarea:focus {
  border-color: var(--blue-hover);
  outline: none;
}
.form__row textarea { resize: vertical; min-height: 100px; }
.form__note { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); line-height: 1.5; }
.form__status { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; }
.form__status--ok { color: var(--green-hover); display: block; }
.form__status--err { color: #a13a2f; display: block; }

/* =====================================================
   Block: footer
   ===================================================== */

.footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,246,236,0.14);
}
.footer__brand .brand__name { color: var(--bg); }
.footer__brand .brand__logo path:first-child { fill: #9a9a9a; }
.footer__brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(251,246,236,0.55);
  max-width: 260px;
  line-height: 1.6;
}
.footer__col h5 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(251,246,236,0.45);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col p {
  font-size: 14.5px;
  color: rgba(251,246,236,0.82);
}
.footer__col a:hover { color: var(--bg); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(251,246,236,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(251,246,236,0.55); }
.footer__bottom a:hover { color: var(--bg); }

/* =====================================================
   Block: page-hero (Contacts / Privacy intro banner)
   ===================================================== */

.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-hero__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  display: block;
}
.page-hero__title { font-size: 40px; }
.page-hero__sub { margin-top: 14px; color: var(--ink-soft); font-size: 17px; max-width: 560px; }

/* =====================================================
   Block: contacts (Contacts page cards)
   ===================================================== */

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px 0;
}
.contacts__card {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.contacts__card:first-child { border-top: none; padding-top: 0; }
.contacts__label { font-size: 13px; color: var(--ink-faint); margin-bottom: 8px; display: block; }
.contacts__value { font-size: 20px; font-weight: 600; }
.contacts__value--small { font-size: 16px; font-weight: 500; color: var(--ink-soft); }

/* =====================================================
   Block: legal (Privacy policy content)
   ===================================================== */

.legal { padding: 64px 0 96px; max-width: 760px; }
.legal h2 { font-size: 22px; margin: 44px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15.5px; }
.legal ul { margin: 14px 0; padding-left: 0; }
.legal li {
  color: var(--ink-soft);
  font-size: 15.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.legal li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-faint);
}
.legal__note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-m);
  font-size: 14px;
  color: var(--ink-soft);
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 1080px) {
  .segments { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 44px; }
}

@media (max-width: 860px) {
  .header__nav { display: none; }
  .header__toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .phone { margin: 0 auto; }
  .audience { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature__visual { order: -1; aspect-ratio: 16/10; }
  .detail { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; text-align: left; padding: 36px; }
  .pricing__amount { text-align: left; }
  .lead__wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contacts { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .segments { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .section-head__title { font-size: 28px; }
  .pricing__price { font-size: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form { padding: 26px; }
}
