/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { font-family: 'Golos Text', sans-serif; font-weight: 800; letter-spacing: -0.02em; }

/* ============ VARIABLES ============ */
:root {
  --dark: #14161c;
  --dark-2: #1a1d25;
  --dark-card: #21242e;
  --dark-border: #2c2f39;
  --red: #e4272c;
  --red-dark: #c11d22;
  --red-soft: rgba(228,39,44,0.12);
  --light-bg: #f7f6f3;
  --white: #ffffff;
  --ink: #16181d;
  --gray: #6c7079;
  --gray-light: #9a9ea6;
  --border-light: #e7e5e0;
  --container: 1240px;
}

/* ============ LAYOUT UTILITIES ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
section { padding: clamp(64px, 9vw, 112px) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark2 { background: var(--dark-2); color: var(--white); }
.section-light { background: var(--light-bg); }
.eyebrow-red { color: var(--red); }
/* Content is visible by default. Animation is opt-in via JS adding .js-anim to <html>,
   so if any script fails to load or run, the page still displays normally. */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js-anim .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 8px 24px rgba(228,39,44,0.35); }
.btn-primary:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

h2.section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
.section-subtitle {
  color: var(--gray);
  font-size: 15.5px;
  margin-top: 10px;
  max-width: 480px;
}
.section-dark .section-subtitle, .section-dark2 .section-subtitle { color: #9a9da4; }
.section-kicker {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.lucide { stroke-width: 1.75; }

/* ============ HEADER ============ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,22,28,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .25s ease;
}
header.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: clamp(20px, 5.5vw, 72px);
  padding-right: clamp(20px, 3vw, 40px);
  width: 100%;
  box-sizing: border-box;
}
.brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.brand-name {
  font-family: 'Golos Text', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--red); }
.brand-tagline {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.35;
  max-width: 190px;
  border-left: 1px solid var(--dark-border);
  padding-left: 14px;
}
.header-contacts {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
  gap: 16px;
  margin: 0 32px;
}
.contact-icons { display: flex; justify-content: space-evenly; flex: 1; gap: 16px; }
.contact-icon-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cfd2d8;
  font-size: 13.5px;
  font-weight: 500;
  transition: color .2s ease;
}
.contact-icon-link:hover { color: #fff; }
.contact-icon-link svg { width: 17px; height: 17px; }
.header-phone {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.header-cta { display: none; }
@media (min-width: 860px) { .header-cta { display: inline-flex; } }

.burger {
  display: flex;
  color: #fff;
  padding: 6px;
}
.burger svg { width: 26px; height: 26px; }
@media (min-width: 860px) { .burger { display: none; } }
.header-nav { display: none; }
@media (min-width: 860px) {
  .header-nav { display: flex; align-items: center; gap: 22px; flex-shrink: 0; margin-right: auto; margin-left: 36px; }
  .header-nav a { color: #cfd2d8; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s ease; white-space: nowrap; }
  .header-nav a:hover { color: #fff; }
}
.header-contacts { display: none; }
@media (min-width: 860px) { .header-contacts { display: flex; } }
.brand-tagline { display: none; }
@media (min-width: 620px) { .brand-tagline { display: block; } }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px clamp(20px, 4vw, 48px) 26px;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
}
.mobile-panel.open { display: flex; }
@media (min-width: 860px) { .mobile-panel { display: none !important; } }
.mobile-panel .contact-icon-link { color: #e6e7ea; font-size: 15px; }
.mobile-panel .contact-icon-link svg { width: 19px; height: 19px; }
.mobile-panel .header-phone { font-size: 17px; }
.mobile-nav-link { color: #fff; font-size: 17px; font-weight: 700; text-decoration: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 96px) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(11,12,16,0.95) 0%,
    rgba(11,12,16,0.90) 30%,
    rgba(11,12,16,0.72) 50%,
    rgba(11,12,16,0.45) 67%,
    rgba(11,12,16,0.18) 84%,
    rgba(11,12,16,0.04) 100%);
}
@media (max-width: 859px) {
  .hero-overlay {
    background: linear-gradient(100deg,
      rgba(11,12,16,0.95) 0%,
      rgba(11,12,16,0.91) 45%,
      rgba(11,12,16,0.8) 68%,
      rgba(11,12,16,0.62) 100%);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(20px, 5.5vw, 72px);
}
.hero-text { max-width: 620px; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 .red { color: var(--red); }
.hero-desc {
  color: #c6c9d0;
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 520px;
  margin-bottom: 32px;
}
.model-usp-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.model-usp-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(228,39,44,0.14); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.model-usp-icon svg { width: 17px; height: 17px; }
.model-usp-text { font-size: 15.5px; color: #e6e7ea; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 22px; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(30,33,42,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 18px;
  border-radius: 12px;
}
.hero-stat-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(228,39,44,0.18);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-text { font-size: 13.5px; color: #d6d8dd; line-height: 1.35; }
.hero-stat-text strong { color: #fff; display: block; font-size: 14px; }
.hero-trust { font-size: 13px; color: var(--gray-light); }

/* ============ COMPARISON SECTION ============ */
.compare-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compare-intro { text-align: center; max-width: 620px; margin: 0 auto; }
.compare-intro h2 { margin-bottom: 14px; }
.compare-intro p { color: var(--gray); font-size: 15.5px; margin: 0 auto; max-width: 440px; }
.compare-intro .highlight { color: var(--red); font-weight: 700; }

.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  position: relative;
}
@media (min-width: 640px) { .compare-cards { grid-template-columns: 1fr auto 1fr; gap: 0; } }
.compare-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 26px;
}
.compare-card.highlighted { border: 1.5px solid var(--red); background: linear-gradient(180deg, rgba(228,39,44,0.03), rgba(228,39,44,0.01)); }
.compare-card h3 { font-family:'Inter',sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--ink); }
.compare-card.highlighted h3 { color: var(--red); }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: #3c3f46;
  padding: 8px 0;
  border-top: 1px solid #f0efec;
}
.compare-list li:first-child { border-top: none; }
.compare-list svg { width: 17px; height: 17px; color: var(--gray-light); flex-shrink: 0; margin-top: 1px; }
.compare-card.highlighted .compare-list svg { color: var(--red); }

