:root {
  --bg: #f7f3ee;
  --ink: #171410;
  --muted: #766f67;
  --line: rgba(23, 20, 16, .1);
  --glass: rgba(255, 255, 255, .58);
  --shadow: 0 32px 90px rgba(78, 55, 33, .16);
  --radius: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 206, 158, .8), transparent 32rem),
    radial-gradient(circle at 88% 16%, rgba(198, 210, 255, .75), transparent 34rem),
    linear-gradient(140deg, #fffaf4, var(--bg) 52%, #ece7df);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.cont { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.header { padding: 12px 0 18px; }
.header__title { max-width: 900px; padding: clamp(18px, 4vw, 46px) 0 10px; }
.eyebrow {
  margin: 0 0 18px;
  color: #9b6b3a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; letter-spacing: -.06em; line-height: .96; }
h1 { font-size: clamp(34px, 5.4vw, 76px); }
h2 { font-size: clamp(38px, 5vw, 70px); }
h3 { font-size: 24px; }
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.benefit {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: #4b4239;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(68, 50, 35, .08);
}

.block2, .info {
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.36));
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(145%);
}
.block2 { padding: clamp(12px, 2vw, 20px); }
.block2__table { display: grid; gap: 12px; }
.offer-wrapper h4 {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.52);
  color: #4b4239;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}
.row {
  display: grid;
  grid-template-columns: 1.25fr 1fr .8fr .8fr auto;
  align-items: center;
  gap: 14px;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.88), transparent 15rem),
    rgba(255,255,255,.5);
  transition: transform .35s cubic-bezier(.2,1.1,.2,1), box-shadow .35s ease, background .35s ease;
}
.row:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 60px rgba(68, 50, 35, .14);
}
.col { min-width: 0; }
.col_v1 {
  display: grid;
  grid-template-columns: minmax(106px, 150px) auto;
  align-items: center;
  gap: 14px;
}
picture {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}
picture img { max-height: 48px; object-fit: contain; }
.rate-box, .st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: #3f3830;
  font-weight: 900;
}
.rate-box-icon::before { content: "★"; color: #d99a28; }
.summa, .stavka, .vozrast {
  display: block;
  color: #332d27;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}
.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #191714, #594334);
  box-shadow: 0 22px 48px rgba(49, 36, 26, .22);
  font-weight: 900;
  white-space: nowrap;
}

.info {
  margin: 24px 0;
  padding: clamp(24px, 5vw, 54px);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.info article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.42);
}
.info p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}
.footer { color: var(--muted); font-size: 14px; }
.footer .cont {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 42px;
}

.ad-leaderboard, .ad-rectangle, .ad-message, .ad-slot { z-index: 2; }
.ad-leaderboard {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(728px, calc(100% - 32px));
  margin: 14px auto 0;
  text-align: center;
}
.ad-rectangle {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 300px;
  max-width: calc(100vw - 36px);
  z-index: 12;
}
.ad-message { position: fixed; right: 18px; bottom: 18px; max-width: 300px; }
.ad-slot {
  position: fixed;
  top: 170px;
  width: 160px;
  min-height: 1px;
}
.ad-slot_left { left: 12px; }
.ad-slot_right { right: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1480px) {
  .ad-slot { display: none; }
}
@media (max-width: 760px) {
  .ad-rectangle, .ad-message { display: none; }
}
@media (max-width: 900px) {
  .header__title { padding-top: 18px; }
  .row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .col_v1, .row .col:last-child { grid-column: 1 / -1; }
  .link { width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cont { width: min(100% - 20px, 1120px); }
  .header { padding-top: 10px; }
  .benefit { width: 100%; }
  .block2, .info { border-radius: 30px; }
  .row {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 24px;
  }
  .col_v1 { grid-template-columns: 1fr auto; }
  picture { min-height: 68px; }
  .summa, .stavka, .vozrast { font-size: 17px; }
  .footer .cont { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
