/* ============================================================
   Шалтай-Болтай — redesign prototype
   Palette: plum #7B476D + green #18B989 (checkout brand),
   paper cream, sunny yellow, coral — pulled from the cover art.
   Type: Amatic SC (display) + Nunito (body).
   ============================================================ */

:root {
  --paper: #FFF9EF;
  --paper-warm: #FFF1D6;
  --white: #FFFFFF;
  --ink: #35303B;
  --ink-soft: #6B6572;
  --plum: #7B476D;
  --plum-deep: #5C3350;
  --plum-tint: #F4E7F0;
  --green: #18B989;
  --green-deep: #0E9C71;
  --green-tint: #DFF5EC;
  --yellow: #FFC94D;
  --coral: #E86A4A;
  --sky: #DCEAFB;

  --font-display: 'Amatic SC', 'Comic Sans MS', cursive;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --radius: 22px;
  --shadow-card: 0 10px 30px rgba(53, 48, 59, .08);
  --shadow-hard: 5px 5px 0 var(--ink);
  --border-ink: 2.5px solid var(--ink);
  --wrap: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--plum); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.1;
  padding: 10px 28px 12px;
  border-radius: 999px;
  border: var(--border-ink);
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-hard);
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }

.btn--green { background: var(--green); color: #fff; }
.btn--plum { background: var(--plum); color: #fff; }
.btn--yellow { background: var(--yellow); }
.btn--ghost { background: var(--white); }
.btn--sm { font-size: 23px; padding: 7px 20px 9px; box-shadow: 4px 4px 0 var(--ink); }
.btn--block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: .65; cursor: wait; transform: none; }

/* ---------------- header ---------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 239, .92);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed rgba(123, 71, 109, .25);
}
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__logo img { height: 44px; width: auto; }
.header__nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.header__nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.header__nav a:hover { color: var(--plum); border-color: var(--yellow); }

/* ---------------- hero ---------------- */
.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  background-image: radial-gradient(rgba(123, 71, 109, .07) 2.2px, transparent 2.2px);
  background-size: 26px 26px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--plum);
  background: var(--white);
  border: 2px solid var(--plum-tint);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.kicker__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: .98;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--plum);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: .35em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero__text {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__chips li {
  background: var(--white);
  border: 2px dashed rgba(123, 71, 109, .4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--plum-deep);
}

/* hero covers */
.hero__art { display: flex; justify-content: center; }
.hero__covers {
  position: relative;
  width: min(420px, 90%);
}
.hero__cover {
  border-radius: 14px;
  border: 6px solid var(--white);
  box-shadow: 0 24px 50px rgba(53, 48, 59, .22);
}
.hero__cover--back {
  position: absolute;
  inset: 0;
  transform: rotate(7deg) translate(26px, 10px);
}
.hero__cover--front {
  position: relative;
  transform: rotate(-3deg);
  transition: transform .3s ease;
}
.hero__covers:hover .hero__cover--front { transform: rotate(-1deg) translateY(-6px); }

/* stickers */
.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  padding: 14px 18px;
  border: var(--border-ink);
  box-shadow: 4px 4px 0 rgba(53, 48, 59, .85);
  z-index: 2;
}
.sticker--yellow {
  background: var(--yellow);
  border-radius: 50%;
  top: -26px; right: -30px;
  transform: rotate(8deg);
  width: 118px; height: 118px;
  display: flex; align-items: center; justify-content: center;
}
.sticker--green {
  background: var(--green);
  color: #fff;
  border-radius: 18px;
  bottom: -24px; left: -34px;
  transform: rotate(-6deg);
}
.sticker--coral {
  background: var(--coral);
  color: #fff;
  border-radius: 18px;
  top: -18px; right: -20px;
  transform: rotate(6deg);
}

/* ---------------- ticker ---------------- */
.ticker {
  background: var(--yellow);
  border-top: var(--border-ink);
  border-bottom: var(--border-ink);
  transform: rotate(-1.2deg) scale(1.02);
  overflow: hidden;
  padding: 8px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  white-space: nowrap;
}
.ticker__track i { font-style: normal; color: var(--plum); font-size: 20px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------------- sections ---------------- */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 88px 24px;
}
.section--narrow { max-width: 860px; }
.section--warm, .section--sky {
  max-width: none;
}
.section--warm > *, .section--sky > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section--warm { background: var(--paper-warm); }
.section--sky { background: var(--sky); }