.vs-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: -14px auto;
  position: relative;
  z-index: 2;
  border: 4px solid var(--light-bg);
  flex-shrink: 0;
}
@media (min-width: 640px) { .vs-badge { margin: 0 -26px; } }

/* ============ MONEY / DARK STATS ============ */
.money-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.money-hero-inner { max-width: 100%; }
.money-highlight {
  font-family: 'Golos Text', sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 58px);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.money-figure {
  font-family: 'Golos Text', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 9.5vw, 108px);
  color: var(--red);
  line-height: 1.03;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.money-suffix { color: #fff; font-weight: 700; font-size: clamp(19px, 2.2vw, 26px); margin-bottom: 26px; }
.money-caption { color: #9a9da4; font-size: 15px; line-height: 1.6; max-width: 520px; margin: 0 auto; }
.money-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: 520px;
}
.money-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(228,39,44,0.14);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.money-card-icon svg { width: 22px; height: 22px; }
.money-card p { color: #c6c9d0; font-size: 14px; line-height: 1.5; }

/* ============ PROCESS STEPS ============ */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  margin-top: clamp(56px, 7vw, 88px);
}
@media (min-width: 900px) {
  .steps-row { flex-direction: row; gap: 0; position: relative; }
}
.step {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}
@media (min-width: 900px) { .step { flex-direction: column; align-items: center; text-align: center; padding: 0 10px; gap: 14px; } }
.step-marker { position: relative; flex-shrink: 0; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
/* mobile: vertical connector confined to the marker column, scoped per-step so it never runs behind text */
.step-marker::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: -36px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #e3c9ca;
}
.step:last-child .step-marker::after { display: none; }
@media (min-width: 900px) {
  .step-marker::after { display: none; }
}
.step-content { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 900px) { .step-content { align-items: center; } }
.step-icon { color: var(--red); }
.step-icon svg { width: 22px; height: 22px; }
.step h3 { font-family:'Inter',sans-serif; font-weight: 700; font-size: 16px; }
.step p { color: var(--gray); font-size: 13.5px; max-width: 200px; line-height: 1.45; }

/* ============ HELP LIST (dark) ============ */
.help-section { padding-bottom: clamp(36px, 4.5vw, 56px) !important; }
.help-section .container { max-width: 1150px; }
.help-section .section-title { margin-bottom: 14px; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  margin-top: 70px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) { .help-grid { grid-template-columns: repeat(3, 1fr); gap: 6px 32px; } }
.help-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.help-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--dark-border);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.help-icon svg { width: 31px; height: 31px; }
.help-item p { font-size: clamp(16px, 1.7vw, 18.5px); color: #c6c9d0; line-height: 1.75; max-width: 230px; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media (min-width: 960px) { .pricing-grid { grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: center; } }
.pricing-price {
  font-family: 'Golos Text', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4vw, 48px);
  color: var(--red);
  margin: 14px 0 10px;
}
.pricing-bridge { color: var(--red); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.pricing-col h2 { margin-bottom: 6px; }
.pricing-col > p { color: var(--gray); font-size: 14px; max-width: 340px; line-height: 1.55; margin-bottom: 24px; }
.pricing-checklist { display: flex; flex-direction: column; gap: 26px; }
.pricing-checklist li { display: flex; gap: 16px; align-items: flex-start; font-size: clamp(16px, 1.7vw, 18.5px); color: #3c3f46; line-height: 1.55; }
.pricing-checklist svg { width: 25px; height: 25px; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.pricing-section .pricing-col > p { color: #9a9da4; }
.pricing-section .pricing-checklist li { color: #cfd2d8; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 860px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: 16px 24px; } }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  align-self: start;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  color: var(--ink);
}
.faq-toggle-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-toggle-icon svg { width: 15px; height: 15px; }
.faq-item.open .faq-toggle-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 22px 20px; color: var(--gray); font-size: 14.5px; line-height: 1.6; }
.faq-item.open .faq-answer { max-height: 260px; }

/* ============ FINAL CTA ============ */
.site-footer {
  background: var(--dark);
  padding: 32px 0;
}

/* ============ CONSULT SECTION ============ */
.consult-section { padding-top: clamp(56px, 7vw, 88px) !important; padding-bottom: clamp(48px, 6vw, 76px) !important; }
.consult-lead { color: var(--gray); font-size: 16px; line-height: 1.6; margin-top: 20px; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  margin-top: 40px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) { .consult-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 32px; } }
.consult-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.consult-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.consult-icon svg { width: 26px; height: 26px; }
.consult-item p { font-size: 15.5px; color: #3c3f46; line-height: 1.6; max-width: 230px; }
.consult-btn { margin-top: 40px; display: flex; justify-content: center; margin-left: auto; margin-right: auto; width: fit-content; }

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-contacts { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-icon-telegram { color: #29A9EA; }
.footer-icon-telegram:hover { color: #4fc0ff; }
.footer-icon-whatsapp { color: #25D366; }
.footer-icon-whatsapp:hover { color: #3ee87f; }
.footer-icon-max { color: #007AFF; }
.footer-icon-max:hover { color: #3d9dff; }
.footer-icon-youtube { color: #FF0000; }
.footer-icon-youtube:hover { color: #ff4040; }
.footer-copy { color: #7c8089; font-size: 12.5px; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,11,14,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity:0; transform: translateY(14px) scale(.98);} to { opacity:1; transform:none; } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  background: var(--light-bg);
}
.modal-close:hover { color: var(--ink); }
.modal-close svg { width: 16px; height: 16px; }
.modal-box h3 { font-family:'Golos Text',sans-serif; font-size: 21px; margin-bottom: 8px; }
.modal-box > p { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #3c3f46; }
.form-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--border-light);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--light-bg);
}
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--border-light);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--light-bg);
  color: var(--dark);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233c3f46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.form-field select:focus { outline: 2px solid var(--red); outline-offset: 1px; background-color: #fff; }
.form-field .form-hint { font-size: 12px; color: var(--gray); margin-top: 5px; }
.form-field input:focus { outline: 2px solid var(--red); outline-offset: 1px; background: #fff; }
.modal-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 12px 0; }
.form-success.show { display: block; }
.form-success .check-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red-soft); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success .check-circle svg { width: 28px; height: 28px; }
.form-success h4 { font-family:'Golos Text',sans-serif; font-size: 18px; margin-bottom: 6px; }
.form-success p { color: var(--gray); font-size: 14px; }
/* ============ VIDEO SECTION ============ */
.video-lead {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ MODEL PRICE BADGE ============ */
.model-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(30,33,42,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 16px;
}
.model-price-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(228,39,44,0.18);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.model-price-icon svg { width: 18px; height: 18px; }
.model-price-text { display: flex; flex-direction: column; gap: 2px; }
.model-price-text strong { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.1; white-space: nowrap; }
.model-price-text span { color: #9a9da4; font-size: 11px; line-height: 1.3; }

/* ============ LIGHTBOX (увеличение фото модели по клику) ============ */
.model-photo-main[data-lightbox],
.model-photo-thumb[data-lightbox],
.gallery-main-img[data-lightbox] {
  cursor: zoom-in;
  transition: opacity .15s ease;
}
.model-photo-main[data-lightbox]:hover,
.model-photo-thumb[data-lightbox]:hover,
.gallery-main-img[data-lightbox]:hover {
  opacity: 0.92;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,11,14,0.92);
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}

/* Компактный бейдж выгоды на узких экранах */
@media (max-width: 480px) {
  .model-hero-actions, .hero-actions { gap: 10px; }
  .model-price-badge, .hero-stat { padding: 8px 12px; gap: 8px; }
  .model-price-icon, .hero-stat-icon { width: 28px; height: 28px; }
  .model-price-icon svg, .hero-stat-icon svg { width: 15px; height: 15px; }
  .model-price-text strong { font-size: 14px; }
  .model-price-text span { font-size: 9.5px; }
  .hero-stat-text { font-size: 10.5px; }
  .hero-stat-text strong { font-size: 11.5px; }
  .model-hero-actions .btn, .hero-actions .btn { padding: 12px 18px; font-size: 13.5px; }
}
