/* ============================================================
   LAYAN VERDE — Главный CSS
   Платформа: 1С-Bitrix (изолированный шаблон layan_verde)
   Стиль: Dark Luxury + природный акцент
   ============================================================ */

/* ---------- ПЕРЕМЕННЫЕ ---------- */
:root {
  --color-dark:    #1A2E22;
  --color-dark2:   #152618;
  --color-light:   #F5F0E8;
  --color-gold:    #C9A96E;
  --color-gold2:   #E0C48A;
  --color-white:   #FFFFFF;
  --color-text:    #2C2C2C;
  --color-gray:    #6B7280;
  --color-border:  rgba(201, 169, 110, 0.25);
  --color-error:   #E53E3E;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', Arial, sans-serif;
  --max-width:     1280px;
  --section-pad-v: 80px;
  --section-pad-h: 24px;
  --radius:        12px;
  --transition:    0.25s ease;
}

/* ---------- СБРОС ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-white); overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- СЕТКА ---------- */
.lv-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

/* ---------- ТИПОГРАФИКА ---------- */
.lv-h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}
.lv-h2--light { color: var(--color-white); }
.lv-h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}
.lv-h3--light { color: var(--color-white); }
.lv-body { font-size: 16px; line-height: 1.7; color: var(--color-text); }
.lv-body--light { color: rgba(255,255,255,0.82); }
.lv-label {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold);
}

/* ---------- КНОПКИ ---------- */
.lv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 6px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.lv-btn--gold {
  background: var(--color-gold); color: var(--color-dark);
}
.lv-btn--gold:hover { background: var(--color-gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); }
.lv-btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}
.lv-btn--outline:hover { background: rgba(201,169,110,0.1); }
.lv-btn--full { width: 100%; }
.lv-btn--dark { background: var(--color-dark); color: var(--color-white); }
.lv-btn--dark:hover { background: var(--color-dark2); }

/* ---------- ПИЛЮЛИ / БЕЙДЖИ ---------- */
.lv-pill {
  display: inline-block;
  border: 1px solid var(--color-gold);
  border-radius: 4px; padding: 4px 12px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--color-gold); background: rgba(26,46,34,0.5);
  margin-right: 6px; margin-bottom: 6px;
}
.lv-pill--light {
  background: rgba(201,169,110,0.12);
  color: var(--color-gold);
}

/* ---------- ФОРМЫ ---------- */
.lv-input {
  width: 100%; height: 48px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 6px; padding: 0 16px;
  background: rgba(255,255,255,0.07);
  color: var(--color-white); font-size: 15px;
  outline: none; transition: border-color var(--transition);
}
.lv-input::placeholder { color: rgba(255,255,255,0.4); }
.lv-input:focus { border-color: var(--color-gold); }
.lv-input--light {
  background: var(--color-white);
  color: var(--color-text);
  border-color: rgba(26,46,34,0.2);
}
.lv-input--light::placeholder { color: var(--color-gray); }
.lv-input--light:focus { border-color: var(--color-dark); }
.lv-form { display: flex; flex-direction: column; gap: 12px; }
.lv-form__privacy { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; }
.lv-form__privacy a { color: var(--color-gold); text-decoration: underline; }
.lv-form__privacy--dark { color: var(--color-gray); }
.lv-form__privacy--dark a { color: var(--color-dark); }
.lv-form__success {
  display: none; text-align: center; padding: 20px;
  color: var(--color-white); font-size: 16px; line-height: 1.6;
}
.lv-form__success.is-visible { display: block; }

/* ============================================================
   СЕКЦИЯ 0: STICKY HEADER
   ============================================================ */
