:root {
  --bg: #f6f8fc;
  --surface: #fff;
  --text: #172033;
  --text-soft: #3f4a5d;
  --muted: #6e7889;
  --line: #e2e8f0;

  --yellow: #ffca05;
  --yellow-hover: #ffd52e;
  --yellow-soft: #fff9dc;
  --yellow-text: #806000;

  --pink: #e7a8c0;
  --blue: #3568e8;
  --blue-dark: #2855c7;

  --radius: 20px;
  --shadow: 0 12px 35px rgba(35, 55, 85, .09);
  --shadow-hover: 0 18px 42px rgba(35, 55, 85, .15);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(244, 194, 214, .42), transparent 27rem),
    radial-gradient(circle at 100% 8%, rgba(249, 218, 230, .55), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.16;
  letter-spacing: -.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(29px, 4vw, 43px);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(218, 225, 235, .9);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 3px 15px rgba(44, 63, 90, .04);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: #d9a900;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -100px;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(244, 190, 212, .45);
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -230px;
  left: -160px;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(250, 219, 232, .8);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(218, 169, 0, .28);
  border-radius: 999px;
  background: rgba(255, 213, 58, .17);
  color: #947000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card,
.card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.hero-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(248, 207, 222, .55);
  content: "";
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

/* Картинки показываются полностью */
.hero-image,
.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.hero-image {
  min-height: 205px;
  margin: -28px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero-image img,
.card-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.hero-image:hover img,
.card-image:hover img {
  transform: scale(1.025);
}

.offer-code {
  display: block;
  margin: 13px 0 16px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px dashed #d6a900;
  border-radius: 12px;
  background: var(--yellow-soft);
  color: var(--yellow-text);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.3;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-conditions {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.offer-conditions li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.offer-conditions li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(231, 168, 192, .2);
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 13px;
  background: linear-gradient(135deg, #ffdf45, #ffc400);
  box-shadow:
    0 8px 0 rgba(202, 153, 0, .12),
    0 12px 25px rgba(226, 172, 0, .25);
  color: #211b00;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ffe978, #ffd029);
  box-shadow:
    0 5px 0 rgba(202, 153, 0, .12),
    0 16px 31px rgba(226, 172, 0, .3);
  color: #211b00;
  transform: translateY(-2px);
}

.btn-large {
  width: 100%;
  min-height: 58px;
  font-size: 17px;
}

.card {
  padding: 24px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-image {
  min-height: 175px;
  margin: -24px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card p {
  color: var(--muted);
}

.card a,
.link-list a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: none;
}

.card a:hover,
.link-list a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.section {
  padding: 54px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq {
  display: grid;
  gap: 13px;
}

.faq-item {
  padding: 20px 22px;
  box-shadow: 0 5px 18px rgba(35, 55, 85, .06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.disclaimer {
  margin: 8px 0 0;
  color: #a7afbc;
  font-size: 9px;
  line-height: 1.3;
}

.site-footer {
  margin-top: 48px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .6);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 17px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    max-width: 600px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 11px 15px;
    font-size: 13px;
  }

  .hero {
    padding: 50px 0 38px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 49px);
  }

  .section {
    padding: 38px 0;
  }

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

  .hero-card {
    padding: 22px;
  }

  .hero-image {
    min-height: 0;
    margin: -22px -22px 22px;
  }

  .card {
    padding: 22px;
  }

  .card-image {
    min-height: 0;
    margin: -22px -22px 20px;
  }

  .offer-conditions {
    gap: 8px;
    margin-bottom: 16px;
  }

  .offer-conditions li {
    font-size: 13px;
  }

  .btn-large {
    min-height: 50px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .nav {
    gap: 9px 12px;
    font-size: 12px;
  }

  .offer-code {
    font-size: 17px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}