:root {
  --paper: #fffdfb;
  --surface: #ffffff;
  --surface-soft: #fff8f5;
  --line: #eee7e3;
  --line-strong: #e5ddd8;
  --text: #151210;
  --muted: #6f6965;
  --accent: #f44925;
  --accent-deep: #df3213;
  --accent-soft: #fff0ea;
  --green: #6b8f2d;
  --gold: #ffb31a;
  --shadow: 0 18px 45px rgba(54, 34, 24, 0.08);
  --shadow-soft: 0 14px 35px rgba(54, 34, 24, 0.06);
  --container: min(1280px, calc(100% - 112px));
  color: var(--text);
  font-family:
    Inter,
    Manrope,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  color: var(--text);
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.page-shell {
  width: min(1728px, calc(100% - 20px));
  margin: 8px auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(22, 18, 16, 0.015), 0 12px 42px rgba(22, 18, 16, 0.05);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.section-how,
.section-benefits,
.section-menu,
.section-reviews,
.section-offer,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(28px, 2.2vw, 42px);
  text-align: center;
}

h2 {
  font-size: clamp(28px, 2.15vw, 40px);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::after {
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.35) 50%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  transition:
    opacity 0.2s ease,
    transform 0.65s ease;
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.btn:focus-visible,
.tab:focus-visible,
.round-btn:focus-visible,
.icon-action:focus-visible,
.pay-option:focus-visible,
.calendar-grid button:focus-visible,
.modal-close:focus-visible,
.socials a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(244, 73, 37, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 25px rgba(244, 73, 37, 0.22);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-soft {
  min-height: 40px;
  color: #201b18;
  background: #f4eee9;
  border-color: #f4eee9;
  box-shadow: none;
}

.btn-peach {
  width: 100%;
  min-height: 50px;
  color: #331a12;
  background: linear-gradient(90deg, #ffbca9 0%, #ff9c84 100%);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(244, 73, 37, 0.14);
}

.btn-ghost {
  min-height: 42px;
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 8px 20px rgba(40, 30, 24, 0.04);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 4vw, 78px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 12px;
  background: transparent;
}

.site-logo {
  color: #14100e;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3vw, 56px);
}

.site-nav a {
  color: #25201d;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn-primary,
.header-actions .btn-soft {
  min-height: 40px;
  padding-inline: 22px;
  font-size: 14px;
}

.icon-action {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.icon-action svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-builder {
  padding: 4px 0 42px;
  background:
    radial-gradient(circle at 80% 13%, rgba(244, 73, 37, 0.08), transparent 28%),
    linear-gradient(90deg, #fff8f3 0%, #fffdfb 48%, #fff8f4 100%);
}

.builder-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: 380px;
  padding: 16px 0 26px;
}

.builder-copy h1 {
  text-align: left;
  font-size: clamp(38px, 3.3vw, 58px);
  line-height: 1.12;
}

.builder-copy,
.builder-visual {
  min-width: 0;
}

.title-mobile-line {
  display: inline;
}

.builder-copy p {
  max-width: 420px;
  margin: 20px 0 34px;
  color: #3d3631;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.62;
}

.builder-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-bottom: 34px;
}

.builder-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b2622;
  font-size: 13px;
  font-weight: 800;
}

.builder-features svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.builder-visual {
  position: relative;
  min-height: 340px;
}

.hero-photo-visual {
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: visible;
}

.hero-menu-photo {
  display: block;
  width: clamp(660px, 54vw, 900px);
  max-width: none;
  height: auto;
  transform: translateX(-5%);
  filter: drop-shadow(0 22px 42px rgba(52, 31, 22, 0.08));
  animation: hero-float 7.5s ease-in-out infinite;
  will-change: transform;
}

.builder-dashboard {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px 28px;
  align-items: stretch;
}

.dashboard-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(48, 35, 28, 0.045);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.dashboard-card:hover,
.dashboard-card.is-demo-focus {
  border-color: rgba(244, 73, 37, 0.22);
  box-shadow: 0 20px 46px rgba(48, 35, 28, 0.075);
  transform: translateY(-2px);
}

.dashboard-card h2 {
  font-size: 18px;
}

.calendar-card {
  padding: 24px 34px 26px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 20px 0 15px;
  color: #25201c;
  font-size: 13px;
}

.calendar-head button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: end;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #17130f;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.calendar-head button:first-child {
  justify-self: start;
}

.calendar-head button:hover {
  border-color: #ffc5b6;
  background: var(--accent-soft);
  color: var(--accent);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px 14px;
  text-align: center;
}

.calendar-grid span {
  color: #17130f;
  font-size: 12px;
  font-weight: 900;
}

.calendar-empty {
  display: block;
  width: 32px;
  height: 32px;
  justify-self: center;
}

.calendar-grid button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3e3935;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.calendar-grid button:hover {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.calendar-grid button.is-demo-focus {
  background: var(--accent);
  color: #fff;
  animation: calendar-demo-pulse 1.35s ease-in-out infinite;
}

.calendar-day.selected {
  background: #dce9cf;
}

.calendar-day.warm {
  background: #f3e6c4;
}

.calendar-grid button.is-picked {
  background: var(--accent);
  color: #fff;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 38px 30px;
}

.plan-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.plan-list div,
.plan-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plan-list dt,
.plan-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.plan-list dt {
  color: #756d68;
}

.plan-total {
  margin-top: 4px;
  color: #17120f;
  font-size: 21px;
  font-weight: 900;
}

.plan-card.is-demo-focus .plan-total strong {
  color: var(--accent);
  text-shadow: 0 8px 20px rgba(244, 73, 37, 0.18);
}

.payment-card {
  padding: 20px 34px 24px;
}

.payment-card p,
.bonus-card p {
  margin-top: 8px;
  color: #6c625d;
  font-size: 13px;
  font-weight: 700;
}

.pay-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.pay-option {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 74px;
  min-width: 0;
  gap: 13px;
  overflow: hidden;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, #fffaf7 100%);
  color: #211c18;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 10px 24px rgba(39, 29, 23, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.pay-option::before {
  content: "";
  position: absolute;
  inset: -70% -40%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.78) 50%, transparent 62%);
  opacity: 0;
  transform: translateX(-40%);
}

.pay-option:hover {
  transform: translateY(-2px);
  border-color: #ffc5b6;
  box-shadow: 0 14px 30px rgba(244, 73, 37, 0.09);
}

.pay-option.active,
.pay-option.is-active,
.pay-option.is-demo-focus {
  border-color: #ff9f8d;
  background: linear-gradient(135deg, #fff4ee 0%, #fff 58%, #fff8f4 100%);
  color: #17120f;
  box-shadow: 0 16px 34px rgba(244, 73, 37, 0.16);
}

.pay-option.active::before,
.pay-option.is-active::before,
.pay-option.is-demo-focus::before {
  opacity: 1;
  animation: pay-sheen 2.8s ease-in-out infinite;
}

.pay-label {
  position: relative;
  z-index: 2;
  display: block;
}

.pay-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 5px;
}

.pay-caption {
  display: block;
  color: #5f5751;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.pay-visual {
  position: relative;
  z-index: 2;
  display: block;
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
}

.card-mark {
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.7) 0 9%, transparent 10%),
    linear-gradient(135deg, #2b8cff 0%, #33c9f2 54%, #9be15d 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 10px 18px rgba(43, 140, 255, 0.18);
}

.card-mark::after {
  content: "";
  position: absolute;
  inset: 12px 0 auto;
  height: 7px;
  background: rgba(16, 31, 50, 0.18);
}

.card-chip {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 14px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(135deg, #ffd36b, #ff9c3f);
  box-shadow: inset 0 0 0 1px rgba(120, 74, 0, 0.12);
}

.card-line {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.pay-option.is-active .card-mark,
.pay-option.active .card-mark,
.pay-option.is-demo-focus .card-mark {
  animation: card-float 2.6s ease-in-out infinite;
}

.pay-option[data-pay="sbp"] {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 102px;
  gap: 22px;
  padding: 14px 22px;
}

.pay-option[data-pay="sbp"] .pay-label {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.sbp-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
}

.sbp-logo-tile {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 21px;
}

.sbp-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay-option[data-pay="sbp"].is-active .sbp-mark,
.pay-option[data-pay="sbp"].active .sbp-mark,
.pay-option[data-pay="sbp"].is-demo-focus .sbp-mark {
  animation: sbp-pulse 1.7s ease-in-out infinite;
}

@keyframes pay-sheen {
  0% {
    transform: translateX(-46%);
  }

  55%,
  100% {
    transform: translateX(52%);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) rotate(-1deg);
  }
}

@keyframes sbp-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateX(-5%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-5%) translateY(-8px) scale(1.012);
  }
}

