:root {
  --bg: #0a1030;
  --bg-2: #111b4d;
  --ink: #f3f7ff;
  --muted: #a9b6e0;
  --white: #ffffff;
  --cyan: #26f0ff;
  --magenta: #ff3ec8;
  --violet: #7b5cff;
  --lime: #b6ff3e;
  --gold: #ffcf3e;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.14);
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(6, 10, 40, 0.55);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(255, 62, 200, 0.28), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(38, 240, 255, 0.20), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

#snowfall {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 46px);
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 48, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(8, 13, 40, 0.88);
  border-bottom-color: var(--stroke);
  padding-top: 8px;
  padding-bottom: 8px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav__logo em { font-style: normal; color: var(--cyan); }
.nav__flake { filter: drop-shadow(0 0 10px var(--cyan)); animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: width .25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  transition: transform .2s, border-color .2s;
}
.cart-btn:hover { transform: translateY(-2px); border-color: var(--cyan); }
.cart-btn__count {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  color: #fff;
  font-size: 12px;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  transition: transform .18s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn--primary {
  color: #08102e;
  background: linear-gradient(120deg, var(--cyan), var(--lime) 55%, var(--magenta));
  background-size: 200% 100%;
  box-shadow: 0 12px 30px rgba(38, 240, 255, 0.30);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); background-position: 100% 0; box-shadow: 0 18px 40px rgba(255, 62, 200, 0.38); }
.btn--ghost {
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--stroke);
}
.btn--ghost:hover { border-color: var(--magenta); color: var(--white); transform: translateY(-3px); }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--big { padding: 18px 36px; font-size: 19px; }
.btn--full { width: 100%; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 70px) 0 0; }
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: float 12s ease-in-out infinite;
}
.blob--1 { width: 420px; height: 420px; background: var(--magenta); top: -120px; right: -60px; }
.blob--2 { width: 340px; height: 340px; background: var(--cyan); bottom: -100px; left: -80px; animation-delay: -4s; }
.blob--3 { width: 260px; height: 260px; background: var(--violet); top: 40%; right: 30%; animation-delay: -8s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(24px,-28px) scale(1.08); } }

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--stroke);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.grad {
  background: linear-gradient(100deg, var(--cyan), var(--lime) 45%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(255, 62, 200, .35));
}
.hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 52ch; margin: 22px 0 28px; }
.hero__lead b { color: var(--white); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 44px); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; color: var(--cyan); }
.hero__stats span { font-size: 13px; color: var(--muted); font-weight: 700; }

.hero__art { position: relative; }
.hero__img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: rotate(1.5deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-14px); } }
.hero__sticker {
  position: absolute;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 17px;
  border-radius: 14px;
  color: #08102e;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}
.hero__sticker--1 { background: var(--lime); top: 8%; left: -4%; transform: rotate(-9deg); animation: bob 5s ease-in-out infinite; }
.hero__sticker--2 { background: var(--gold); bottom: 12%; right: -2%; transform: rotate(7deg); animation: bob 5s ease-in-out infinite reverse; }

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--magenta), var(--violet) 50%, var(--cyan));
  color: #0a1030;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 19px);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid rgba(255,255,255,.35);
  border-bottom: 3px solid rgba(255,255,255,.35);
}
.marquee__track { display: inline-flex; animation: slide 26s linear infinite; }
.marquee__track span { padding-right: 24px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
.section { position: relative; z-index: 2; padding: clamp(58px, 8vw, 110px) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(34px, 4vw, 58px); text-align: center; }
.section__head--left { text-align: left; margin: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section__sub { color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); margin-top: 14px; }

/* ---------- CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-8px); border-color: var(--cyan); box-shadow: var(--shadow); }
.card--featured { border-color: rgba(255, 207, 62, .55); box-shadow: 0 0 0 1px rgba(255,207,62,.25), 0 20px 50px rgba(255,207,62,.15); }
.card__imgwrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: rgba(0,0,0,.2); }
.card__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__imgwrap img { transform: scale(1.07); }
.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--cyan);
  color: #08102e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}
.card__tag--gold { background: var(--gold); }
.card__tag--alt { background: var(--lime); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 800; margin-bottom: 9px; letter-spacing: -0.02em; }
.card__body > p { color: var(--muted); font-size: 15px; }
.card__feats { list-style: none; margin: 16px 0 20px; display: grid; gap: 7px; }
.card__feats li { font-size: 14px; color: var(--ink); padding-left: 22px; position: relative; }
.card__feats li::before { content: "❄"; position: absolute; left: 0; color: var(--cyan); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price s { color: var(--muted); font-size: 13px; }
.price b { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--lime); }
.price small { color: var(--muted); font-size: 12px; }

/* ---------- WHY ---------- */
.why { background: linear-gradient(180deg, transparent, rgba(123, 92, 255, .10), transparent); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  transition: transform .25s, background .25s, border-color .25s;
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.11); border-color: var(--magenta); }
.feature__ico { font-size: 38px; margin-bottom: 12px; line-height: 1; }
.feature h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

