/* ─── Fonts (self-hosted) ────────────────────────── */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/Manrope-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/Manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/Manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

/* ─── Variables ──────────────────────────────────── */
:root {
  --black:   #111110;
  --green:   #16A34A;
  --green-bg:#EDFAEF;
  --green-bd:#B8E4C0;
  --bg:      #FAFAF8;
  --bg-alt:  #F3F3F0;
  --bd:      #E8E8E3;
  --muted:   #6B6B67;
  --light:   #9B9B97;
  --lighter: #C8C8C4;
  --text-sm: #3D3D3A;
  --white:   #ffffff;
  --font:    'Manrope', sans-serif;
}

/* ─── Base ───────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes notifSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ─── Utility ────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── NAV ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd);
}

.nav__inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}
.nav__logo span { color: var(--green); }

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--black); }

.nav__btn {
  display: inline-block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  background: var(--black);
  padding: 9px 20px;
  border-radius: 9px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav__btn:hover { opacity: 0.85; }

/* второй CTA (шапка) — визуально менее нагруженный, чтобы не спорить за
   внимание с основной кнопкой онлайн-меню, но всё ещё явно кликабельный */
.nav__btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--bd);
}
.nav__btn--outline:hover { opacity: 1; border-color: var(--green); color: var(--green); }

/* маленький приподнятый ярлык версии рядом с текстом кнопки, как принято
   писать "beta"/"v2" у продуктов в разработке */
.nav__beta {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8a4b00;
  background: #fff0da;
  border: 1px solid #f2c98e;
  border-radius: 4px;
  padding: 1px 4px;
  margin-left: 4px;
  vertical-align: super;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: 30px 28px 30px;
  min-height: calc(75vh - 62px);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__content {
  flex: 1;
  min-width: 0;
  animation: fadeUp 0.5s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 30px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
.hero__badge-text {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

.hero__title {
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--black);
  margin-bottom: 22px;
  text-wrap: pretty;
}

.hero__desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 470px;
  text-wrap: pretty;
}

.hero__scenario {
  margin-bottom: 38px;
}
.hero__scenario .feature {
  padding: 16px 0;
}
.hero__scenario .feature--last {
  border-bottom: none;
  padding-bottom: 0;
}

/* Email form */
.hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
  max-width: 470px;
}

.hero__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font);
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hero__input:focus {
  border-color: var(--black);
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 17, 16, 0.07);
}
.hero__input::placeholder { color: var(--lighter); }

.hero__submit {
  padding: 14px 22px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.hero__submit:hover { opacity: 0.85; }
.hero__submit:disabled { opacity: 0.5; cursor: default; }

.hero__hint {
  font-size: 13px;
  color: var(--light);
  line-height: 1.5;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.hero__error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 8px;
  max-width: 470px;
  display: none;
}
.hero__error.is-visible { display: block; }

/* Success state */
.hero__success {
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: 12px;
  padding: 20px 24px;
  animation: fadeUp 0.35s ease;
  max-width: 470px;
  display: none;
}
.hero__success.is-visible { display: block; }
.hero__success-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.hero__success-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── PHONE MOCKUP ───────────────────────────────── */
.hero__phone-wrap {
  flex: 0 0 auto;
  position: relative;
  animation: fadeUp 0.5s ease 0.1s both;
}

.hero__notif {
  position: absolute;
  top: 52px;
  right: -16px;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  width: 198px;
  animation: notifSlide 0.6s ease 0.6s both;
}
.hero__notif-meta {
  font-size: 11px;
  color: var(--light);
  margin-bottom: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}
.hero__notif-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.hero__notif-sub { font-size: 12px; color: var(--muted); }

.phone {
  width: 252px;
  height: 516px;
  background: var(--white);
  border-radius: 42px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.03),
    0 8px 20px rgba(0,0,0,0.07),
    0 28px 56px rgba(0,0,0,0.09);
  border: 1.5px solid #DDDDD8;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone__statusbar {
  height: 40px;
  background: #F2F2EF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  flex-shrink: 0;
}
.phone__statusbar-time { font-size: 11px; font-weight: 600; color: var(--muted); }
.phone__statusbar-island {
  width: 72px;
  height: 18px;
  background: #E0E0DC;
  border-radius: 100px;
}
.phone__statusbar-icons { font-size: 11px; color: var(--light); }

.phone__header {
  padding: 14px 18px 10px;
  background: var(--white);
  border-bottom: 1px solid #F0F0EC;
  flex-shrink: 0;
}
.phone__cafe-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}
.phone__cafe-meta { font-size: 11px; color: var(--light); font-weight: 500; }