@keyframes calendar-demo-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 73, 37, 0.2);
    transform: translateY(0) scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(244, 73, 37, 0);
    transform: translateY(-1px) scale(1.06);
  }
}

@keyframes offer-pan {
  0%,
  100% {
    object-position: 48% center;
  }

  50% {
    object-position: 54% center;
  }
}

html.has-reveal .reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.has-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-reveal .menu-card {
  opacity: 1;
  transform: none;
}

@keyframes sbp-piece-a {
  0%,
  100% {
    transform: translate(-12px, -9px) rotate(0deg);
  }

  50% {
    transform: translate(-14px, -11px) rotate(-4deg);
  }
}

@keyframes sbp-piece-b {
  0%,
  100% {
    transform: translate(2px, -3px) rotate(0deg);
  }

  50% {
    transform: translate(5px, -4px) rotate(3deg);
  }
}

@keyframes sbp-piece-c {
  0%,
  100% {
    transform: translate(-12px, 7px) rotate(0deg);
  }

  50% {
    transform: translate(-15px, 9px) rotate(4deg);
  }
}

@keyframes sbp-piece-d {
  0%,
  100% {
    transform: translate(2px, 13px) rotate(0deg);
  }

  50% {
    transform: translate(5px, 15px) rotate(-3deg);
  }
}

