/*
  Локальные webfont-файлы можно добавить позже в app/static/fonts.
  Рекомендуемая пара для текущего дизайна: Cormorant Garamond для заголовков и Manrope/Inter для интерфейса.
  Сейчас сайт работает на системных fallback-шрифтах, чтобы не тянуть внешние CDN.
*/

:root {
  --bg: #100e15;
  --bg-deep: #0b0910;
  --bg-soft: #18131f;
  --text: #fff8fb;
  --text-muted: rgba(255, 248, 251, 0.72);
  --paper: #fff7fb;
  --paper-2: #fff0f6;
  --paper-3: #fffaf3;
  --paper-text: #211722;
  --paper-muted: #6f5d69;
  --rose: #f5b9cf;
  --rose-2: #ff8fbb;
  --rose-deep: #b95b82;
  --gold: #f8d8a8;
  --champagne: #ffe7c6;
  --line: rgba(255, 255, 255, 0.12);
  --paper-line: rgba(60, 36, 52, .10);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --soft-shadow: 0 18px 54px rgba(65, 33, 49, .11);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --site-max: 1480px;
  --site-wide: 1320px;
  --site-pad: clamp(20px, 4vw, 56px);
  --font-body: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-heading: "Cormorant Garamond", "Playfair Display", "Bodoni 72", "Bodoni MT", Constantia, Georgia, "Times New Roman", serif;
  --font-accent: "Avenir Next", Inter, Manrope, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 185, 207, .18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(248, 216, 168, .13), transparent 24%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

::selection {
  color: #211722;
  background: rgba(248, 216, 168, .86);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 14, 21, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 18px var(--site-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-accent); font-weight: 900; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #211722;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 10px 24px rgba(245, 185, 207, .28);
  font-size: 12px;
}
.brand-text { letter-spacing: .01em; }
.site-nav { display: flex; align-items: center; gap: 18px; color: var(--text-muted); font-family: var(--font-accent); font-size: 14px; font-weight: 700; }
.site-nav a { display: inline-flex; align-items: center; min-height: 40px; }
.site-nav a:hover { color: var(--text); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-wrap: balance;
}
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.2vw, 84px);
  line-height: .90;
  letter-spacing: -0.045em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.8vw, 60px);
  line-height: .96;
  letter-spacing: -0.035em;
}
h3 { margin-bottom: 10px; font-family: var(--font-accent); font-size: 20px; font-weight: 900; letter-spacing: -0.025em; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-family: var(--font-accent);
  font-weight: 950;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.68;
  font-weight: 520;
}
.microcopy { margin-top: 16px; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.55; }
.section-text { color: var(--text-muted); font-size: 18px; line-height: 1.72; }

.btn {
  font-family: var(--font-accent);
  letter-spacing: -.01em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #211722;
  background: linear-gradient(135deg, #ffb9d3, #ffe0b4 56%, #fff1d9);
  box-shadow: 0 18px 46px rgba(245, 185, 207, .30);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-wide { width: 100%; }

.product-hero,
.home-hero {
  position: relative;
  overflow: hidden;
}
.product-hero {
  padding: 0 var(--site-pad);
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--site-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(34px, 5.6vw, 78px);
  align-items: center;
  min-height: min(760px, calc(100vh - 74px));
  padding: clamp(68px, 8vw, 104px) 0;
}
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: var(--site-wide);
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 118px) var(--site-pad);
}
.home-hero__content { max-width: 760px; }
.home-hero__card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}
.home-hero__card span { color: var(--rose); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }
.home-hero__card h2 { font-size: clamp(30px, 4vw, 54px); margin: 14px 0; }
.home-hero__card p { color: var(--text-muted); line-height: 1.7; }
.home-hero__card strong { display: block; margin-top: 24px; font-size: 34px; color: var(--gold); }