.delivery-block {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, rgba(38, 240, 255, .14), rgba(255, 62, 200, .16));
}
.delivery-block img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.delivery-block__copy { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.delivery-block__copy h3 { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; letter-spacing: -0.02em; }
.delivery-block__copy p { color: var(--muted); }
.delivery-block__copy .btn { align-self: flex-start; }

/* ---------- GENERATOR ---------- */
.gen { background: radial-gradient(700px 400px at 20% 50%, rgba(255, 207, 62, .12), transparent 70%); }
.gen__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
.gen__copy p { color: var(--muted); font-size: 17px; margin: 16px 0 26px; max-width: 46ch; }
.gen__card {
  background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.gen__card::before {
  content: "❄";
  position: absolute;
  font-size: 220px;
  right: -40px;
  bottom: -70px;
  color: rgba(255,255,255,.05);
  font-family: var(--font-display);
}
.gen__quote { font-family: var(--font-display); font-size: clamp(19px, 2vw, 27px); font-weight: 700; line-height: 1.28; letter-spacing: -0.02em; position: relative; }
.gen__who { color: var(--cyan); font-weight: 800; font-size: 14px; }

/* ---------- REVIEWS ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, border-color .25s;
}
.review:hover { transform: translateY(-6px) rotate(-.6deg); border-color: var(--violet); }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; }
.review blockquote { font-size: 16px; font-weight: 600; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review figcaption img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cyan); }
.review figcaption span { display: flex; flex-direction: column; }
.review figcaption b { font-size: 14.5px; }
.review figcaption small { color: var(--muted); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq { background: linear-gradient(180deg, transparent, rgba(38, 240, 255, .07), transparent); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.accordion { display: grid; gap: 12px; }
.acc {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.acc[open] { border-color: var(--cyan); background: rgba(38, 240, 255, .08); }
.acc summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--cyan);
  transition: transform .25s;
}
.acc[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc p { padding: 0 20px 20px; color: var(--muted); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { position: relative; z-index: 2; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px); }
.cta__inner {
  background: linear-gradient(125deg, var(--violet), var(--magenta) 55%, var(--cyan));
  border-radius: 32px;
  padding: clamp(34px, 5vw, 68px);
  text-align: center;
  box-shadow: var(--shadow);
  color: #0a1030;
}
.cta__inner h2 { font-family: var(--font-display); font-size: clamp(26px, 3.8vw, 44px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
.cta__inner > p { font-weight: 700; margin-top: 12px; color: rgba(10, 16, 48, .75); }
.cta__form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.cta__form input {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 999px;
  border: 2px solid rgba(10,16,48,.18);
  background: rgba(255,255,255,.85);
  color: #0a1030;
  min-width: 210px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.cta__form input:focus { border-color: #0a1030; background: #fff; }
.cta__form input.invalid { border-color: #d1004b; background: #ffe3ef; }
.cta__hint { margin-top: 16px; font-weight: 800; min-height: 22px; }
.cta__hint.ok { color: #08351d; }
.cta__hint.err { color: #6b0027; }

/* ---------- FOOTER ---------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--stroke); padding: 44px 0; background: rgba(6, 10, 32, .5); }
.footer__inner { display: grid; gap: 22px; }
.footer__brand { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.footer__brand b { font-family: var(--font-display); font-size: 18px; }
.footer__brand em { font-style: normal; color: var(--cyan); }
.footer__brand small { display: block; color: var(--muted); font-size: 13px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { color: var(--muted); font-weight: 700; font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--cyan); }
.footer__note { color: var(--muted); font-size: 13px; }

/* ---------- DRAWER / CART ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 22, .65);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  transition: opacity .3s;
}
.overlay.is-open { opacity: 1; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, #131c52, #0a1030);
  border-left: 1px solid var(--stroke);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -30px 0 70px rgba(0,0,0,.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--stroke); }
.drawer__head h3 { font-family: var(--font-display); font-size: 20px; }
.drawer__head h3 span { color: var(--cyan); }
.icon-btn { background: transparent; border: 1px solid var(--stroke); color: var(--ink); width: 38px; height: 38px; border-radius: 50%; font-size: 16px; transition: background .2s, border-color .2s; }
.icon-btn:hover { background: var(--card); border-color: var(--magenta); }
.drawer__items { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.drawer__empty { color: var(--muted); text-align: center; margin: auto; font-weight: 600; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; background: var(--card); border: 1px solid var(--stroke); border-radius: 14px; padding: 13px 15px; }
.cart-item h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 3px; }
.cart-item small { color: var(--muted); font-size: 12.5px; }
.cart-item__right { display: flex; align-items: center; gap: 10px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 6px; }
.cart-item__qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--stroke); background: transparent; color: var(--ink); font-weight: 900; line-height: 1; }
.cart-item__qty button:hover { border-color: var(--cyan); }
.cart-item__qty span { min-width: 20px; text-align: center; font-weight: 800; font-size: 14px; }
.cart-item__price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--lime); white-space: nowrap; }
.drawer__foot { padding: 20px; border-top: 1px solid var(--stroke); display: grid; gap: 14px; }
.drawer__total { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; }
.drawer__total b { font-family: var(--font-display); font-size: 22px; color: var(--lime); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  background: linear-gradient(120deg, var(--cyan), var(--lime));
  color: #08102e;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
  z-index: 120;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transition: transform .4s cubic-bezier(.2, 1.2, .4, 1);
  max-width: 90vw;
  text-align: center;
}
.toast.is-open { transform: translate(-50%, 0); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  #snowfall { display: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 560px; margin: 0 auto; }
  .hero__stats { justify-content: space-between; }
  .cards, .features, .reviews { grid-template-columns: 1fr 1fr; }
  .cards .card--featured { grid-column: 1 / -1; }
  .gen__grid, .faq__grid { grid-template-columns: 1fr; }
  .delivery-block { grid-template-columns: 1fr; }
  .delivery-block img { min-height: 240px; }
  .nav__links { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .cards, .features, .reviews { grid-template-columns: 1fr; }
  .hero { padding-top: 18px; }
  .hero__title { font-size: clamp(34px, 11vw, 46px); }
  .hero__stats { gap: 16px; }
  .hero__stats li { min-width: 84px; }
  .hero__sticker { font-size: 12px; padding: 8px 12px; }
  .hero__sticker--1 { left: 2%; top: 4%; }
  .hero__sticker--2 { right: 2%; bottom: 8%; }
  .btn { width: 100%; }
  .btn--sm { width: auto; }
  .hero__cta .btn, .cta__form .btn { width: 100%; }
  .delivery-block__copy .btn { align-self: stretch; width: 100%; }
  .cta__form input { width: 100%; }
  .section__head { text-align: left; }
  .cta__inner { border-radius: 24px; }
  .toast { bottom: 16px; }
  .footer__links { gap: 14px; }
}

@media (max-width: 400px) {
  .nav__logo { font-size: 16px; }
  .card__foot { flex-direction: column; align-items: stretch; }
  .card__foot .btn { width: 100%; }
}