.section__head { text-align: center; margin-bottom: 52px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1;
  display: inline-block;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  height: 10px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 7 Q 12 2, 22 6 T 42 6 T 62 6 T 82 6 T 102 6 T 118 5' fill='none' stroke='%23E86A4A' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center / auto 10px;
}
.section__lede {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 12px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- features ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.feature:hover { transform: translateY(-5px) rotate(-.5deg); }
.feature__icon {
  width: 62px; height: 62px;
  background: var(--bg, var(--plum-tint));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
  transform: rotate(-4deg);
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 29px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.feature p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------------- current issue ---------------- */
.issue {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.issue__coverwrap { position: relative; }
.issue__cover {
  border-radius: 14px;
  border: 6px solid var(--white);
  box-shadow: 0 24px 50px rgba(53, 48, 59, .25);
  transform: rotate(-2deg);
}
.issue__label {
  font-weight: 800;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
  margin-bottom: 8px;
}
.issue__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.02;
  margin-bottom: 18px;
}
.issue__list {
  list-style: none;
  margin-bottom: 24px;
}
.issue__list li {
  padding: 7px 0 7px 34px;
  position: relative;
  border-bottom: 1px dashed rgba(123, 71, 109, .2);
}
.issue__list li::before {
  content: "✿";
  position: absolute;
  left: 4px;
  color: var(--coral);
  font-weight: 700;
}
.issue__zones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.issue__zones-label { font-weight: 800; font-size: 14.5px; }
.zone {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 700;
}
.issue__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.issue__next {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}
.issue__next img {
  width: 84px;
  border-radius: 8px;
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(53, 48, 59, .2);
  transform: rotate(-3deg);
  flex-shrink: 0;
}
.issue__next strong { font-size: 15.5px; }
.issue__next p { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* ---------------- tariffs ---------------- */
.tariffs {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.tariff {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tariff--hot {
  border: 3px solid var(--plum);
  box-shadow: 0 18px 44px rgba(123, 71, 109, .18);
  transform: translateY(-10px);
}
.tariff__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--yellow);
  border: var(--border-ink);
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  padding: 4px 18px 6px;
  white-space: nowrap;
}
.tariff__art {
  border-radius: 16px;
  margin: 4px 0 18px;
}
.tariff__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.tariff__price {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 18px;
}
.tariff__price strong {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
}
.tariff__list {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.tariff__list li {
  padding: 5px 0 5px 28px;
  position: relative;
  font-size: 15px;
}
.tariff__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 800;
}
.tariff__zones {
  background: var(--green-tint);
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 18px;
  text-align: center;
}
.tariff__zones label,
.checkout-label {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 13.5px;
  font-weight: 800;
  text-align: left;
}
.checkout-zone {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--green-deep);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: 700 14px var(--font-body);
}
.checkout-label { margin-top: 4px; }
.checkout-status {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--plum-deep);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.tariffs__note {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------------- steps ---------------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: var(--yellow);
  border: var(--border-ink);
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 16px;
  transform: rotate(-5deg);
}
.step:nth-child(2) .step__num { background: var(--green); color: #fff; transform: rotate(4deg); }
.step:nth-child(3) .step__num { background: var(--coral); color: #fff; transform: rotate(-3deg); }
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------------- authors ---------------- */
.authors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.author {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.author:hover { transform: translateY(-5px); }
.author__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c, var(--plum));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 14px;
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(53, 48, 59, .18);
}
.author h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.author p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.authors__more {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: var(--ink-soft);
}
.authors__more a { font-weight: 800; }

/* ---------------- quotes ---------------- */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -6px; left: 18px;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  color: var(--yellow);
}
.quote p {
  font-size: 16px;
  line-height: 1.55;
  margin: 26px 0 20px;
  flex: 1;
}
.quote--big { background: var(--plum); color: #fff; transform: rotate(-.6deg); }
.quote--big p { font-size: 18.5px; }
.quote--big::before { color: var(--coral); }
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c, var(--plum));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  flex-shrink: 0;
}
.quote footer strong { display: block; font-size: 14.5px; }
.quote footer span:not(.quote__avatar) { font-size: 13px; opacity: .75; }

/* ---------------- faq ---------------- */
.faq__item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 24px;
  font-weight: 800;
  font-size: 16.5px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--plum-tint);
  color: var(--plum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  transition: transform .2s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--yellow); color: var(--ink); }