.bonus-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 38px;
  background: linear-gradient(90deg, #fff 0%, #fff4ef 100%);
}

.percent-badge {
  display: grid;
  width: 94px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 35% 45% 35% 45%;
  background: linear-gradient(135deg, #ffbda8 0%, var(--accent-deep) 68%);
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

.section-how {
  padding: clamp(42px, 4vw, 60px) 0 clamp(38px, 4vw, 54px);
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 42px);
  margin-top: clamp(34px, 3.4vw, 48px);
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.step-card .icon-ring {
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease;
}

.step-card:hover .icon-ring {
  border-color: rgba(244, 73, 37, 0.2);
  box-shadow:
    inset 0 0 35px rgba(244, 73, 37, 0.06),
    0 18px 34px rgba(47, 29, 20, 0.08);
  transform: translateY(-4px);
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 58px;
  right: clamp(-30px, -1.8vw, -14px);
  color: #d9d4d0;
  content: "→";
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.step-number {
  position: absolute;
  top: 0;
  left: max(4px, calc(50% - 56px));
  z-index: 2;
  color: #0f0d0c;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.icon-ring {
  display: grid;
  width: clamp(88px, 7vw, 106px);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid #f0e8e4;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  box-shadow: inset 0 0 35px rgba(244, 73, 37, 0.035);
}

.icon-ring svg,
.benefits-grid svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.step-card p {
  color: #201b18;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.55;
}

.section-benefits {
  padding: clamp(36px, 4vw, 54px) 0 clamp(40px, 4vw, 58px);
  background: linear-gradient(90deg, #fff9f5 0%, #fff 45%, #fff9f5 100%);
}

.section-benefits h2 {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 48px);
}

.benefits-grid article {
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
  color: var(--accent);
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.benefits-grid article:hover {
  transform: translateY(-3px);
}

.benefits-grid article:nth-child(n + 1) {
  color: var(--accent);
}

.benefits-grid article:nth-child(2n) {
  color: var(--green);
}

.benefits-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}

.benefits-grid p {
  color: #201b18;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.5;
}

.section-about {
  padding: clamp(48px, 5vw, 76px) 0 clamp(46px, 5vw, 76px);
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 94px);
  align-items: center;
}

.about-copy {
  max-width: 430px;
}

.about-copy p {
  margin: 26px 0 28px;
  color: #3e3935;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.75;
}

.plate-stage {
  position: relative;
  min-height: clamp(360px, 31vw, 490px);
}

.plate-stage img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 78vw);
  max-width: none;
  filter: drop-shadow(0 30px 35px rgba(42, 32, 28, 0.12));
  transform: translate(-48%, -50%);
}