.product-hero--sales {
  background:
    radial-gradient(circle at 80% 28%, rgba(255, 218, 172, .16), transparent 26%),
    radial-gradient(circle at 52% 76%, rgba(255, 143, 187, .10), transparent 28%);
}
.product-hero__copy { position: relative; z-index: 2; max-width: 760px; }
.hero-offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 6px;
}
.hero-offer-strip span {
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.hero-offer-strip strong { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.trust-row span { position: relative; padding-left: 20px; }
.trust-row span:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}
.product-hero__visual { position: relative; z-index: 2; display: flex; justify-content: center; }

.moodboard {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 210px 170px 150px;
  gap: 14px;
  width: min(500px, 100%);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}
.mood {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: 26px;
  padding: 16px;
  background: linear-gradient(145deg, #f7c6d8, #4a354e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34);
}
.mood:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 48%;
  height: 72%;
  transform: translateX(-50%);
  border-radius: 48% 48% 0 0;
  background: linear-gradient(180deg, rgba(255,246,240,.92), rgba(40,30,42,.98));
  opacity: .8;
}
.mood:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  filter: blur(28px);
}
.mood span, .mood strong { position: relative; z-index: 1; display: block; }
.mood span { color: rgba(255,255,255,.82); font-size: 12px; font-weight: 800; }
.mood strong { margin-top: 8px; font-family: var(--font-heading); font-size: 34px; font-weight: 700; line-height: .95; letter-spacing: -.035em; }
.mood--large { grid-row: span 2; }
.mood--luxury { background: linear-gradient(145deg, #ffe3b8, #6f4762); }
.mood--street { background: linear-gradient(145deg, #d9ddff, #47345d); }
.mood--coffee { background: linear-gradient(145deg, #fff0d9, #a66f83); }
.mood--business { background: linear-gradient(145deg, #f5f0e8, #282230); }
.moodboard-badge {
  position: absolute;
  right: 22px;
  bottom: -18px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper-text);
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 14px 38px rgba(245, 185, 207, .30);
  font-family: var(--font-accent);
  font-weight: 900;
}

.hero-glow { position: absolute; border-radius: 999px; filter: blur(84px); opacity: .52; }
.hero-glow--one { width: 360px; height: 360px; right: 8%; top: 13%; background: var(--rose); }
.hero-glow--two { width: 300px; height: 300px; right: 30%; bottom: 8%; background: var(--gold); }

.section { padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px); background: var(--bg); }
.section-light { color: var(--paper-text); background: linear-gradient(180deg, var(--paper), var(--paper-3)); }
.section-heading { max-width: 860px; margin: 0 auto 42px; text-align: center; }
.section-light .eyebrow { color: var(--rose-deep); }
.section-light .section-text, .section-light p { color: var(--paper-muted); }

.steps-grid,
.style-grid,
.audience-grid,
.before-after-grid,
.result-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.style-grid { grid-template-columns: repeat(5, 1fr); }
.audience-grid { grid-template-columns: repeat(3, 1fr); }
.before-after-grid { grid-template-columns: repeat(4, 1fr); }
.result-grid { grid-template-columns: repeat(3, 1fr); }

.step-card,
.style-card,
.audience-card,
.ba-card,
.checklist-card,
.pricing-card,
.status-card,
.contact-box,
.result-card,
.assist-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 16, 27, .10);
  background: rgba(255,255,255,.76);
  box-shadow: var(--soft-shadow);
}
.result-card,
.step-card {
  padding: 24px;
  color: var(--paper-text);
}
.result-card span,
.step-card span { color: var(--rose-deep); font-weight: 950; }
.result-card p,
.step-card p { margin-bottom: 0; line-height: 1.65; color: var(--paper-muted); }
.steps-grid--sales .step-card {
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.steps-grid--sales .step-card p { color: var(--text-muted); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; max-width: 1120px; margin: 0 auto; }
.inline-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.inline-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper-text);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(60,36,52,.08);
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}
.checklist-card { padding: 28px; }
.checklist-card--light { background: rgba(255,255,255,.82); }
.checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 30px; color: var(--paper-text); line-height: 1.55; }
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose-deep);
  font-weight: 950;
}
.buy-section .checklist li, .assist-card .checklist li { color: rgba(255,255,255,.88); }
.buy-section .checklist li:before { color: var(--gold); }