.phone__cats {
  display: flex;
  gap: 6px;
  padding: 10px 18px;
  border-bottom: 1px solid #F3F3F0;
  flex-shrink: 0;
}
.phone__cat {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.phone__cat--active { background: var(--black); color: var(--white); font-weight: 600; }
.phone__cat--idle   { background: #F3F3F0; color: var(--muted); }

.phone__items { padding: 0 10px; overflow: hidden; flex: 1; }

.phone__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #F5F5F2;
}
.phone__item:last-child { border-bottom: none; }
.phone__item-photo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.phone__item-info { flex: 1; min-width: 0; }
.phone__item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone__item-desc { font-size: 10px; color: var(--light); }
.phone__item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.phone__item-price { font-size: 12px; font-weight: 700; color: var(--black); }
.phone__add-btn {
  width: 26px;
  height: 26px;
  background: var(--black);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.phone__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 18px 22px;
  background: var(--white);
  border-top: 1px solid #F0F0EC;
}
.phone__bar-btn {
  background: var(--black);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

/* ─── Phone frame wrapper (standalone, на SEO-страницах) ─── */
.phone-frame-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.phone-frame-wrap__caption {
  font-size: 14px;
  color: #6b7280;
  max-width: 260px;
  text-align: center;
  line-height: 1.5;
}

/* ─── Phone frame (скриншот в рамке телефона) ───── */
.phone-frame {
  position: relative;
  width: 220px;
  margin: 0 auto;
  border-radius: 40px;
  background: #111110;
  padding: 0 10px 18px;
  box-shadow:
    0 0 0 1.5px #2a2a28,
    0 2px 4px rgba(0,0,0,.06),
    0 10px 28px rgba(0,0,0,.14),
    0 32px 60px rgba(0,0,0,.12);
}
.phone-frame__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 36px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.phone-frame__island {
  width: 68px;
  height: 20px;
  background: #000;
  border-radius: 100px;
}
.phone-frame__icons {
  font-size: 10px;
  opacity: 0.85;
}
.phone-frame__img {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 866; /* все menudemo-скриншоты 400×866 — резервируем место до загрузки (CLS) */
  display: block;
  border-radius: 22px;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how {
  padding: 88px 28px;
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.8px;
  color: var(--black);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
}

.steps {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.steps__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--lighter);
  font-size: 22px;
  font-weight: 300;
}

.step {
  flex: 1;
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step--accent {
  border-color: var(--green-bd);
  position: relative;
  overflow: hidden;
}
.step--accent::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  border-radius: 0 18px 18px 0;
}

.step__num {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
}
.step__num--dark   { background: var(--black); }
.step__num--green  { background: var(--green); }

.step__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.step__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── WHAT'S FREE ────────────────────────────────── */
.free {
  padding: 96px 28px;
}

.free__inner {
  display: flex;
  gap: 88px;
  align-items: flex-start;
}

.free__left {
  flex: 1;
  position: sticky;
  top: 90px;
}
.free__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.8px;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.1;
  text-wrap: pretty;
}
.free__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.85; }

.free__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bd);
}
.feature:last-child { border-bottom: none; }

.feature__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1.5px solid var(--green-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}

.feature__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.feature__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── PRICING ────────────────────────────────────── */
.pricing {
  padding: 88px 28px 96px;
  background: var(--bg-alt);
}