.leaf {
  position: absolute;
  display: block;
  width: 190px;
  height: 150px;
  opacity: 0.42;
  pointer-events: none;
}

.leaf::before,
.leaf::after {
  position: absolute;
  border: 2px solid #d9bd8b;
  border-right: 0;
  border-bottom: 0;
  content: "";
  transform: rotate(45deg);
}

.leaf::before {
  inset: 36px auto auto 28px;
  width: 126px;
  height: 52px;
  border-radius: 100% 0 0;
}

.leaf::after {
  inset: 70px auto auto 80px;
  width: 80px;
  height: 40px;
  border-radius: 100% 0 0;
}

.leaf-one {
  top: 10px;
  right: 10px;
}

.leaf-two {
  right: auto;
  bottom: -8px;
  left: 80px;
  width: 130px;
  transform: rotate(180deg);
}

.stat-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-width: 136px;
  padding: 24px 27px;
  border: 1px solid rgba(230, 220, 214, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  color: var(--accent);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
}

.stat-card span {
  color: #342f2b;
  font-size: 15px;
  font-weight: 600;
}

.stat-menu {
  top: 40px;
  left: 12%;
}

.stat-years {
  bottom: 56px;
  left: 8%;
  min-width: 116px;
}

.stat-clients {
  right: 1%;
  bottom: 80px;
  min-width: 250px;
}

.section-menu {
  padding: clamp(34px, 4vw, 54px) 0 clamp(44px, 4vw, 64px);
  background: #fff;
}

.section-menu h2,
.section-reviews h2 {
  text-align: center;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 34px auto 34px;
}

.tab {
  min-width: 132px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f6f1ef;
  color: #2e2925;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.tab:hover {
  transform: translateY(-1px);
}

.tab.active {
  color: #fff;
  background: #ff8d76;
  box-shadow: 0 10px 22px rgba(244, 73, 37, 0.2);
}

.menu-carousel {
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 18px);
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffbf8 100%);
  box-shadow: 0 14px 35px rgba(39, 29, 23, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.menu-card:hover {
  border-color: rgba(244, 73, 37, 0.22);
  box-shadow: 0 26px 54px rgba(39, 29, 23, 0.08);
  transform: translateY(-5px);
}

.menu-card-body {
  padding: clamp(14px, 1.15vw, 20px);
}

.menu-card h3 {
  margin-bottom: 4px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
}

.menu-card .calories {
  color: #5e5751;
  font-size: 14px;
  font-weight: 600;
}

.menu-card .dish-name {
  min-height: 31px;
  margin-top: 6px;
  color: #7b746d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.menu-card img {
  display: block;
  width: min(100%, 180px);
  height: clamp(96px, 8vw, 132px);
  object-fit: contain;
  object-position: center;
  margin: 8px auto 14px;
  background: transparent;
  transition:
    filter 0.22s ease,
    transform 0.22s ease;
}

.menu-card:hover img {
  filter: drop-shadow(0 14px 18px rgba(47, 29, 20, 0.09));
  transform: translateY(-3px) scale(1.035);
}

.menu-card .meals {
  color: #77706a;
  font-size: 14px;
  font-weight: 600;
}

.menu-card .price {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 800;
}

.round-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #ffb09e;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.round-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.round-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.round-prev {
  left: -74px;
}

.round-next {
  right: -74px;
}

.section-reviews {
  padding: clamp(28px, 3vw, 42px) 0 clamp(42px, 4vw, 64px);
  background:
    linear-gradient(180deg, #fff 0%, #fffaf7 46%, #fff 100%);
}

.reviews-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 4vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 246, 0.95), rgba(255, 255, 255, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(238, 231, 227, 0.58),
    0 22px 54px rgba(74, 47, 34, 0.055);
}

