/* ═══════════════════════════════════════════════════════
   MARSO — Лазаревич Анна Юрьевна
   Aesthetic: Editorial Split · Bold Typography · Teal Noir
   ═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
  --teal:        #02b1af;
  --teal-dark:   #019590;
  --teal-glow:   rgba(2,177,175,0.25);
  --coral:       #e84c4c;
  --coral-dark:  #d03e3e;
  --black:       #0d0d0d;
  --dark:        #111111;
  --dark-card:   #1a1a1a;
  --mid:         #555555;
  --light:       #f4f4f4;
  --white:       #ffffff;
  --border:      #e8e8e8;

  --fh: 'Oswald', sans-serif;     /* display / headings */
  --fb: 'Open Sans', sans-serif;  /* body */

  --nav-h: 58px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-teal: 0 6px 32px rgba(2,177,175,0.28);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--black); background: var(--white); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utils ──────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.center    { text-align: center; }
.link-teal { color: var(--teal); }
.link-teal:hover { text-decoration: underline; }

/* ── Scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal--delay-1.revealed { transition-delay: 0.12s; }
.reveal--delay-2.revealed { transition-delay: 0.24s; }
.reveal--delay-3.revealed { transition-delay: 0.36s; }
/* Ensure hero content visible immediately */
.hero .reveal { transition-delay: 0s !important; }
.hero .reveal--delay-1 { transition-delay: 0.15s !important; }
.hero .reveal--delay-2 { transition-delay: 0.3s !important; }