.faq__item p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ---------------- friends ---------------- */
.friends {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.friend {
  background: var(--white);
  border: 2px dashed rgba(123, 71, 109, .35);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--plum-deep);
}

/* ---------------- gift banner ---------------- */
.gift {
  max-width: calc(var(--wrap) - 48px);
  margin: 0 auto 88px;
  background: var(--plum);
  border-radius: 32px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.gift__face {
  width: 110px; height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transform: rotate(-4deg);
  flex-shrink: 0;
}
.gift__copy { flex: 1; }
.gift__copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.gift__copy p { color: rgba(255, 255, 255, .85); font-size: 16px; max-width: 52ch; }
.gift__form {
  width: min(320px, 100%);
  display: grid;
  gap: 10px;
  flex-shrink: 0;
}
.gift__form label span {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.gift__form input {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: 600 15px var(--font-body);
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.gift__status { min-height: 1.4em; color: #fff; font-size: 13px; font-weight: 700; }
.gift__download { color: var(--yellow); font-weight: 800; text-align: center; }

/* ---------------- confirmation ---------------- */
.confirmation-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 18px;
  background-image: radial-gradient(rgba(123, 71, 109, .08) 2px, transparent 2px);
  background-size: 26px 26px;
}
.confirmation {
  width: min(650px, 100%);
  padding: 42px;
  border: var(--border-ink);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}
.confirmation__face {
  width: 105px;
  height: 105px;
  margin: 0 auto 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(53, 48, 59, .2);
  object-fit: cover;
}
.confirmation h1 { margin: 15px 0; font: 700 clamp(48px, 10vw, 70px)/1 var(--font-display); }
.confirmation__message { margin: 0 auto 24px; max-width: 48ch; color: var(--ink-soft); }
.confirmation__summary {
  margin: 0 0 28px;
  overflow: hidden;
  border: 2px solid var(--plum-tint);
  border-radius: 16px;
  text-align: left;
}
.confirmation__summary div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 11px 15px; }
.confirmation__summary div + div { border-top: 1px dashed rgba(123, 71, 109, .25); }
.confirmation__summary dt { color: var(--ink-soft); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.confirmation__summary dd { margin: 0; font-weight: 800; word-break: break-word; }
.confirmation .btn { margin: 6px; }

/* ---------------- footer ---------------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
}
.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__logo {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 12px;
  padding: 6px 10px;
  margin-bottom: 16px;
}
.footer__col--brand p { font-size: 14.5px; max-width: 34ch; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 14.5px;
  padding: 3px 0;
  transition: color .15s;
  word-break: break-word;
}
.footer__col a:hover { color: var(--yellow); }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  padding: 0;
}
.footer__social a:hover { background: var(--green); color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: var(--wrap);
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__covers { width: min(340px, 80%); }
  .hero__cta, .hero__chips { justify-content: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .issue { grid-template-columns: 1fr; gap: 44px; }
  .issue__coverwrap { max-width: 320px; margin: 0 auto; }
  .tariffs { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tariff--hot { transform: none; order: -1; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .authors { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .gift { flex-direction: column; text-align: center; padding: 36px 28px; }
  .gift__form { width: min(420px, 100%); text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header__nav { display: none; }
  .header__inner { justify-content: space-between; }
  .section { padding: 60px 20px; }
  .features { grid-template-columns: 1fr; }
  .authors { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sticker--yellow { right: -10px; }
  .sticker--green { left: -12px; }
  .gift { margin-left: 16px; margin-right: 16px; }
  .confirmation { padding: 30px 20px; }
  .confirmation__summary div { grid-template-columns: 1fr; gap: 3px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