.plans {
  display: flex;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.plan {
  flex: 1;
  border-radius: 22px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan--free {
  background: var(--white);
  border: 1.5px solid var(--bd);
}
.plan--pro {
  background: var(--black);
  border: 1.5px solid var(--black);
}

.plan__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.plan--free .plan__label { color: var(--light); }
.plan--pro  .plan__label { color: var(--muted); }

.plan__price {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
}
.plan--free .plan__price { color: var(--black); }
.plan--pro  .plan__price { color: var(--white); }

.plan__period {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 30px;
}
.plan--free .plan__period { color: var(--light); }
.plan--pro  .plan__period { color: var(--muted); }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  margin-bottom: 30px;
}

.plan__from {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.plan--pro .plan__from { color: var(--muted); }

.plan__feat {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.plan--free .plan__feat { color: var(--text-sm); }
.plan--pro  .plan__feat { color: #E8E8E3; }

.plan__feat-check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 13px;
}

.plan__cta {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.15s;
}
.plan__cta:hover { opacity: 0.85; }
.plan--free .plan__cta { background: #F0F0EB; color: var(--black); }
.plan--pro  .plan__cta { background: var(--white); color: var(--black); }


/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 20px 28px 36px;
  border-top: 1px solid var(--bd);
  background: var(--bg);
}
.footer__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer__nav,
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}
.footer__link {
  font-size: 13px;
  color: var(--light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--black); }
.footer__copy { font-size: 13px; color: var(--lighter); margin: 0; }

/* ─── Mobile ─────────────────────────────────────── */
@media (max-width: 860px) {
  .hero { padding: 56px 20px 48px; min-height: auto; }
  .hero__inner { flex-direction: column; gap: 48px; }
  .hero__phone-wrap { order: -1; align-self: center; }
  .hero__notif { right: -8px; top: 36px; }
  .steps { flex-direction: column; }
  .steps__arrow { display: none; }
  .free__inner { flex-direction: column; gap: 40px; }
  .free__left { position: static; }
  .plans { flex-direction: column; max-width: 420px; margin: 0 auto; }
  .nav__links { gap: 8px; }
  .nav__link { display: none; }
  .nav__btn { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 480px) {
  .hero__form { flex-direction: column; }
  .hero__submit { width: 100%; }
  .container { padding: 0 16px; }
  .hero { padding: 40px 16px 36px; }
  .how, .free, .pricing { padding-left: 16px; padding-right: 16px; }
}

/* ─── Captcha note ──────────────────────────────── */
.hero__captcha-note { font-size: 12px; color: var(--light); line-height: 1.4; flex-basis: 100%; margin-top: 0px; }
.hero__captcha-note a { color: var(--light); text-decoration: underline; text-underline-offset: 2px; }
.hero__captcha-note a:hover { color: var(--muted); }

/* ─── Cookie Banner ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  z-index: 9999;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner__text { font-size: 14px; line-height: 1.6; color: #C8C8C4; flex: 1; min-width: 200px; margin: 0; }
.cookie-banner__text strong { color: var(--white); }
.cookie-banner__text a { color: #86efac; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--accept { background: var(--green); color: var(--white); }
.cookie-banner__btn--decline { background: #2a2a28; color: #9B9B97; }
@media (max-width: 520px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); padding: 16px 18px; }
  .cookie-banner__inner { flex-direction: column; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ─── Stats (ряд под hero) ─── */
.hero__stat { background:var(--white); border:1.5px solid var(--bd); border-radius:14px; padding:18px 22px; }
.hero__stat-value { font-size:22px; font-weight:800; color:var(--black); letter-spacing:-0.8px; margin-bottom:4px; }
.hero__stat-label { font-size:13px; color:var(--muted); font-weight:500; line-height:1.4; }
.statsrow { padding: 8px 28px 0; }
.statsrow__inner { max-width:1100px; margin:0 auto; display:flex; gap:16px; }
.statsrow .hero__stat { flex:1; }
@media (max-width: 700px) {
  .statsrow__inner { flex-direction:column; }
  .statsrow { padding:0 20px; }
}

/* ─── Баннер: меню без заказа ─── */
.noorder { padding: 0 28px; margin-top: 16px; }
.noorder__band {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--black);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--white);
}
.noorder__icon { font-size: 56px; line-height: 1; flex-shrink: 0; }
.noorder__text h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 10px;
}
.noorder__text p { font-size: 16px; color: #C8C8C4; line-height: 1.6; max-width: 640px; }
.noorder__text b { color: var(--white); }

/* ─── Два режима меню: карточки ─── */
.menu-modes {
  padding: 56px 28px 64px;
  background: #f8f9fa;
}
.menu-modes__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.menu-modes__card {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.menu-modes__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.menu-modes__badge--order {
  background: var(--green-bd);
  color: var(--green);
}
.menu-modes__badge--view {
  background: var(--black);
  color: var(--white);
}
.menu-modes__screen {
  width: 100%;
  display: flex;
  justify-content: center;
}
.menu-modes__screen img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-modes__caption {
  font-size: 14px;
  color: #4b5563;
  text-align: center;
  line-height: 1.5;
  max-width: 240px;
}
.menu-modes__caption strong {
  color: #111827;
}
.menu-modes__vs {
  display: none;
}
.menu-modes__middle {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.menu-modes__middle-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.menu-modes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.menu-modes__list li {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.menu-modes__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.menu-modes__vs-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #9ca3af;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  padding: 4px 12px;
}
.menu-modes__hint {
  text-align: center;
  margin: 32px auto 0;
  font-size: 15px;
  color: #6b7280;
  max-width: 480px;
}

@media (max-width: 640px) {
  .menu-modes { padding: 40px 20px 48px; }
  .menu-modes__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .menu-modes__card { width: 260px; }
  .menu-modes__middle { order: 3; }
  .menu-modes__middle-title { font-size: 18px; }
}

/* ─── Пара телефонов рядом ─── */
.phone-pair {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Галерея шаблонов меню ─── */
.tmpl-gallery { padding: 64px 0; background: var(--bg-alt); }
.tmpl-gallery__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 28px 24px;
  margin-top: 8px;
}
.tmpl-gallery__scroll::-webkit-scrollbar { display: none; }
.tmpl-gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  margin: 0 auto;
}
.tmpl-gallery__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tmpl-gallery__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}
@media (min-width: 1100px) {
  .tmpl-gallery__scroll { overflow-x: visible; padding-bottom: 0; }
  .tmpl-gallery__track { width: auto; justify-content: center; flex-wrap: wrap; }
}

/* ─── Preview shot (скриншот печатного листа шаблона — НЕ телефон,
   без статус-бара/скруглений под мобильный экран, просто картинка в рамке) ─── */
.preview-shot {
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bd);
  box-shadow: 0 8px 24px rgba(17, 17, 16, 0.08);
  background: var(--white);
}
.preview-shot img { width: 100%; height: auto; display: block; }