/* ── TOP BAR ────────────────────────────────────────── */
.topbar {
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 24px;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar__link { color: var(--white); opacity: 0.85; white-space: nowrap; margin-left: 16px; }
.topbar__link:hover { opacity: 1; text-decoration: underline; }

/* ── HEADER ─────────────────────────────────────────── */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo__img        { height: 38px; width: auto; }
.logo__img--footer { height: 32px; filter: brightness(0) invert(1); }

/* Nav */
.nav__list { display: flex; gap: 2px; }
.nav__link {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--teal); background: rgba(2,177,175,0.07); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  padding: 4px;
}
.burger span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal);
  z-index: 190;
  padding-top: 80px;
}
.mobile-menu.open { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__close {
  position: absolute;
  top: 18px; right: 22px;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.6;
  background: none;
  border: none;
}
.mobile-menu__close:hover { opacity: 1; }
.mobile-menu__list { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu__link {
  display: block;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 10px 32px;
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--teal); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════════════
   HERO — "Editorial Split"
   Left: white panel · Right: bold teal panel
   ══════════════════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: calc(100vh - var(--nav-h) - 34px);
  max-height: 900px;
}

/* LEFT PANEL */
.hero__panel--left {
  flex: 0 0 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 44px 48px 44px 0;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

/* Decorative small image — mobile only */
.hero__img-deco { display: none; }

.hero__eyebrow {
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.hero__title {
  font-family: var(--fh);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero__title-line {
  display: block;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  color: var(--black);
}
.hero__title-accent {
  display: block;
  font-size: clamp(3.8rem, 6.5vw, 6.4rem);
  color: var(--teal);
  line-height: 1;
  margin-top: 4px;
}

.hero__sub {
  font-family: var(--fh);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__sub-gift { color: var(--coral); font-weight: 600; }

/* Form area */
.hero__form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--teal);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
}
.form-heading {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.form { display: flex; flex-direction: column; gap: 8px; }
.form__row { display: flex; gap: 8px; }
.form__row .form__input { flex-grow: 1; }
.form__input {
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-family: var(--fb);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.form__check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; cursor: pointer; }
.form__check-label { font-size: 0.8rem; color: var(--mid); }

/* RIGHT PANEL — teal */
.hero__panel--right {
  flex: 0 0 46%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 40px 40px;
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  position: relative;
  overflow: hidden;
}
/* Decorative background "watermark" */
.hero__panel--right::before {
  content: 'MARSO';
  position: absolute;
  font-family: var(--fh);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.04em;
  bottom: -20px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
}

.hero__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

/* Timer */
.timer__label {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  width: 100%;
  justify-content: center;
}
.countdown__item { display: flex; flex-direction: column; align-items: center; }
.countdown__num {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  min-width: 2.2ch;
  text-align: center;
}
.countdown__unit {
  font-family: var(--fh);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.countdown__sep {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  margin-bottom: 14px;
  padding: 0 2px;
}

.hero__img-main {
  width: 100%;
  max-width: 690px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  filter: brightness(1.05) contrast(1.03);
}

.hero__badges {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--fh);
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge--sale {
  font-size: 2.2rem;
  padding: 10px 28px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,76,76,0.35);
}
.badge--gift {
  font-size: 1rem;
  padding: 10px 24px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  padding: 12px 38px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn--teal   { background: var(--teal); color: var(--white); box-shadow: var(--shadow-teal); }
.btn--teal:hover { background: var(--teal-dark); }
.btn--coral  { background: var(--coral); color: var(--white); box-shadow: 0 6px 24px rgba(232,76,76,0.3); }
.btn--coral:hover { background: var(--coral-dark); }
.btn--white  { background: var(--white); color: var(--teal); }
.btn--white:hover { background: var(--light); }
.btn--full   { width: 100%; padding: 13px; }

/* ── SECTION BASE ───────────────────────────────────── */
.section { padding: 72px 0; }

.section__head { text-align: center; margin-bottom: 48px; }
.section__label {
  display: inline-block;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 10px;
}
.section__label--light { color: var(--teal); }
.section__title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.05;
}
.section__title--light { color: var(--dark); }
.section__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 680px;
  margin: -28px auto 44px;
  line-height: 1.7;
}
.section__note strong { color: var(--coral); font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   STEPS SECTION
   ═══════════════════════════════════════════════════════ */
.section--steps { background: var(--light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.step__num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--fh);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.12;
  line-height: 1;
}

.step__icon-wrap {
  width: 52px; height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  margin-bottom: 14px;
}
.step__icon { width: 100%; height: 100%; object-fit: contain; }

.step__title {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step__text { font-size: 0.88rem; color: var(--mid); line-height: 1.55; }

.steps__desc {
  text-align: center;
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION — dark
   ═══════════════════════════════════════════════════════ */
.section--dark {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.benefit {
  background: #f5f7f7;
  border-radius: var(--radius);
  padding: 22px 18px;
  border-left: 3px solid var(--teal);
  transition: background 0.25s;
}
.benefit:hover { background: #e8f5f5; }

.benefit__icon-wrap {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 14px;
}
.benefit__icon { width: 100%; height: 100%; object-fit: contain; }

.benefit__title {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.benefit__text { font-size: 0.87rem; color: #666; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   PERFUMES SECTION
   ═══════════════════════════════════════════════════════ */
.perfumes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.perfume-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.perfume-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.perfume-card__img {
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--light);
  border-bottom: 1px solid var(--border);
}

.perfume-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.perfume-card__code {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.perfume-card__notes { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; row-gap: 2px; font-size: 0.82rem; }
.perfume-card__notes dt { font-weight: 700; color: var(--teal); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.05em; padding-top: 1px; }
.perfume-card__notes dd { color: var(--mid); }

.perfume-card__type {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════
   COOPERATION SECTION
   ═══════════════════════════════════════════════════════ */
.section--coop { background: var(--light); }

/* Tabs nav */
.coop-tabs { max-width: 760px; margin: 0 auto; }

.coop-tabs__nav {
  display: flex;
  gap: 0;
  border-radius: var(--radius-pill);
  background: var(--border);
  padding: 4px;
  margin-bottom: 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.coop-tab-btn {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 40px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--mid);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.coop-tab-btn--active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(2,177,175,0.28);
}

/* Tab panels */
.coop-tab-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.coop-tab-panel--active { display: flex; }

.coop-tab-panel__img {
  flex: 0 0 300px;
  height: 320px;
  background-size: cover;
  background-position: center;
}

.coop-tab-panel__body {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coop-tab-panel__role {
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.coop-tab-panel__title {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}

.coop-tab-panel__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 380px;
}

/* ═══════════════════════════════════════════════════════
   CONTACTS SECTION
   ═══════════════════════════════════════════════════════ */
.section--contacts { background: var(--white); padding-bottom: 216px; }

.contacts__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.contacts__links { display: flex; flex-direction: column; gap: 12px; }

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-teal);
  transition: background 0.2s, transform 0.2s;
}
.contact-btn:hover { background: var(--teal-dark); transform: translateX(4px); }
.contact-btn__icon { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }

.contacts__deco {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  opacity: 0.9;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--teal);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.footer__info {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
}
.footer__info .link-teal,
.footer__info .link-primary {
  color: var(--white);
  text-decoration: underline;
  opacity: 0.9;
}
.footer__info .link-teal:hover,
.footer__info .link-primary:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── 1199px ── */
@media (max-width: 1199px) {
  .hero__panel--left  { padding: 36px 36px 36px 24px; }
  .hero__panel--right { padding: 36px 24px 36px 36px; }
  .hero__title-line   { font-size: clamp(2.2rem, 4vw, 3.6rem); }
  .hero__title-accent { font-size: clamp(3.2rem, 6vw, 5.4rem); }
}

/* ── 991px ── */
@media (max-width: 991px) {
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .perfumes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__panel--right::before { font-size: 9rem; }
  .hero { max-height: none; }
}

/* ── 767px — MOBILE LAYOUT ── */
@media (max-width: 767px) {
  :root { --nav-h: 52px; }

  .topbar { display: none; }
  .nav    { display: none; }
  .burger { display: flex; }

  /* Hero stacks, right panel (offer) comes FIRST */
  .hero {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }
  .hero__panel--left {
    flex: none;
    padding: 14px 20px 0;
    order: 2;
    gap: 12px;
  }
  .hero__panel--right {
    flex: none;
    order: 1;
    padding: 14px 20px 10px;
  }
  .hero__panel--right::before { display: none; }

  /* Show small deco image on mobile (floated right in heading) */
  .hero__img-deco {
    display: block;
    float: right;
    width: 117px; height: 117px;
    object-fit: contain;
    margin: 0 0 8px 14px;
    shape-outside: circle();
    animation: float 3s ease-in-out infinite;
  }
  .hero__img-main { display: none; }

  .hero__eyebrow { font-size: 0.68rem; }
  .hero__title-line   { font-size: 1.45rem; }
  .hero__title-accent { font-size: 2.2rem; margin-top: 2px; }
  .hero__sub { font-size: 0.88rem; }

  /* Timer compact */
  .hero__offer { gap: 8px; max-width: none; }
  .timer__label { font-size: 0.72rem; }
  .countdown { padding: 10px 14px; border-radius: 10px; gap: 2px; }
  .countdown__num  { font-size: 2rem; }
  .countdown__unit { font-size: 0.55rem; }
  .countdown__sep  { font-size: 1.9rem; margin-bottom: 10px; }

  /* Badges compact */
  .hero__badges { justify-content: center; }
  .badge--sale { font-size: 1.6rem; padding: 5px 18px; }
  .badge--gift { font-size: 0.82rem; padding: 6px 16px; }

  /* Form compact, NO labels needed (placeholders) */
  .hero__form-wrap { padding: 12px 14px; }
  .form-heading { font-size: 0.82rem; margin-bottom: 10px; }
  .form { gap: 10px; }
  .form__row { flex-direction: column; gap: 10px; }
  .form__input { height: 44px; padding: 0 16px; font-size: 1rem; border-radius: 10px; flex: none; width: 100%; }
  .form__check-label { font-size: 0.75rem; }
  .btn--full { padding: 11px; font-size: 0.88rem; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 14px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section__title { font-size: 1.6rem; }
  .section__head { margin-bottom: 32px; }

  /* Base text 14px for all sections below hero */
  .step__text, .steps__desc, .section__note,
  .benefit__text,
  .perfume-card__notes, .perfume-card__notes dd,
  .coop-tab-panel__text,
  .contact-btn span,
  .footer__info { font-size: 14px; }

  /* Card text 12px: steps, benefits, perfumes */
  .step__text,
  .benefit__text,
  .perfume-card__notes, .perfume-card__notes dd { font-size: 12px; }

  /* Steps */
  .steps-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .perfumes-grid { grid-template-columns: 1fr; gap: 14px; }
  .coop-tab-panel--active { flex-direction: column; }
  .coop-tab-panel__img { flex: 0 0 220px; width: 100%; height: 220px; }
  .coop-tab-panel__body { padding: 24px 20px; }
  .coop-tab-panel__title { font-size: 1.5rem; }
  .coop-tab-btn { padding: 10px 24px; font-size: 0.9rem; }

  /* Contacts */
  .contacts__layout { flex-direction: column; gap: 24px; }
  .contacts__deco   { display: none; }
  .section--contacts { padding-bottom: 144px; }
}

/* ── 575px — VERY SMALL PHONES ── */
@media (max-width: 575px) {
  .hero__panel--left  { padding: 10px 16px 0; }
  .hero__panel--right { padding: 12px 16px 8px; }

  .hero__title-line   { font-size: 1.3rem; }
  .hero__title-accent { font-size: 2rem; }
  .hero__img-deco { width: 105px; height: 105px; }

  .countdown { padding: 8px 12px; }
  .countdown__num { font-size: 1.75rem; }
  .countdown__sep { font-size: 1.75rem; }

  .badge--sale { font-size: 1.4rem; padding: 4px 14px; }
  .badge--gift { font-size: 0.75rem; padding: 5px 12px; }

  .form__input { height: 44px; }
  .hero__form-wrap { padding: 10px 12px; }

  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .perfumes-grid { grid-template-columns: 1fr; }

  .perfume-card__img { height: 130px; }
  .perfume-card__body { padding: 10px 10px; gap: 7px; }
  .perfume-card__code { font-size: 1.1rem; }
  .perfume-card__notes { font-size: 0.73rem; }
}

/* ── 374px — TINY PHONES ── */
@media (max-width: 374px) {
  .hero__title-line   { font-size: 1.15rem; }
  .hero__title-accent { font-size: 1.8rem; }
  .hero__img-deco { width: 88px; height: 88px; }
  .countdown__num { font-size: 1.55rem; }
  .countdown__sep { font-size: 1.55rem; }
  .btn--full { font-size: 0.82rem; }
}