.section-title-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 34px;
}

.section-title-row h2 {
  grid-column: 2;
}

.section-title-row .btn {
  grid-column: 3;
  justify-self: end;
}

.reviews-summary {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) repeat(2, minmax(170px, 0.95fr));
  gap: 16px;
  margin: -6px 0 clamp(24px, 3vw, 36px);
}

.reviews-score,
.reviews-metric {
  min-width: 0;
  border: 1px solid rgba(231, 219, 211, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(60, 39, 28, 0.04);
}

.reviews-score {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 16px;
  padding: 20px 24px;
}

.reviews-score strong,
.reviews-metric strong {
  color: var(--accent);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.reviews-score .stars {
  grid-column: auto;
  align-self: end;
  font-size: 16px;
  letter-spacing: 1.2px;
}

.reviews-score p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d554f;
  font-size: 14px;
  font-weight: 800;
}

.reviews-metric {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 24px;
}

.reviews-metric span {
  color: #5d554f;
  font-size: 14px;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 40px);
}

.review-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px 16px;
  min-width: 0;
  padding: clamp(22px, 2vw, 30px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(65, 45, 35, 0.035);
}

.reviews-grid .review-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(231, 219, 211, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 248, 0.88));
  box-shadow: 0 22px 44px rgba(61, 39, 29, 0.07);
  isolation: isolate;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.reviews-grid .review-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(244, 73, 37, 0.18));
  content: "";
}

.reviews-grid .review-card::after {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: -1;
  color: rgba(244, 73, 37, 0.08);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  content: "“";
}

.reviews-grid .review-card:hover {
  border-color: rgba(244, 73, 37, 0.26);
  box-shadow: 0 28px 54px rgba(61, 39, 29, 0.1);
  transform: translateY(-4px);
}

.review-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.reviews-grid .review-card img {
  width: 68px;
  height: 68px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(58, 36, 24, 0.12);
}

.review-card h3 {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 800;
}

.review-card .muted {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.review-score-badge {
  display: inline-grid;
  width: 48px;
  height: 42px;
  margin-left: auto;
  align-items: center;
  justify-items: center;
  border: 1px solid rgba(244, 73, 37, 0.16);
  border-radius: 8px;
  background: #fff3ed;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.review-card > p {
  grid-column: 1 / -1;
  color: #332e2a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.reviews-grid .review-text {
  margin-top: 24px;
  color: #302720;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.78;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 219, 211, 0.74);
  color: #6c625c;
  font-size: 13px;
  font-weight: 800;
}

.review-meta .stars {
  grid-column: auto;
  flex: 0 0 auto;
  font-size: 16px;
  letter-spacing: 1.4px;
}

.stars {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
}

.section-offer {
  padding: clamp(34px, 4vw, 54px) 0 clamp(42px, 4vw, 62px);
  background: #fff;
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(440px, 1.15fr);
  min-height: clamp(280px, 26vw, 356px);
  overflow: hidden;
  border-radius: 24px;
  background: #ffdcca;
  box-shadow: 0 24px 60px rgba(74, 44, 30, 0.08);
  isolation: isolate;
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.offer-card:hover {
  box-shadow: 0 32px 72px rgba(74, 44, 30, 0.11);
  transform: translateY(-2px);
}

.offer-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 224, 209, 0.98) 0%, rgba(255, 230, 219, 0.95) 42%, rgba(255, 210, 190, 0.8) 100%),
  #ffdcca;
  content: "";
}

.offer-card::after {
  position: absolute;
  inset: 0 auto 0 42%;
  z-index: 2;
  width: 20%;
  background: linear-gradient(90deg, rgba(255, 226, 214, 0.96) 0%, rgba(255, 226, 214, 0.68) 46%, rgba(255, 226, 214, 0) 100%);
  content: "";
  pointer-events: none;
}

.offer-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 5vw, 74px);
}

.offer-copy h2 {
  color: #2a1710;
  font-size: clamp(30px, 3vw, 46px);
}