.preview-shot-pair { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.preview-shot-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; margin: 0; }
.preview-shot-wrap__caption { font-size: 14px; color: var(--muted); text-align: center; }

/* ─── Секции заведений ─── */
.venue-section { padding: 88px 28px; }
.venue-section--alt { background: var(--bg-alt); }
.venue__inner { display:flex; gap:72px; align-items:flex-start; }
.venue__features { flex:1; min-width:0; }
.venue__features .section-head { text-align:left; margin-bottom:36px; }
.venue__highlight {
  flex:0 0 320px; background:var(--black); color:var(--white);
  border-radius:24px; padding:40px 36px; display:flex; flex-direction:column;
  gap:20px; align-self:stretch; justify-content:center;
}
.venue__highlight-emoji { font-size:48px; line-height:1; }
.venue__highlight-quote { font-size:clamp(22px,2.5vw,28px); font-weight:800; line-height:1.2; letter-spacing:-1px; color:var(--white); }
.venue__highlight-sub { font-size:15px; color:#9B9B97; line-height:1.6; }
.venue-section--alt .venue__highlight { background:var(--white); border:1.5px solid var(--bd); }
.venue-section--alt .venue__highlight-quote { color:var(--black); }
.venue-section--alt .venue__highlight-sub { color:var(--muted); }

/* ─── FAQ ─── */
.faq { padding: 88px 28px; background: var(--bg-alt); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { background:var(--white); border:1.5px solid var(--bd); border-radius:14px; margin-bottom:12px; overflow:hidden; }
.faq__item summary {
  list-style:none; cursor:pointer; padding:20px 24px; font-size:16.5px; font-weight:700;
  color:var(--black); 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:24px; font-weight:400; color:var(--green); flex-shrink:0; transition:transform .2s; }
.faq__item[open] summary::after { transform:rotate(45deg); }
.faq__answer { padding:0 24px 22px; font-size:15px; color:var(--muted); line-height:1.65; }

/* ─── SEO текст ─── */
.seo-text { padding: 72px 28px; }
.seo-text__inner { max-width:820px; margin:0 auto; }
.seo-text h2 { font-size:clamp(24px,3vw,34px); font-weight:800; letter-spacing:-1px; color:var(--black); margin-bottom:20px; }
.seo-text h3 { font-size:19px; font-weight:700; color:var(--black); margin:28px 0 10px; }
.seo-text p { font-size:16px; color:var(--muted); line-height:1.7; margin-bottom:14px; }
.seo-text b { color:var(--text-sm); }

/* ─── CTA ─── */
.cta-section { padding:96px 28px; background:var(--bg-alt); }
.cta-section .section-head { margin-bottom:40px; }
.cta-wrap { max-width:520px; margin:0 auto; }

@media (max-width: 860px) {
  .venue__inner { flex-direction:column; gap:40px; }
  .venue__highlight { flex:none; width:100%; }
  .venue-section { padding:56px 20px; }
  .noorder__band { flex-direction:column; text-align:center; gap:20px; padding:36px 24px; }
}
@media (max-width: 480px) {
  .venue-section, .faq { padding:40px 16px; }
  .seo-text { padding:48px 16px; }
  .cta-section { padding:56px 16px; }
}