.lv-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(26,46,34,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: box-shadow var(--transition);
}
.lv-header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.lv-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; padding: 0 var(--section-pad-h);
}
.lv-header__logo img { height: 36px; width: auto; }
.lv-header__badge {
  font-family: var(--font-body); font-size: 13px;
  color: var(--color-gold); letter-spacing: 0.04em;
}
.lv-header__actions { display: flex; align-items: center; gap: 12px; }
.lv-lang-switcher { display: flex; gap: 4px; }
.lv-lang-btn {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.35);
  color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.06em;
  transition: all var(--transition);
}
.lv-lang-btn.is-active,
.lv-lang-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.lv-header__wa {
  display: none; width: 36px; height: 36px;
  border-radius: 50%; background: #25D366;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lv-header__wa svg { width: 20px; height: 20px; fill: #fff; }

@media (max-width: 767px) {
  .lv-header { height: 56px; }
  .lv-header__badge { display: none; }
  .lv-header__cta { display: none; }
  .lv-header__wa { display: flex; }
}
@media (min-width: 768px) {
  .lv-header__wa { display: none; }
}

/* ============================================================
   СЕКЦИЯ 1: HERO
   ============================================================ */
.lv-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px; overflow: hidden;
  background: var(--color-dark);
}
.lv-hero__img-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
  width: 100%; height: 100%;
}
.lv-hero__img-wrap video.lv-hero__video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.lv-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.lv-hero__img-mobile {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 14s ease-out infinite alternate;
}
/* Десктоп: видео-фон; мобильные: статичное фото */
.lv-hero__video-desktop { display: block; }
.lv-hero__img-mobile    { display: none; }
@media (max-width: 768px) {
  
  .lv-hero__img-mobile    { display: block; }
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -1%); }
}
.lv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,46,34,0.72) 0%,
    rgba(26,46,34,0.45) 50%,
    rgba(26,46,34,0.25) 100%
  );
  z-index: 1;
}
.lv-hero__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 58% 42%;
  gap: 48px; align-items: center;
  padding: var(--section-pad-v) var(--section-pad-h);
  width: 100%; max-width: var(--max-width); margin: 0 auto;
}
.lv-hero__pills { margin-bottom: 20px; }
.lv-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 54px);
  color: var(--color-white); line-height: 1.2;
  margin-bottom: 18px;
}
.lv-hero__sub {
  font-family: var(--font-body); font-size: 18px;
  color: rgba(255,255,255,0.82); line-height: 1.65;
  margin-bottom: 24px;
}
.lv-hero__urgency {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 6px;
  font-size: 13px; color: #FCA5A5; font-weight: 600;
}
.lv-urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #EF4444; flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.lv-hero__form-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius); padding: 32px 28px;
}
.lv-hero__form-title {
  font-family: var(--font-heading); font-size: 22px;
  color: var(--color-white); text-align: center; margin-bottom: 20px;
}
.lv-hero__form-sub {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-align: center; margin-bottom: 16px; margin-top: -12px;
}

@media (max-width: 900px) {
  .lv-hero__content { grid-template-columns: 1fr; gap: 40px; }
  .lv-hero { min-height: auto; padding-bottom: 48px; }
}
@media (max-width: 767px) {
  .lv-hero__h1 { font-size: 28px; }
  .lv-hero__sub { font-size: 16px; }
  .lv-hero__form-card { padding: 24px 20px; }
}

/* ============================================================
   СЕКЦИЯ 2: NUMBERS BAR
   ============================================================ */