.offer-copy p {
  max-width: 430px;
  margin: 20px 0 28px;
  color: #4d3830;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.65;
}

.offer-card img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: min(720px, 56vw);
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 20px 30px rgba(45, 28, 20, 0.12));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  animation: offer-pan 8.5s ease-in-out infinite;
}

.offer-card .btn-primary {
  box-shadow: 0 18px 34px rgba(244, 73, 37, 0.22);
}

.footer {
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.55fr) repeat(3, minmax(130px, 0.78fr)) minmax(250px, 1.4fr);
  gap: clamp(32px, 4vw, 70px);
  padding: clamp(52px, 5vw, 76px) 0;
}

.logo {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand p,
.footer-contact p {
  color: #5e5752;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #f3f0ee;
  color: #292522;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h3 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 900;
}

.footer-nav a {
  color: #625b56;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: clamp(24px, 3vw, 52px);
  border-left: 1px solid var(--line-strong);
}

.phone {
  color: #17120f;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 900;
}

.address {
  max-width: 260px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.store-buttons a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  background: #050505;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 26px max(24px, calc((100% - var(--container)) / 2));
  border-top: 1px solid var(--line);
  color: #817a75;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom a {
  text-align: center;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 11, 0.46);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 40px));
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(22, 14, 10, 0.28);
}

.modal-card.wide {
  width: min(1120px, calc(100vw - 40px));
}

.modal-close {
  position: sticky;
  top: 18px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 18px 18px 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #16120f;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.modal-content {
  padding: 0 clamp(24px, 4vw, 56px) clamp(28px, 4vw, 54px);
}

.modal-content h2 {
  margin: 0 0 16px;
}

.modal-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: #5a524d;
  font-size: 16px;
  font-weight: 600;
}

.subscribe-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #312a25;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: #191512;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
  padding-top: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #ff9b84;
  box-shadow: 0 0 0 4px rgba(244, 73, 37, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.modal-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.modal-list article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fffcfa;
}

.modal-list h3,
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.modal-list p,
.faq-item p {
  color: #5d554f;
  font-weight: 600;
}

.modal-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.modal-reviews .review-card {
  background: #fffbf8;
  box-shadow: none;
}