.style-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  color: var(--paper-text);
  transition: transform .18s ease, box-shadow .18s ease;
}
.style-card:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(65, 33, 49, .14); }
.style-card p { margin-bottom: 0; color: var(--paper-muted); font-size: 14px; line-height: 1.5; }
.style-thumb {
  position: relative;
  overflow: hidden;
  height: 154px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f5b9cf, #34273d);
}
.style-thumb:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 46%;
  height: 70%;
  transform: translateX(-50%);
  border-radius: 48% 48% 0 0;
  background: linear-gradient(180deg, rgba(255,246,240,.86), rgba(45,34,48,.95));
}
.style-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(255,255,255,.50), transparent 22%);
}
.style-thumb span {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(16,14,21,.48);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.style-thumb--1 { background: linear-gradient(145deg, #f7d6df, #726070); }
.style-thumb--2 { background: linear-gradient(145deg, #f8d8a8, #6b4a63); }
.style-thumb--3 { background: linear-gradient(145deg, #d1d8ff, #4a3a62); }
.style-thumb--4 { background: linear-gradient(145deg, #f5f0e8, #2a2532); }
.style-thumb--5 { background: linear-gradient(145deg, #fff0d9, #a66f83); }
.style-thumb--6 { background: linear-gradient(145deg, #ffd2df, #5c4267); }
.style-thumb--7 { background: linear-gradient(145deg, #bce9ff, #f7d8a8); }
.style-thumb--8 { background: linear-gradient(145deg, #e7c1ff, #20142d); }
.style-thumb--9 { background: linear-gradient(145deg, #d5ffe0, #59606a); }
.style-thumb--10 { background: linear-gradient(145deg, #c4c9d9, #101014); }

.examples-section { background: radial-gradient(circle at 50% 0%, rgba(245,185,207,.16), transparent 36%), var(--bg-deep); }
.before-after-grid--sales { align-items: stretch; }
.ba-card {
  padding: 14px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.ba-card h3 { margin-top: 12px; color: var(--text); }
.ba-card p { margin-bottom: 0; color: var(--text-muted); font-size: 14px; }
.ba-image {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: calc(50% - 6px);
  height: 220px;
  margin-bottom: 4px;
  border-radius: 18px;
  color: rgba(255,255,255,.78);
  font-weight: 950;
  overflow: hidden;
}
.ba-before { margin-right: 8px; background: linear-gradient(145deg, #42384a, #201b28); }
.ba-after { background: linear-gradient(145deg, #f7c4d7, #775b75); }
.ba-after:before, .ba-before:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 44%;
  height: 68%;
  transform: translateX(-50%);
  border-radius: 48% 48% 0 0;
  background: linear-gradient(180deg, rgba(255,246,240,.76), rgba(35,25,38,.98));
  opacity: .55;
}
.ba-image { text-shadow: 0 2px 16px rgba(0,0,0,.30); }
.ba-card--luxury .ba-after { background: linear-gradient(145deg, #ffe2b6, #7b536d); }
.ba-card--street .ba-after { background: linear-gradient(145deg, #d4d8ff, #5a4572); }
.ba-card--business .ba-after { background: linear-gradient(145deg, #f5f0e8, #302938); }

.requirements-list { display: grid; gap: 12px; }
.requirements-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(60,36,52,.08);
  box-shadow: var(--soft-shadow);
}
.requirements-list strong { color: var(--paper-text); }
.requirements-list span { color: var(--paper-muted); text-align: right; }
.audience-grid--sales .audience-card {
  padding: 22px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border-color: var(--line);
  font-weight: 900;
}

.buy-section {
  display: block;
  background: radial-gradient(circle at 50% 0%, rgba(245,185,207,.20), transparent 40%), var(--bg);
}
.buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .85fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card,
.assist-card {
  padding: clamp(28px, 5vw, 44px);
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.pricing-card .price {
  margin: 8px 0 22px;
  color: var(--gold);
  font-size: clamp(52px, 6vw, 74px);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.055em;
}
.checklist--compact { margin-bottom: 26px; }
.checkout-form { display: grid; gap: 12px; }
.checkout-form label { color: rgba(255,255,255,.74); font-size: 14px; }
.checkout-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  outline: none;
}
.checkout-form input::placeholder { color: rgba(255,255,255,.38); }
.checkout-form input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(245,185,207,.14); }
.assist-card p { color: var(--text-muted); line-height: 1.7; }
.assist-price { margin: 22px 0; color: var(--gold); font-family: var(--font-heading); font-size: 54px; font-weight: 700; line-height: .95; letter-spacing: -.045em; }

.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
details { padding: 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,.78); border: 1px solid rgba(20,16,27,.08); box-shadow: 0 10px 30px rgba(65,33,49,.06); }
summary { cursor: pointer; color: var(--paper-text); font-family: var(--font-accent); font-weight: 900; }
details p { margin: 14px 0 0; line-height: 1.7; color: var(--paper-muted); }

.final-cta {
  padding: clamp(58px, 8vw, 104px) 18px;
  text-align: center;
  background: linear-gradient(145deg, #1c1623, #100e15);
}
.final-cta h2 { margin-left: auto; margin-right: auto; max-width: 760px; }
.final-cta p { margin: 0 auto 26px; max-width: 640px; color: var(--text-muted); line-height: 1.65; }

.status-page,
.legal-page { min-height: 62vh; padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 76px); }
.status-card { max-width: 700px; margin: 0 auto; padding: 40px; background: rgba(255,255,255,.09); border-color: var(--line); box-shadow: var(--shadow); text-align: center; }
.status-card p { color: var(--text-muted); line-height: 1.7; }
.status-card--success { border-color: rgba(245,185,207,.36); }
.legal-page { max-width: 900px; margin: 0 auto; color: var(--text); }
.legal-page h1 { font-size: clamp(38px, 5vw, 64px); }
.legal-page h2 { margin-top: 36px; font-size: 34px; }
.legal-page p { color: var(--text-muted); line-height: 1.8; }
.contact-box { margin-top: 24px; padding: 24px; background: rgba(255,255,255,.08); border-color: var(--line); line-height: 1.9; }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}
.site-footer__inner {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 28px var(--site-pad);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.site-footer strong { color: var(--text); margin-right: 10px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: var(--text); }



/* v0.1.6 — typography scale polish: крупные заголовки стали компактнее и дороже */
.product-hero__copy h1 {
  max-width: 740px;
}
.section-heading h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.split--requirements h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.2vw, 54px);
  line-height: .98;
  letter-spacing: -0.032em;
}
.pricing-card h2,
.assist-card h2 {
  font-size: clamp(36px, 3.35vw, 54px);
  line-height: .98;
  letter-spacing: -0.034em;
}
.pricing-card .price {
  font-size: clamp(48px, 5vw, 66px);
}
.assist-price {
  font-size: clamp(42px, 4.2vw, 52px);
}
.final-cta h2 {
  max-width: 660px;
  font-size: clamp(34px, 3.7vw, 56px);
}

@media (max-width: 1120px) {
  .hero-shell, .home-hero, .split, .buy-layout { grid-template-columns: 1fr; }
  .hero-shell { min-height: auto; }
  .product-hero__visual { justify-content: flex-start; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .style-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid, .before-after-grid, .result-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header__inner { align-items: flex-start; flex-direction: column; gap: 14px; }
  .site-nav { width: 100%; justify-content: space-between; }
  h1 { font-size: 46px; line-height: .92; }
  h2 { font-size: 36px; }
  .pricing-card h2, .assist-card h2, .split--requirements h2 { font-size: 38px; }
  .product-hero, .section { padding-left: 16px; padding-right: 16px; }
  .hero-shell { padding: 52px 0 62px; }
  .steps-grid, .style-grid, .audience-grid, .before-after-grid, .result-grid { grid-template-columns: 1fr; }
  .moodboard { grid-template-columns: 1fr; grid-template-rows: none; transform: none; width: 100%; }
  .mood--large { grid-row: auto; }
  .mood { min-height: 160px; }
  .requirements-list div { flex-direction: column; gap: 6px; }
  .requirements-list span { text-align: left; }
  .site-footer__inner { flex-direction: column; }
}

/* v0.1.5 — реальные demo-изображения для AI Photo */
.moodboard--photo .mood {
  isolation: isolate;
  background: #241d2d;
}
.moodboard--photo .mood:before,
.moodboard--photo .mood:after {
  display: none;
}
.moodboard--photo .mood img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}
.moodboard--photo .mood:has(img)::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(16,14,21,.18), rgba(16,14,21,.58));
  filter: none;
  border-radius: inherit;
}
.moodboard--photo .mood span,
.moodboard--photo .mood strong {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}

.style-card figure { margin: 0 0 16px; }
.style-thumb--photo {
  height: 228px;
  background: #f5eef2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
}
.style-thumb--photo:before,
.style-thumb--photo:after {
  display: none;
}
.style-thumb--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}
.style-card:hover .style-thumb--photo img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.style-thumb--photo span {
  background: rgba(16,14,21,.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.examples-section .section-heading {
  max-width: 920px;
}
.before-after-grid--sales {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  gap: 22px;
}
.ba-card--real {
  padding: 16px;
}
.ba-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.ba-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}
.ba-card--real:hover .ba-photo {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}
.ba-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  color: #211722;
  background: rgba(255,248,251,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 950;
}
.ba-card--real h3 {
  margin-top: 16px;
}

@media (max-width: 1120px) {
  .before-after-grid--sales { grid-template-columns: repeat(2, 1fr); }
  .style-thumb--photo { height: 238px; }
}
@media (max-width: 760px) {
  .before-after-grid--sales { grid-template-columns: 1fr; }
  .style-thumb--photo { height: 300px; }
}

/* v0.2.5 — compact product kit list */
.product-preview-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 189, 211, .14), transparent 42%),
    radial-gradient(circle at 10% 82%, rgba(248, 216, 168, .08), transparent 30%),
    var(--bg-deep);
  color: #fff;
}

.product-preview-section .section-heading h2,
.product-preview-section .section-heading p {
  color: #fff;
}

.product-preview-section .section-text {
  max-width: 880px;
  color: rgba(255,255,255,.72);
}

.product-kit-list {
  width: min(980px, calc(100% - var(--site-pad) * 2));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.product-kit-row {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 22px 62px rgba(0,0,0,.22);
  overflow: hidden;
}

.product-kit-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rose), var(--gold));
  opacity: .84;
}

.product-kit-row--featured {
  border-color: rgba(248,216,168,.28);
  background:
    radial-gradient(circle at 92% 16%, rgba(248,216,168,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
}

.product-kit-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #211722;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 14px 34px rgba(245,185,207,.2);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

.product-kit-main {
  min-width: 0;
}

.product-kit-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.product-kit-title-line h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.product-kit-badge {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--champagne);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-kit-row p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}

.product-kit-row small {
  display: inline-flex;
  max-width: 100%;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.54);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .product-kit-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .product-kit-title-line {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-kit-num {
    width: 48px;
    height: 48px;
  }
}

/* v0.2.4 — sales landing conversion polish */
.nav-buy {
  padding: 8px 13px;
  border-radius: 999px;
  color: #211722 !important;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 10px 26px rgba(245, 185, 207, .18);
}

.hero-product-note {
  max-width: 680px;
  margin-top: 20px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.65;
}
.hero-product-note strong { color: var(--gold); }

.outcome-section {
  position: relative;
  overflow: hidden;
}
.outcome-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 185, 207, .18), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(248, 216, 168, .16), transparent 32%);
}
.outcome-section > * { position: relative; z-index: 1; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.outcome-card {
  padding: 24px;
  border-radius: var(--radius-md);
  color: var(--paper-text);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,36,52,.09);
  box-shadow: var(--soft-shadow);
}
.outcome-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #211722;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  font-family: var(--font-accent);
  font-weight: 950;
  font-size: 12px;
}
.outcome-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.split--services {
  grid-template-columns: .88fr 1.12fr;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(60,36,52,.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
}
.service-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper-text);
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 950;
}
.service-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.package-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.package-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper-text);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(60,36,52,.08);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
  font-size: 13px;
}

.truth-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(245,185,207,.18), transparent 30%),
    linear-gradient(180deg, var(--paper), var(--paper-3));
}
.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.truth-card {
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,36,52,.09);
  box-shadow: var(--soft-shadow);
}
.truth-card h3 {
  color: var(--paper-text);
  font-size: 24px;
}
.truth-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.truth-card li {
  position: relative;
  padding-left: 28px;
  color: var(--paper-muted);
  line-height: 1.6;
}
.truth-card li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 950;
}
.truth-card--yes li:before {
  content: "✓";
  color: var(--rose-deep);
}
.truth-card--no li:before {
  content: "!";
  color: #a46539;
}

.legal-page--polished {
  max-width: 980px;
}
.legal-page--polished .legal-lead {
  max-width: 860px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.legal-note {
  margin: 28px 0;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 1.7;
}
.legal-note strong { color: var(--gold); }
.legal-list {
  display: grid;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border-radius: 16px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  line-height: 1.6;
}
.legal-list li:before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 15px;
  color: var(--gold);
  font-weight: 950;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.contact-box--rich {
  margin: 0;
  padding: 26px;
}
.contact-box--rich span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-box--rich strong {
  display: block;
  color: #fff;
  font-size: 22px;
}
.contact-box--rich p {
  margin: 12px 0 0;
}

@media (max-width: 1120px) {
  .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--services { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .site-nav a { font-size: 13px; }
  .outcome-grid,
  .service-grid,
  .truth-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-offer-strip span { width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* v0.2.6 — homepage, post-purchase flow and pre-YooKassa trust polish */

/* v0.2.6.1 — homepage visual feedback polish */
.home-hero--polished .home-hero__content h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.15vw, 68px);
  line-height: .96;
  letter-spacing: -0.04em;
}

.site-header .site-nav {
  align-items: center;
}

.home-hero--polished {
  grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
  min-height: min(760px, calc(100vh - 74px));
}

.home-showcase {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 78% 12%, rgba(248,216,168,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
}

.home-showcase__media {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
  padding: 14px;
}

.home-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.home-showcase__img--large {
  grid-row: 1 / span 2;
}

.home-showcase__body {
  padding: 16px 26px 28px;
}


.home-showcase h2 {
  max-width: 480px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.6vw, 56px);
}

.home-showcase p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.home-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.home-showcase__footer strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: .9;
  letter-spacing: -.04em;
}

.home-showcase__footer a {
  color: var(--champagne);
  font-weight: 950;
}

.home-value-section {
  position: relative;
  overflow: hidden;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.home-value-card {
  padding: 24px;
  border-radius: var(--radius-md);
  color: var(--paper-text);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,36,52,.09);
  box-shadow: var(--soft-shadow);
}

.home-value-card span,
.after-buy-steps article span,
.success-next-list article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #211722;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 950;
}

.home-value-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.home-product-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(245,185,207,.16), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(248,216,168,.11), transparent 30%),
    var(--bg-deep);
}

.home-product-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.home-product-layout .section-text {
  max-width: 620px;
}

.package-strip--dark span {
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.home-product-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.home-product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
}

.after-buy-section {
  position: relative;
  overflow: hidden;
}

.after-buy-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.after-buy-steps article {
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--paper-text);
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(60,36,52,.09);
  box-shadow: var(--soft-shadow);
}

.after-buy-steps article h3 {
  font-size: 18px;
}

.after-buy-steps article p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.62;
  font-size: 14px;
}

.status-page--success-flow {
  display: grid;
  gap: 22px;
}

.success-next-card {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.success-next-card h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 4vw, 56px);
}

.success-next-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.success-next-list article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
}

.success-next-list article strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.success-next-list article p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
  font-size: 14px;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.support-list article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
}

.support-list article strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.support-list article p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.6;
}

.legal-note--warning {
  border-color: rgba(248,216,168,.24);
  background:
    radial-gradient(circle at 92% 10%, rgba(248,216,168,.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
}

@media (max-width: 1120px) {
  .home-hero--polished,
  .home-product-layout { grid-template-columns: 1fr; }
  .home-value-grid,
  .success-next-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .after-buy-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .support-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .home-showcase__media,
  .home-product-preview,
  .home-value-grid,
  .after-buy-steps,
  .success-next-list { grid-template-columns: 1fr; }
  .home-showcase__img--large { grid-row: auto; }
  .home-showcase__media { grid-template-rows: none; }
  .home-showcase__img { aspect-ratio: 4 / 3; }
  .home-showcase__footer { align-items: flex-start; flex-direction: column; }
}

/* v0.2.6.5 — compact footer requisites and real cookie banner */
.cookie-consent {
  position: fixed;
  left: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(12px, 2vw, 28px);
  z-index: 60;
  max-width: 760px;
  margin: 0;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: #211722;
  background: rgba(242, 241, 244, .96);
  border: 1px solid rgba(60, 36, 52, .10);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(20, 11, 18, .16);
  backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
  display: grid;
}

.cookie-consent__text {
  color: #2a1f2a;
  line-height: 1.55;
  font-size: 15px;
}

.cookie-consent__text a {
  color: var(--rose-deep);
  font-weight: 900;
  border-bottom: 1px solid rgba(185, 91, 130, .32);
}

.cookie-consent__button {
  min-width: 68px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(60, 36, 52, .24);
  border-radius: 8px;
  color: #211722;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20, 11, 18, .08);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal-line {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.46);
  font-size: 13px;
  line-height: 1.45;
}


.legal-page a {
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid rgba(248, 216, 168, .25);
}

.legal-page code {
  padding: 2px 6px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.10);
}

.legal-ordered-list {
  display: grid;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  counter-reset: legal-step;
}

.legal-ordered-list li {
  counter-increment: legal-step;
  position: relative;
  padding: 16px 16px 16px 54px;
  border-radius: 16px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  line-height: 1.6;
}

.legal-ordered-list li:before {
  content: counter(legal-step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #211722;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 950;
}

.requisites-card {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(248,216,168,.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
}

.requisites-card h2 {
  margin-top: 0;
}

.requisites-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.requisites-list div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}

.requisites-list dt {
  margin-bottom: 6px;
  color: rgba(255,255,255,.50);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.requisites-list dd {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
  }
  .cookie-consent__button {
    width: 100%;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .requisites-list {
    grid-template-columns: 1fr;
  }
  .footer-legal-line {
    margin-top: 10px;
  }
}

/* v0.2.7 mock product / payment readiness */
.checkout-form--mock-redirect {
  display: grid;
  gap: 0.9rem;
}

.microcopy--strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.mock-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: 5rem 6vw 4rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 194, 216, 0.22), transparent 28rem),
    linear-gradient(135deg, #140f18 0%, #211523 48%, #130e16 100%);
  color: #fff;
}

.mock-hero__content {
  max-width: 760px;
}

.mock-hero h1 {
  max-width: 820px;
  margin: 0.55rem 0 1rem;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.mock-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.mock-badges span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.mock-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.mock-panel h2 {
  margin: 0.35rem 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mock-panel .checkout-form {
  margin-top: 1.2rem;
}

@media (max-width: 920px) {
  .mock-hero {
    grid-template-columns: 1fr;
    padding-top: 3.4rem;
  }
}