.lv-numbers { background: var(--color-light); padding: 52px var(--section-pad-h); }
.lv-numbers__inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-around; align-items: center;
  max-width: var(--max-width); margin: 0 auto; gap: 24px 0;
}
.lv-numbers__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 28px; flex: 1 1 16%;
  border-right: 1px solid rgba(26,46,34,0.12);
}
.lv-numbers__item:last-child { border-right: none; }
.lv-numbers__value {
  font-family: var(--font-heading); font-size: 40px; font-weight: 700;
  color: var(--color-dark); line-height: 1; margin-bottom: 8px;
}
.lv-numbers__item--urgent .lv-numbers__value { color: #DC2626; }
.lv-numbers__label {
  font-family: var(--font-body); font-size: 13px;
  color: var(--color-gray); line-height: 1.4; max-width: 120px;
}
@media (max-width: 900px) {
  .lv-numbers__item { flex: 1 1 30%; border-right: none; padding: 12px 0; }
  .lv-numbers__value { font-size: 32px; }
}
@media (max-width: 480px) {
  .lv-numbers__item { flex: 1 1 45%; }
  .lv-numbers__value { font-size: 28px; }
}

/* ============================================================
   СЕКЦИЯ 3: О ПРОЕКТЕ
   ============================================================ */
.lv-about { background: var(--color-dark); padding: var(--section-pad-v) 0; }
.lv-about__cols {
  display: grid; grid-template-columns: 55% 45%;
  gap: 60px; align-items: center;
  padding: 0 var(--section-pad-h); max-width: var(--max-width); margin: 0 auto 56px;
}
.lv-about__text .lv-label { margin-bottom: 12px; display: block; }
.lv-about__text .lv-h2 { margin-bottom: 20px; }
.lv-about__text .lv-body { margin-bottom: 16px; }
.lv-about__image { border-radius: var(--radius); overflow: hidden; }
.lv-about__image img { width: 100%; height: 420px; object-fit: cover; }
.lv-about__icons {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: var(--max-width);
  margin: 0 auto; padding: 0 var(--section-pad-h);
}
.lv-about__icon-card {
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center;
}
.lv-about__icon-card .lv-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: rgba(201,169,110,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lv-about__icon-card .lv-icon svg { width: 24px; height: 24px; stroke: var(--color-gold); fill: none; }
.lv-about__icon-title { color: var(--color-white); font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.lv-about__icon-text { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

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

/* ============================================================
   СЕКЦИЯ 4: FREEHOLD БЛОК
   ============================================================ */
.lv-freehold {
  background: var(--color-light);
  padding: var(--section-pad-v) var(--section-pad-h);
}
.lv-freehold__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.lv-freehold__label { display: block; margin-bottom: 12px; }
.lv-freehold__h2 { margin-bottom: 20px; }
.lv-freehold__body { margin-bottom: 24px; }
.lv-freehold__compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
.lv-freehold__col {
  border-radius: 8px; padding: 20px;
}
.lv-freehold__col--yes { background: var(--color-dark); }
.lv-freehold__col--no { background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.2); }
.lv-freehold__col-title { font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.lv-freehold__col--yes .lv-freehold__col-title { color: var(--color-gold); }
.lv-freehold__col--no .lv-freehold__col-title { color: #DC2626; }
.lv-freehold__col ul { display: flex; flex-direction: column; gap: 8px; }
.lv-freehold__col li { font-size: 14px; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.lv-freehold__col--yes li { color: rgba(255,255,255,0.85); }
.lv-freehold__col--yes li::before { content: '✓'; color: var(--color-gold); font-weight: 700; flex-shrink: 0; }
.lv-freehold__col--no li { color: #6B7280; }
.lv-freehold__col--no li::before { content: '✗'; color: #DC2626; font-weight: 700; flex-shrink: 0; }
.lv-freehold__visual { text-align: center; }
.lv-freehold__big-number {
  font-family: var(--font-heading); font-size: 96px; font-weight: 700;
  color: var(--color-dark); line-height: 1;
}
.lv-freehold__big-sub { font-size: 15px; color: var(--color-gray); margin-top: 8px; }
.lv-freehold__bar {
  width: 100%; height: 12px; background: rgba(26,46,34,0.1);
  border-radius: 99px; margin: 24px 0 8px; overflow: hidden;
}
.lv-freehold__bar-fill {
  height: 100%; width: 70%; background: #DC2626;
  border-radius: 99px;
  animation: barGrow 1.2s ease-out forwards;
}
@keyframes barGrow { from{width:0} to{width:70%} }
.lv-freehold__bar-labels {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--color-gray);
}

@media (max-width: 900px) {
  .lv-freehold__inner { grid-template-columns: 1fr; }
  .lv-freehold__big-number { font-size: 64px; }
}

/* ============================================================
   СЕКЦИЯ 5: КЕЙСЫ ИНВЕСТОРОВ
   ============================================================ */
.lv-cases { background: var(--color-dark); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-cases__head {
  max-width: var(--max-width); margin: 0 auto 48px; text-align: center;
}
.lv-cases__head .lv-label { display: block; margin-bottom: 12px; }
.lv-cases__head .lv-h2 { margin-bottom: 8px; }
.lv-cases__note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.lv-cases__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.lv-case {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius); padding: 32px 28px;
}
.lv-case__type { color: var(--color-gold); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.lv-case__name { color: var(--color-white); font-family: var(--font-heading); font-size: 20px; margin-bottom: 20px; line-height: 1.3; }
.lv-case__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; }
.lv-case__row:last-of-type { border-bottom: none; }
.lv-case__row-label { color: rgba(255,255,255,0.5); }
.lv-case__row-val { color: var(--color-white); font-weight: 600; }
.lv-case__profit {
  margin-top: 20px; padding: 14px;
  background: rgba(201,169,110,0.1); border-radius: 8px;
  text-align: center;
}
.lv-case__profit-num { font-family: var(--font-heading); font-size: 28px; color: var(--color-gold); font-weight: 700; }
.lv-case__profit-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

@media (max-width: 900px) { .lv-cases__grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1100px) { .lv-cases__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   СЕКЦИЯ 6: ТИПЫ ЮНИТОВ / ПЛАНИРОВКИ
   ============================================================ */
.lv-units { background: var(--color-light); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-units__head { max-width: var(--max-width); margin: 0 auto 40px; text-align: center; }
.lv-units__head .lv-label { display: block; margin-bottom: 12px; }
.lv-units__tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px; max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.lv-tab {
  padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(26,46,34,0.2); color: var(--color-gray);
  transition: all var(--transition); background: var(--color-white);
}
.lv-tab.is-active, .lv-tab:hover { border-color: var(--color-dark); color: var(--color-dark); background: rgba(26,46,34,0.06); }
.lv-units__panel { display: none; max-width: var(--max-width); margin: 0 auto; }
.lv-units__panel.is-active { display: grid; grid-template-columns: 50% 50%; gap: 40px; align-items: center; }
.lv-unit__image { border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.lv-unit__image img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.lv-unit__plan { height: auto !important; max-height: 280px; object-fit: contain; background: var(--color-light); padding: 12px; }
.lv-unit__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.lv-unit__spec { background: var(--color-white); border-radius: 8px; padding: 16px; }
.lv-unit__spec-label { font-size: 12px; color: var(--color-gray); margin-bottom: 4px; }
.lv-unit__spec-val { font-family: var(--font-heading); font-size: 22px; color: var(--color-dark); font-weight: 700; }
.lv-unit__price-badge {
  display: inline-block; background: var(--color-dark);
  color: var(--color-white); border-radius: 8px;
  padding: 16px 24px; margin: 8px 0 24px;
}
.lv-unit__price-from { font-size: 13px; color: rgba(255,255,255,0.6); }
.lv-unit__price-val { font-family: var(--font-heading); font-size: 28px; color: var(--color-gold); font-weight: 700; }
.lv-units__urgency {
  display: flex; align-items: center; gap: 8px;
  background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.2);
  border-radius: 6px; padding: 10px 16px; font-size: 13px; color: #DC2626; font-weight: 600;
  max-width: var(--max-width); margin: 32px auto 0;
}

@media (max-width: 900px) {
  .lv-units__panel.is-active { grid-template-columns: 1fr; }
  .lv-unit__image img { height: 260px; }
}

/* ============================================================
   СЕКЦИЯ 7: КАЛЬКУЛЯТОР ROI
   ============================================================ */
.lv-calc {
  background: var(--color-dark); padding: var(--section-pad-v) var(--section-pad-h);
}
.lv-calc__inner { max-width: 900px; margin: 0 auto; }
.lv-calc__head { text-align: center; margin-bottom: 40px; }
.lv-calc__head .lv-label { display: block; margin-bottom: 12px; }
.lv-calc__body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius); padding: 40px;
}
.lv-calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-bottom: 32px; }
.lv-calc__field label { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 500; }
.lv-calc__select {
  width: 100%; height: 48px; padding: 0 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,169,110,0.3);
  border-radius: 6px; color: var(--color-white); font-size: 15px; outline: none;
  -webkit-appearance: none; cursor: pointer;
}
.lv-calc__select:focus { border-color: var(--color-gold); }
.lv-calc__results {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lv-calc__result-card { text-align: center; padding: 20px; background: rgba(201,169,110,0.08); border-radius: 8px; }
.lv-calc__result-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.lv-calc__result-val { font-family: var(--font-heading); font-size: 26px; color: var(--color-gold); font-weight: 700; }

@media (max-width: 767px) {
  .lv-calc__body { padding: 24px 20px; }
  .lv-calc__row { grid-template-columns: 1fr; gap: 20px; }
  .lv-calc__results { grid-template-columns: 1fr; }
}

/* ============================================================
   СЕКЦИЯ 8: УСЛОВИЯ ПОКУПКИ
   ============================================================ */
.lv-payment { background: var(--color-light); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-payment__inner { max-width: var(--max-width); margin: 0 auto; }
.lv-payment__head { text-align: center; margin-bottom: 48px; }
.lv-payment__head .lv-label { display: block; margin-bottom: 12px; }
.lv-payment__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lv-payment__card {
  background: var(--color-white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: 0 2px 16px rgba(26,46,34,0.07);
  position: relative; border: 1.5px solid transparent;
}
.lv-payment__card--popular {
  border-color: var(--color-gold);
}
.lv-payment__popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-gold); color: var(--color-dark);
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 99px; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.lv-payment__card-title { font-family: var(--font-heading); font-size: 22px; color: var(--color-dark); margin-bottom: 8px; }
.lv-payment__card-sub { font-size: 14px; color: var(--color-gray); margin-bottom: 24px; }
.lv-payment__steps { display: flex; flex-direction: column; gap: 12px; }
.lv-payment__step { display: flex; gap: 12px; align-items: flex-start; }
.lv-payment__step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-dark); color: var(--color-white);
  font-size: 12px; font-weight: 700; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.lv-payment__step-text { font-size: 14px; line-height: 1.6; color: var(--color-text); }
.lv-payment__step-text strong { color: var(--color-dark); }

@media (max-width: 900px) { .lv-payment__grid { grid-template-columns: 1fr; } }

/* ============================================================
   СЕКЦИЯ 9: ИНФРАСТРУКТУРА
   ============================================================ */
.lv-infra {
  background: var(--color-dark);
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
}
.lv-infra::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/amenities-grid.jpg') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.lv-infra__head { max-width: var(--max-width); margin: 0 auto 48px; text-align: center; }
.lv-infra__head .lv-label { display: block; margin-bottom: 12px; }
.lv-infra__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.lv-infra__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.lv-infra__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.lv-infra__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lv-infra__item:hover .lv-infra__photo img { transform: scale(1.04); }
.lv-infra__title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  padding: 16px 16px 0;
}
.lv-infra__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding: 0 16px 18px;
}

@media (max-width: 900px) { .lv-infra__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .lv-infra__grid { grid-template-columns: 1fr; } }

/* ============================================================
   СЕКЦИЯ 10: SMART HOME + DUSIT
   ============================================================ */
.lv-smart { background: var(--color-light); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-smart__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.lv-smart__label { display: block; margin-bottom: 12px; }
.lv-smart__h2 { margin-bottom: 20px; }
.lv-smart__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.lv-smart__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.lv-smart__list li::before { content: '✓'; color: var(--color-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lv-smart__image { border-radius: var(--radius); overflow: hidden; }
.lv-smart__image img { width: 100%; height: 400px; object-fit: cover; }

.lv-dusit { background: var(--color-dark); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-dusit__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.lv-dusit__label { display: block; margin-bottom: 12px; }
.lv-dusit__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.lv-dusit__stat { text-align: center; }
.lv-dusit__stat-val { font-family: var(--font-heading); font-size: 36px; color: var(--color-gold); font-weight: 700; }
.lv-dusit__stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.lv-dusit__image { border-radius: var(--radius); overflow: hidden; }
.lv-dusit__image img { width: 100%; height: 380px; object-fit: cover; }

@media (max-width: 900px) {
  .lv-smart__inner, .lv-dusit__inner { grid-template-columns: 1fr; gap: 32px; }
  .lv-smart__image img, .lv-dusit__image img { height: 260px; }
}

/* ============================================================
   СЕКЦИЯ 11: FAQ
   ============================================================ */
.lv-faq { background: var(--color-light); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-faq__inner { max-width: 800px; margin: 0 auto; }
.lv-faq__head { text-align: center; margin-bottom: 40px; }
.lv-faq__head .lv-label { display: block; margin-bottom: 12px; }
.lv-faq__item {
  border-bottom: 1px solid rgba(26,46,34,0.1); overflow: hidden;
}
.lv-faq__q {
  width: 100%; text-align: left; padding: 20px 0;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--color-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer;
}
.lv-faq__icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid rgba(26,46,34,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
  font-size: 16px; color: var(--color-dark);
}
.lv-faq__item.is-open .lv-faq__icon { transform: rotate(45deg); border-color: var(--color-dark); }
.lv-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.lv-faq__item.is-open .lv-faq__a { max-height: 400px; }
.lv-faq__a-inner { padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: var(--color-gray); }

/* ============================================================
   СЕКЦИЯ 12: ФИНАЛЬНАЯ ФОРМА ЗАХВАТА
   ============================================================ */
.lv-cta { background: var(--color-dark); padding: var(--section-pad-v) var(--section-pad-h); }
.lv-cta__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.lv-cta__label { display: block; margin-bottom: 12px; }
.lv-cta__h2 { color: var(--color-white); margin-bottom: 16px; }
.lv-cta__sub { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.lv-cta__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius); padding: 40px 36px;
}
.lv-cta__form .lv-form { gap: 14px; }

/* ============================================================
   ФУТЕР
   ============================================================ */
.lv-footer {
  background: var(--color-dark2); padding: 40px var(--section-pad-h);
  border-top: 1px solid rgba(201,169,110,0.15);
}
.lv-footer__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.lv-footer__copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.lv-footer__links { display: flex; gap: 20px; }
.lv-footer__links a { font-size: 13px; color: rgba(255,255,255,0.4); }
.lv-footer__links a:hover { color: var(--color-gold); }

/* ============================================================
   МОДАЛЬНОЕ ОКНО
   ============================================================ */
.lv-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.lv-modal.is-open { opacity: 1; pointer-events: all; }
.lv-modal__box {
  background: var(--color-dark); border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius); padding: 40px 36px; width: 100%; max-width: 460px;
  position: relative;
  transform: translateY(20px); transition: transform 0.25s ease;
}
.lv-modal.is-open .lv-modal__box { transform: translateY(0); }
.lv-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lv-modal__close:hover { background: rgba(255,255,255,0.15); }
.lv-modal__title { font-family: var(--font-heading); font-size: 22px; color: var(--color-white); margin-bottom: 8px; }
.lv-modal__sub { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

/* ============================================================
   STICKY WHATSAPP
   ============================================================ */
.lv-sticky-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
.lv-sticky-wa svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ============================================================
   ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ
   ============================================================ */
.lv-section-divider {
  height: 1px; background: rgba(201,169,110,0.15);
  max-width: var(--max-width); margin: 0 auto;
}
.lv-text-center { text-align: center; }
.lv-mt-4  { margin-top: 16px; }
.lv-mt-6  { margin-top: 24px; }
.lv-mt-8  { margin-top: 32px; }
.lv-mb-4  { margin-bottom: 16px; }
.lv-mb-6  { margin-bottom: 24px; }
.lv-mb-8  { margin-bottom: 32px; }
.lv-hidden { display: none !important; }

/* Анимация появления при скролле */
.lv-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lv-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   КВИЗ — ВСТРОЕННАЯ СЕКЦИЯ
   ============================================================ */
.lv-quiz {
  background: var(--color-dark);
  padding: var(--section-pad-v) var(--section-pad-h);
}
.lv-quiz__inner {
  max-width: 860px; margin: 0 auto;
  position: relative;
}

/* Прогресс */
.lv-quiz__progress {
  display: flex; align-items: center; gap: 16px; margin-bottom: 40px;
}
.lv-quiz__progress-bar {
  flex: 1; height: 5px;
  background: rgba(255,255,255,0.12); border-radius: 99px; overflow: hidden;
}
.lv-quiz__progress-fill {
  height: 100%; background: var(--color-gold); border-radius: 99px;
  transition: width 0.4s ease; width: 25%;
}
.lv-quiz__progress-text {
  font-size: 13px; color: rgba(255,255,255,0.5); white-space: nowrap; font-weight: 600;
}

/* Шаги */
.lv-quiz__step { display: none; }
.lv-quiz__step.is-active { display: block; animation: quizFadeIn 0.35s ease; }
@keyframes quizFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* Заголовок */
.lv-quiz__header { text-align: center; margin-bottom: 32px; }
.lv-quiz__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: var(--color-white);
  line-height: 1.25; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.lv-quiz__sub {
  font-size: 18px; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 4px;
}
.lv-quiz__hint {
  font-size: 13px; color: var(--color-gold); margin-top: 6px;
}

/* Карточки 2x2 */
.lv-quiz__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
.lv-quiz__card {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer; background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.lv-quiz__card input { position: absolute; opacity: 0; pointer-events: none; }
.lv-quiz__card img {
  width: 100%; height: 190px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.lv-quiz__card:hover img { transform: scale(1.04); }
.lv-quiz__card:hover { border-color: rgba(201,169,110,0.5); }
.lv-quiz__card.is-selected { border-color: var(--color-gold); transform: translateY(-2px); }
.lv-quiz__card.is-selected .lv-quiz__card-check { background: var(--color-gold); border-color: var(--color-gold); }
.lv-quiz__card.is-selected .lv-quiz__card-check svg polyline { stroke: var(--color-dark); }

.lv-quiz__card-check {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s ease;
}
.lv-quiz__card-check svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,0.5); }

.lv-quiz__card-label {
  padding: 10px 12px; font-size: 13px; font-weight: 600;
  color: var(--color-white); text-align: center; line-height: 1.4;
  background: rgba(26,46,34,0.7);
}
.lv-quiz__badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--color-gold); color: var(--color-dark);
  font-size: 10px; font-weight: 800; padding: 3px 9px;
  border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase;
}
.lv-quiz__badge--inline {
  position: static; margin-left: auto; margin-right: 8px;
  font-size: 9px; display: inline-block; vertical-align: middle;
}

/* Бюджет (шаг 3) */
.lv-quiz__budget-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.lv-quiz__budget-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(201,169,110,0.2);
  cursor: pointer; font-size: 16px; color: var(--color-white); font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.lv-quiz__budget-item input { position: absolute; opacity: 0; pointer-events: none; }
.lv-quiz__budget-item:hover { border-color: rgba(201,169,110,0.5); }
.lv-quiz__budget-item.is-selected { border-color: var(--color-gold); background: rgba(201,169,110,0.1); }
.lv-quiz__budget-item.is-selected .lv-quiz__budget-check { background: var(--color-gold); border-color: var(--color-gold); }
.lv-quiz__budget-item.is-selected .lv-quiz__budget-check svg polyline { stroke: var(--color-dark); }
.lv-quiz__budget-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(201,169,110,0.4);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.lv-quiz__budget-check svg { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,0.3); }

/* Чекбоксы (шаг 4) */
.lv-quiz__check-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.lv-quiz__check-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(201,169,110,0.2);
  cursor: pointer; font-size: 15px; color: var(--color-white);
  transition: border-color 0.2s, background 0.2s;
}
.lv-quiz__check-item input { position: absolute; opacity: 0; pointer-events: none; }
.lv-quiz__check-item:hover { border-color: rgba(201,169,110,0.5); }
.lv-quiz__check-item.is-selected { border-color: var(--color-gold); background: rgba(201,169,110,0.1); }
.lv-quiz__check-item.is-selected .lv-quiz__checkmark { background: var(--color-gold); border-color: var(--color-gold); }
.lv-quiz__check-item.is-selected .lv-quiz__checkmark svg polyline { stroke: var(--color-dark); }
.lv-quiz__checkmark {
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(201,169,110,0.4);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.lv-quiz__checkmark svg { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,0.3); }
.lv-quiz__em {
  font-style: normal; font-size: 10px; font-weight: 800;
  background: var(--color-gold); color: var(--color-dark);
  padding: 2px 7px; border-radius: 4px; margin-left: 8px;
  vertical-align: middle; letter-spacing: 0.05em; text-transform: uppercase;
}

/* Кнопки навигации */
.lv-quiz__next {
  width: 100%; padding: 18px; font-size: 17px; font-weight: 700;
  letter-spacing: 0.04em; border-radius: 10px; margin-bottom: 12px;
}
.lv-quiz__back {
  display: block; width: 100%; text-align: center;
  color: rgba(255,255,255,0.4); font-size: 14px; padding: 8px; background: none; border: none;
  cursor: pointer; transition: color 0.2s;
}
.lv-quiz__back:hover { color: rgba(255,255,255,0.7); }

/* Шаг 5: контактная форма */
.lv-quiz__contact-title {
  font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 30px);
  color: var(--color-white); margin-bottom: 12px; line-height: 1.3;
}
.lv-quiz__form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.lv-input--quiz {
  background: rgba(255,255,255,0.09); border-color: rgba(201,169,110,0.4);
  color: var(--color-white);
}
.lv-quiz__messenger { margin: 4px 0 4px; }
.lv-quiz__messenger-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.lv-quiz__messenger-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.lv-quiz__msn-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(201,169,110,0.25);
  font-size: 14px; color: var(--color-white); transition: all 0.2s;
}
.lv-quiz__msn-opt input { display: none; }
.lv-quiz__msn-opt:has(input:checked) { border-color: var(--color-gold); background: rgba(201,169,110,0.12); color: var(--color-gold); }
.lv-quiz__submit { padding: 18px; font-size: 17px; font-weight: 700; letter-spacing: 0.04em; border-radius: 10px; }

/* Thank You */
.lv-quiz__success { display: none; text-align: center; padding: 32px 20px; }
.lv-quiz__success.is-visible { display: block; animation: quizFadeIn 0.4s ease; }
.lv-quiz__success-icon { font-size: 52px; margin-bottom: 16px; }
.lv-quiz__success-title { font-family: var(--font-heading); font-size: 26px; color: var(--color-gold); margin-bottom: 16px; }
.lv-quiz__success-text { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; }

@media (max-width: 600px) {
  .lv-quiz__cards { grid-template-columns: 1fr; }
  .lv-quiz__card img { height: 160px; }
  .lv-quiz__card-check { bottom: 42px; }
}

/* ============================================================
   ФОРМЫ ЗАХВАТА (#1 — золотой фон, #2 — тёмный)
   ============================================================ */
.lv-capture { padding: 72px var(--section-pad-h); }
.lv-capture--gold { background: var(--color-dark); border-top: 1px solid rgba(201,169,110,0.15); border-bottom: 1px solid rgba(201,169,110,0.15); }
.lv-capture--dark { background: var(--color-dark2); }
.lv-capture__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.lv-capture__inner--centered {
  grid-template-columns: 1fr; text-align: center; max-width: 680px;
}
.lv-capture__title {
  font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px);
  color: var(--color-white); line-height: 1.25; margin: 12px 0 20px;
}
.lv-capture__title--center { text-align: center; }
.lv-capture__desc { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.lv-capture__list { display: flex; flex-direction: column; gap: 10px; }
.lv-capture__list li { font-size: 15px; color: rgba(255,255,255,0.8); display: flex; gap: 8px; align-items: flex-start; }
.lv-capture__form-wrap .lv-form { gap: 12px; }
.lv-capture__form--inline {
  display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto;
}
.lv-capture__form--inline .lv-input { flex: 1 1 200px; }
.lv-capture__form--inline .lv-btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 900px) {
  .lv-capture__inner { grid-template-columns: 1fr; gap: 32px; }
  .lv-capture__form--inline { flex-direction: column; }
  .lv-capture__form--inline .lv-btn { width: 100%; }
}

/* ============================================================
   ГАЛЕРЕЯ КОМПЛЕКСА
   ============================================================ */
.lv-gallery { padding: 0; background: var(--color-dark2); }
.lv-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px;
  gap: 3px;
  max-width: 100%;
}
.lv-gallery__main { overflow: hidden; }
.lv-gallery__side { display: flex; flex-direction: column; gap: 3px; height: 300px; }
.lv-gallery__grid img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.lv-gallery__main img { height: 300px; }
.lv-gallery__side img { flex: 1; min-height: 0; }
.lv-gallery__grid > *:hover img { transform: scale(1.03); }
.lv-gallery__grid > * { overflow: hidden; }

@media (max-width: 768px) {
  .lv-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 140px;
  }
  .lv-gallery__main { grid-column: 1 / -1; grid-row: 1; }
  .lv-gallery__main img { height: 200px; }
  .lv-gallery__side { flex-direction: row; height: 140px; }
  .lv-gallery__side img { height: 140px; flex: 1; min-height: unset; }
  
  .lv-hero__form-card{
	  transform: scale(0.6);
	  margin-top: -100px;
  }
  .lv-hero__content{
	  padding: 10px 40px;
  }
  .lv-hero__overlay{
	  background: none;
  }
	.lv-hero__img-mobile {
	  margin-top: -50px;
	}
	  
}