@media (max-width: 1320px) {
  :root {
    --container: min(1160px, calc(100% - 72px));
  }

  .round-prev {
    left: -18px;
  }

  .round-next {
    right: -18px;
  }

  .round-btn {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 26px rgba(45, 30, 23, 0.1);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .builder-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .builder-visual {
    min-height: 350px;
  }

  .hero-menu-photo {
    width: min(900px, 86vw);
    transform: none;
  }

  .builder-dashboard {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 560px;
  }

  .plate-stage {
    min-height: 0;
    margin-top: 22px;
  }

  .plate-stage img {
    position: static;
    width: min(100%, 860px);
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-card:nth-child(n + 4) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 3;
  }

  .footer-contact {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 38px), 720px);
  }

  .page-shell {
    width: min(calc(100% - 10px), 100%);
    margin-top: 5px;
    border-radius: 20px;
  }

  .site-header {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 22px;
  }

  .site-logo {
    justify-self: center;
  }

  .site-nav {
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-builder {
    padding-bottom: 30px;
  }

  .builder-hero {
    gap: 24px;
    padding-top: 12px;
  }

  .builder-copy h1,
  .builder-copy p {
    text-align: center;
  }

  .builder-copy p {
    margin-inline: auto;
  }

  .builder-copy .btn {
    margin-inline: auto;
  }

  .builder-features {
    justify-content: center;
  }

  .builder-visual {
    min-height: 310px;
  }

  .hero-menu-photo {
    width: min(760px, 94vw);
  }

  .calendar-card,
  .plan-card,
  .payment-card,
  .bonus-card {
    padding: 22px;
  }

  .section-how,
  .section-benefits,
  .section-about,
  .section-menu,
  .section-reviews,
  .section-offer {
    padding-left: 0;
    padding-right: 0;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-grid article {
    justify-items: center;
    text-align: center;
  }

  .about-grid {
    gap: 28px;
  }

  .about-copy {
    max-width: none;
  }

  .plate-stage {
    min-height: 0;
  }

  .plate-stage img {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .stat-menu {
    top: 22px;
    left: 2%;
  }

  .stat-years {
    bottom: 58px;
    left: 0;
  }

  .stat-clients {
    right: 0;
    bottom: 48px;
    min-width: 210px;
  }

  .tabs {
    justify-content: flex-start;
    gap: 10px;
  }

  .tab {
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card:nth-child(n + 4) {
    display: block;
  }

  .menu-card:nth-child(n + 5) {
    display: none;
  }

  .round-btn {
    display: none;
  }

  .section-title-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .section-title-row h2,
  .section-title-row .btn {
    grid-column: auto;
    position: static;
  }

  .reviews-panel {
    padding: 30px 18px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .offer-card::after {
    display: none;
  }

  .offer-copy {
    z-index: 2;
    padding-bottom: 26px;
  }

  .offer-card img {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(100%, 590px);
    height: auto;
    margin: 0 auto -4px;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-inline: 24px;
  }

  .footer-bottom a {
    text-align: left;
  }

  .modal-reviews,
  .subscribe-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(calc(100% - 28px), 480px);
  }

  h1,
  h2 {
    font-size: 27px;
  }

  .site-nav {
    display: none;
  }

  .header-actions .btn-soft {
    display: none;
  }

  .header-actions .btn-primary {
    flex: 1 1 170px;
  }

  .builder-copy h1 {
    font-size: 34px;
  }

  .title-mobile-line {
    display: block;
  }

  .builder-features {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .builder-visual {
    min-height: auto;
  }

  .hero-menu-photo {
    width: min(620px, 112vw);
    transform: translateX(-2%);
  }

  .builder-dashboard {
    gap: 14px;
  }

  .calendar-grid {
    gap: 7px 5px;
  }

  .calendar-grid button {
    width: 30px;
    height: 30px;
  }

  .pay-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bonus-card {
    grid-template-columns: 1fr;
  }

  .percent-badge {
    width: 78px;
    justify-self: end;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .icon-ring {
    width: 106px;
  }

  .step-number {
    left: calc(50% - 50px);
  }

  .about-copy p {
    font-size: 15px;
  }

  .plate-stage {
    min-height: 0;
    margin-top: 30px;
  }

  .plate-stage img {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .stat-card {
    min-width: 112px;
    padding: 16px 18px;
  }

  .stat-card strong {
    font-size: 22px;
  }

  .stat-card span {
    font-size: 13px;
  }

  .stat-menu {
    left: 0;
  }

  .stat-years {
    bottom: 80px;
  }

  .stat-clients {
    right: 0;
    bottom: 12px;
    min-width: 175px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card:nth-child(n + 4),
  .menu-card:nth-child(n + 5) {
    display: block;
  }

  .menu-card img {
    height: 150px;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab {
    width: 100%;
  }

  .review-card {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .review-card img {
    width: 50px;
    height: 50px;
  }

  .reviews-summary {
    gap: 12px;
  }

  .reviews-score,
  .reviews-metric {
    padding: 18px;
  }

  .reviews-score {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .reviews-score p {
    grid-column: auto;
  }

  .review-head {
    align-items: flex-start;
    gap: 12px;
  }

  .reviews-grid .review-card img {
    width: 58px;
    height: 58px;
  }

  .review-score-badge {
    width: 42px;
    height: 38px;
    font-size: 13px;
  }

  .review-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .offer-card {
    border-radius: 18px;
  }

  .offer-copy {
    padding: 34px 24px 22px;
  }

  .offer-copy h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-nav {
    gap: 8px;
  }

  .store-buttons a {
    flex: 1 1 130px;
  }

  .modal {
    padding: 12px;
  }

  .modal-card {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 14px;
  }

  .modal-content {
    padding-inline: 18px;
  }
}

@media (max-width: 370px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .plate-stage {
    min-height: 0;
  }

  .plate-stage img {
    width: 100%;
  }

  .stat-clients {
    min-width: 160px;
  }
}
