﻿:root{
  --accent:#ffd66b;
  --accent-strong:#ffb020;
  --accent-deep:#4a3410;
  --ink:#102016;
  --muted:#526156;
  --accent-rgb:255,214,107;
  --accent-strong-rgb:255,176,32;
  --dark-solid:#2b1f18;
  --dark-start:#1b130f;
  --dark-end:#6c4737;
  --dark-rgb:43,31,24;
  --ui-font:"Manrope","Inter","Segoe UI",Roboto,Arial,sans-serif;
  --theme-green-soft:#7be28c;
  --theme-green-soft-rgb:123,226,140;
  --theme-green:#5ca36a;
  --theme-green-rgb:92,163,106;
  --theme-green-strong:#276536;
  --theme-green-strong-rgb:39,101,54;
  --theme-green-deep:#2c5435;
  --theme-green-deep-rgb:44,84,53;
  --theme-green-ink:#102016;
  --theme-green-ink-rgb:16,32,22;
  --theme-surface-1:#f4f8f0;
  --theme-surface-2:#eef4ea;
  --theme-surface-3:#eaf5e7;
  --theme-surface-4:#dff3dd;
}

body,
input,
button,
textarea,
select{
  font-family:var(--ui-font);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body{
  letter-spacing:-.01em;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb),.16), transparent 28%),
    radial-gradient(circle at top right, rgba(26,115,232,.1), transparent 24%),
    linear-gradient(180deg, var(--theme-surface-1) 0%, var(--theme-surface-2) 100%);
}

@keyframes pulseGlowPalette{
  0%,100%{
    box-shadow:0 18px 45px rgba(var(--theme-green-soft-rgb),.24);
  }
  50%{
    box-shadow:0 26px 70px rgba(var(--theme-green-soft-rgb),.42);
  }
}

.logo span,
.eyebrow{
  color:var(--theme-green);
}

.scroll-progress{
  background:linear-gradient(90deg, var(--theme-green-soft), var(--theme-green), #1a73e8);
  box-shadow:0 0 18px rgba(var(--theme-green-soft-rgb),.7);
}

.nav a::after{
  background:var(--theme-green);
}

.hero__bg {
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.04),
      rgba(14, 18, 24, 0.46)
    ),
    url('../image.php?src=images%2Fmain_block_1.png&w=1920&h=1080&fit=cover&q=74&fm=webp') center / cover no-repeat;
  filter:brightness(.84) blur(3px);
}

.hero__bg::after{
  background:linear-gradient(transparent, var(--theme-surface-1));
}

.btn.primary{
  animation:pulseGlowPalette 3s ease-in-out infinite;
}

.cards article:hover,
.finish-grid article:hover,
.feature-row div:hover,
.house:hover,
.gallery figure:hover,
.metric-grid div:hover,
.calculator:hover{
  box-shadow:inherit;
  border-color:inherit;
}

.filter.active,
.filter:hover{
  background:var(--theme-green-ink);
  border-color:var(--theme-green-ink);
}

main{
  display:flex;
  flex-direction:column;
}

main > *{
  order:50;
}

@supports (content-visibility:auto){
  .leadbox,
  .final-cta,
  .footer{
    content-visibility:auto;
    contain-intrinsic-size:900px;
  }
}

#hero{order:1}
.company-video-section{order:2}
.hero-urgent-wrap{order:2}
#benefits-top{order:3}
#benefits{order:3}
#houses{order:4}
.leadbox{order:5}
#quiz{order:6}
.section.dark:not(#mortgage):not(#location){order:7}
#finish{order:8}
#mortgage{order:9}
#communications{order:10}
#comfort{order:12}
#infra{
  order:13;
  scroll-margin-top:120px;
}
#plan{order:15}
#location{order:16}
#calc{order:17}
#faq{order:18}
#team{order:19}
.final-cta{order:20}

#panorama{
  display:none !important;
}

#hero{
  position:relative;
  overflow:hidden;
}

#hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:300px;
  pointer-events:none;
  z-index:0;
  background:
    linear-gradient(180deg, rgba(13,16,22,0) 0%, rgba(18,22,28,.2) 28%, rgba(16,20,27,.64) 58%, rgba(12,15,21,.92) 100%);
}

#hero .eyebrow{
  color:rgba(255,255,255,.9);
  text-shadow:0 2px 18px rgba(0,0,0,.28);
}

#hero .hero__content,
#hero .hero-card{
  position:relative;
  z-index:2;
}

.hero-urgent-wrap{
  position:relative;
  padding:0 0 18px;
  z-index:3;
}

.hero-urgent-wrap .container{
  width:100%;
}

.topbar{
  height:82px;
  padding:0 16px 0 20px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.2)),
    rgba(245,247,243,.34);
  border:1px solid rgba(255,255,255,.38);
  box-shadow:
    0 26px 70px rgba(16,32,22,.16),
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(14px) saturate(1.08);
}

.topbar::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08));
  pointer-events:none;
}

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

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  min-width:0;
}

.logo__mark{
  width:auto;
  height:42px;
  max-width:min(172px,28vw);
  object-fit:contain;
  display:block;
}

.logo::before{
  content:none;
}

.nav{
  margin-left:18px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  gap:4px;
}

.nav a{
  padding:9px 11px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#2a392f;
  transition:.25s;
  white-space:nowrap;
}

.nav a:hover{
  background:rgba(255,255,255,.45);
  color:#102016;
}

.header-cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.phone{
  padding:0 20px;
  font-size:14px;
  white-space:nowrap;
}

.call-btn{
  padding:0 24px;
  white-space:nowrap;
  font-size:14px;
}

.hero h1{
  font-size:clamp(30px,4.8vw,46px);
  line-height:.96;
  letter-spacing:-.06em;
  max-width:860px;
}

.lead{
  font-size:clamp(17px,1.6vw,21px);
  line-height:1.52;
}

.hero__actions{
  max-width:720px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__actions .btn,
.hero__actions .messenger-btn{
  flex:1 1 280px;
  justify-content:center;
  min-height:58px;
}

.hero-offer{
  position:relative;
  margin-top:22px;
  max-width:760px;
  padding:16px 20px;
  border:1px solid rgba(255,255,255,.32);
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.08)),
    rgba(255,255,255,.12);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  border-radius:28px;
  box-shadow:
    0 20px 60px rgba(7,16,12,.18),
    inset 0 1px 0 rgba(255,255,255,.26);
  overflow:hidden;
}

.hero-offer::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(255,255,255,.26), transparent 42%, rgba(255,255,255,.08));
  pointer-events:none;
}

.hero-offer b{
  position:relative;
  display:block;
  font-size:20px;
  color:#fff;
  margin-bottom:6px;
  text-shadow:0 1px 12px rgba(6,14,11,.16);
}

.hero-offer p{
  position:relative;
  margin:0;
  color:rgba(255,255,255,.88);
  line-height:1.55;
}

.messenger-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 24px;
  text-align:center;
  line-height:1.2;
}

.messenger-btn__logo{
  width:24px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

.messenger-btn span{
  display:inline-block;
}

.stats{
  max-width:780px;
  gap:16px;
}

.stats div{
  background:linear-gradient(160deg, rgba(var(--theme-green-ink-rgb),.84), rgba(var(--theme-green-deep-rgb),.7));
  border:1px solid rgba(var(--accent-rgb),.34);
  box-shadow:0 24px 60px rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
}

.hero-card{
  position:relative;
  background:
    linear-gradient(155deg, rgba(255,255,255,.22), rgba(255,255,255,.1)),
    rgba(255,255,255,.1);
  box-shadow:
    0 28px 80px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.28);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(145deg, rgba(255,255,255,.24), transparent 52%);
  pointer-events:none;
}

.stats b,
.hero-card b,
.hero-card span{
  color:#fff;
  position:relative;
  z-index:1;
}

.stats span,
.hero-card p{
  color:rgba(255,255,255,.9);
  position:relative;
  z-index:1;
}

.company-video-section{
  padding-top:24px;
  padding-bottom:20px;
}

.company-video-card{
  display:grid;
  grid-template-columns:minmax(280px,.86fr) minmax(0,1.34fr);
  gap:16px;
  padding:18px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,242,.95));
  border:1px solid rgba(16,32,22,.08);
  box-shadow:0 28px 80px rgba(16,32,22,.08);
}

.company-video-card__content{
  display:grid;
  align-content:center;
  gap:16px;
  padding:24px 26px;
  border-radius:28px;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb),.14), transparent 28%),
    linear-gradient(180deg, #fff, #f7f8f4);
}

.company-video-card__content h2{
  margin:0;
  font-size:clamp(28px,2.8vw,42px);
  line-height:.98;
  letter-spacing:-.05em;
  color:#102016;
}

.company-video-card__content p:not(.eyebrow){
  margin:0;
  color:#526156;
  font-size:17px;
  line-height:1.65;
}

.company-video-card__content .btn{
  width:max-content;
  min-width:0;
}

.company-video-card__media{
  position:relative;
  min-height:480px;
  border:0;
  padding:28px;
  border-radius:30px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  text-align:left;
  color:#fff;
  cursor:pointer;
  background:
    linear-gradient(180deg, rgba(6,18,12,.12), rgba(6,18,12,.24)),
    url('../image.php?src=images%2Fvillage-gallery%2F8.jpg&w=1280&h=720&fit=cover&q=74&fm=webp') center / cover no-repeat;
  box-shadow:0 24px 70px rgba(16,32,22,.14);
}

.company-video-card__media::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,18,28,.08) 0%, rgba(10,18,28,.18) 36%, rgba(10,18,28,.62) 100%);
}

.company-video-card__media > *{
  position:relative;
  z-index:1;
}

.company-video-card__tag{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#2a5b8e;
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.company-video-card__title{
  max-width:520px;
  font-size:clamp(38px,4.6vw,66px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
  text-shadow:0 2px 20px rgba(0,0,0,.24);
}

.company-video-card__play{
  width:88px;
  height:88px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  color:#102016;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.company-video-card__play svg{
  width:32px;
  height:32px;
  transform:translateX(2px);
}

.company-video-card__media video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:2;
  background:#000;
}

.benefits-top{
  position:relative;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb),.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,242,.96));
}

.benefits-top::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(16,32,22,.08), transparent);
}

.benefits-top .container{
  position:relative;
  z-index:1;
}

.benefits-top__lead{
  max-width:760px;
  margin:0 0 22px;
  font-size:18px;
  line-height:1.65;
}

.benefits-top__grid{
  margin-top:0;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:11px;
}

.benefits-top__grid article{
  --benefits-card-bg:url('../image.php?src=images%2Fmain_block_1.png&w=640&h=520&fit=cover&q=62&fm=webp');
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:252px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:14px;
  padding:22px 18px !important;
  border-radius:20px;
  border:0;
  box-shadow:0 18px 40px rgba(10,18,15,.08);
}

.benefits-top__grid article::before{
  content:"";
  position:absolute;
  inset:-14px;
  z-index:0;
  background:
    linear-gradient(171deg, rgb(70 168 63 / 4%), rgb(2 36 5)),
    var(--benefits-card-bg) center / cover no-repeat;
  filter:blur(2px) brightness(.62) saturate(.7);
  transform:scale(1.08);
}

.benefits-top__grid article:nth-child(1){
  --benefits-card-bg:url('../image.php?src=images%2F2_block_1.png&w=640&h=520&fit=cover&q=62&fm=webp');
}

.benefits-top__grid article:nth-child(2){
  --benefits-card-bg:url('../image.php?src=images%2F2_block_2.png&w=640&h=520&fit=cover&q=62&fm=webp');
}

.benefits-top__grid article:nth-child(3){
  --benefits-card-bg:url('../image.php?src=images%2F2_block_3.png&w=640&h=520&fit=cover&q=62&fm=webp');
}

.benefits-top__grid article:nth-child(4){
  --benefits-card-bg:url('../image.php?src=images%2F2_block_4.png&w=640&h=520&fit=cover&q=62&fm=webp');
}

.benefits-top__grid article:nth-child(5){
  --benefits-card-bg:url('../image.php?src=images%2F2_block_5.png&w=640&h=520&fit=cover&q=62&fm=webp');
}

.benefits-top__grid article > *{
  position:relative;
  z-index:1;
}

.benefits-top__grid article h3{
  margin:0;
  font-size:clamp(21px,1.55vw,26px);
  line-height:1.06;
  letter-spacing:-.04em;
  color:#fff;
}

.benefits-top__grid article p{
  margin:0;
  max-width:none;
  font-size:14px;
  line-height:1.42;
  color:rgba(255,255,255,.76);
}

.benefits-top__icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.96);
  color:#3f775f;
  flex:0 0 auto;
}

.benefits-top__icon svg{
  width:24px;
  height:24px;
  stroke:rgb(52 68 55);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.hero-urgent-call{
  position:relative;
  z-index:1;
  width:100%;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.95fr);
  gap:18px;
  align-items:center;
  padding:20px 22px;
  border-radius:30px 30px 0 0;
  border:1px solid rgba(var(--accent-rgb),.22);
  border-bottom:0;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,243,232,.96));
  box-shadow:0 24px 70px rgba(9,25,14,.14);
}

.hero-urgent-call b{
  display:block;
  margin-bottom:4px;
  color:#102016;
  font-size:20px;
}

.hero-urgent-call p{
  margin:0;
  color:#526156;
  line-height:1.5;
}

.hero-urgent-call__form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
}

.hero-urgent-call__form input{
  width:100%;
  border:1px solid #dfe7d8;
  border-radius:999px;
  padding:16px 18px;
  font-size:16px;
  background:#fff;
  color:#102016;
}

.hero-urgent-call__form .btn{
  min-width:220px;
  justify-content:center;
}

.btn,
.messenger-btn,
.phone,
.mobile-sheet__action{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:64px;
  padding:0 28px;
  border-radius:999px;
  border:1px solid transparent;
  overflow:hidden;
  font-weight:800;
  letter-spacing:-.02em;
  text-decoration:none;
  box-shadow:
    0 14px 30px rgba(0,0,0,.12),
    0 4px 10px rgba(0,0,0,.05);
}

.btn::before,
.messenger-btn::before,
.phone::before,
.mobile-sheet__action::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform:skewX(-25deg);
  transition:left .8s ease;
  pointer-events:none;
}

.btn::after,
.messenger-btn::after,
.phone::after,
.mobile-sheet__action::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,.72),
    inset 0 -3px 4px rgba(0,0,0,.08);
  pointer-events:none;
}

.btn:hover::before,
.messenger-btn:hover::before,
.phone:hover::before,
.mobile-sheet__action:hover::before{
  left:130%;
}

.btn.primary{
  background:linear-gradient(180deg, #ffd96e 0%, #ffb200 100%);
  color:#102015;
  border-color:rgba(255,187,0,.7);
  box-shadow:
    0 18px 34px rgba(255,177,0,.25),
    0 6px 12px rgba(0,0,0,.08),
    0 0 0 8px rgba(255,196,0,.08);
}

.messenger-btn,
.mobile-sheet__action--soft,
.mobile-sheet__action--accent{
  background:linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  color:#102015;
  border-color:rgba(0,0,0,.05);
  box-shadow:
    0 18px 34px rgba(0,0,0,.12),
    0 6px 12px rgba(0,0,0,.04),
    0 0 0 8px rgba(255,255,255,.8);
}

.dark-btn{
  background:linear-gradient(180deg, #5cdf47 0%, #278816 100%);
  color:#fff;
  border-color:rgba(37,163,24,.42);
  box-shadow:
    0 14px 24px rgba(47,217,20,.24),
    0 4px 10px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.34);
  text-shadow:0 1px 1px rgba(0,0,0,.12);
}

.dark-btn::after{
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.42),
    inset 0 -2px 3px rgba(0,0,0,.06);
}

.phone{
  background:linear-gradient(180deg, #ffffff 0%, #f4f5f2 100%);
  color:#102015;
  border-color:rgba(0,0,0,.06);
  box-shadow:
    0 14px 26px rgba(0,0,0,.1),
    0 4px 10px rgba(0,0,0,.04),
    0 0 0 6px rgba(255,255,255,.55);
}

.mobile-sheet__action--dark{
  background:linear-gradient(180deg, #2f2a27 0%, #5f4638 100%);
  color:#fff;
  border-color:rgba(70,45,31,.62);
  box-shadow:
    0 18px 34px rgba(47,34,25,.28),
    0 6px 12px rgba(0,0,0,.1),
    0 0 0 8px rgba(84,59,42,.08);
}

.btn-icon{
  width:20px;
  height:20px;
  display:none;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  transform:translateY(1px);
}

.btn-icon svg,
.card-icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
}

.about-flow{
  display:grid;
  gap:26px;
}

.about-copy{
  max-width:920px;
}

.about-copy h2{
  margin-bottom:18px;
}

.about-copy p{
  max-width:920px;
  font-size:18px;
  line-height:1.7;
  margin:0 0 14px;
}

.about-slider{
  width:100%;
}

.about-gallery{
  min-height:320px;
  border-radius:34px;
  box-shadow:0 28px 80px rgba(24,45,28,.14);
}

.metric-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  justify-content:stretch;
  align-items:stretch;
}

.metric-card,
.cards article,
.feature-row div,
.service-pill{
  position:relative;
}

.metric-card{
  padding:46px 16px 16px !important;
  min-height:116px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-radius:24px !important;
}

.metric-card b{
  font-size:26px;
}

.metric-card span{
  font-size:14px;
  line-height:1.4;
}

.cards article,
.feature-row div{
  padding-top:82px;
}

.card-icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, color-mix(in srgb, var(--theme-surface-1) 86%, white), var(--theme-surface-4));
  color:var(--theme-green-strong);
  box-shadow:0 14px 30px rgba(var(--accent-strong-rgb),.14);
  position:absolute;
  top:14px;
  left:14px;
}

.finish-grid article{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.finish-grid .btn{
  width:100%;
  margin-top:auto;
}

.plan-lead{
  margin-top:24px;
  padding:18px;
  border-radius:30px;
  background:linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,243,232,.96));
  border:1px solid rgba(var(--accent-rgb),.26);
  box-shadow:0 22px 60px rgba(18,32,22,.08);
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(280px,.9fr);
  gap:18px;
  align-items:center;
  overflow:hidden;
}

.plan-include{
  margin-top:24px;
}

.plan-include .interactive-map-shell{
  position:relative;
  z-index:1;
}

.plan-include .map{
  width:100%;
  max-width:none;
}

body{
  display:block;
  justify-content:initial;
  flex-wrap:nowrap;
  min-width:0;
}

a{
  color:inherit;
}

#hero,
.hero-urgent-wrap,
.section,
.leadbox,
.final-cta,
.footer{
  width:100%;
}

.hero h1,
#hero h1{
  color:#fff;
  text-transform:none;
}

.hero .lead,
#hero .lead{
  color:rgba(255,255,255,.86);
}

.footer{
  align-self:stretch;
}

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

.plan-lead__brand{
  width:max-content;
  max-width:100%;
  margin-bottom:14px;
  padding:10px 14px;
  border-radius:20px;
}

.plan-lead__brand img{
  width:min(240px,100%);
  height:auto;
  display:block;
}

.plan-lead b{
  display:block;
  font-size:21px;
  line-height:1.15;
  color:#102016;
  margin-bottom:10px;
}

.plan-lead p{
  margin:0;
  color:#526156;
  line-height:1.6;
}

.plan-lead__form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
}

.plan-lead > div,
.plan-lead__form,
.plan-lead__form > *{
  min-width:0;
}

.plan-lead__form input{
  width:100%;
  border:1px solid #dfe7d8;
  border-radius:999px;
  padding:16px 18px;
  font-size:16px;
  background:#fff;
}

.quiz-section{
  background:
    radial-gradient(circle at left top, rgba(var(--theme-green-soft-rgb),.16), transparent 26%),
    linear-gradient(135deg, color-mix(in srgb, var(--theme-surface-1) 68%, white), var(--theme-surface-2));
}

.quiz{
  background:linear-gradient(145deg, color-mix(in srgb, var(--dark-start) 90%, white), color-mix(in srgb, var(--dark-end) 88%, black) 46%, color-mix(in srgb, var(--accent) 72%, white) 140%);
  border:1px solid rgba(var(--accent-rgb),.38);
  box-shadow:0 36px 90px rgba(var(--theme-green-deep-rgb),.2);
  color:#fff;
}

.quiz h3{
  color:#fff;
  font-size:clamp(24px,2.4vw,34px);
}

.quiz__progress{
  background:rgba(255,255,255,.16);
}

.quiz__answers button{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:750;
}

.quiz [hidden]{
  display:none !important;
}

.quiz__result{
  background:rgba(8,25,14,.72);
  border:1px solid rgba(var(--accent-rgb),.26);
}

.quiz__result h3,
.quiz__result p{
  color:#fff;
}

.quiz__result p{
  margin:8px 0 0;
  opacity:.92;
}

.quiz.is-complete{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:320px;
}

.quiz-visual{
  margin-top:28px;
}

.quiz-placeholder{
  min-height:300px;
  border-radius:32px;
  border:2px dashed rgba(var(--theme-green-deep-rgb),.32);
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.18), rgba(255,255,255,.65)),
    radial-gradient(circle at top right, rgba(26,115,232,.14), transparent 32%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
}

.quiz-placeholder span{
  font-size:24px;
  font-weight:900;
  color:var(--theme-green-strong);
}

.quiz-placeholder small{
  margin-top:8px;
  color:color-mix(in srgb, var(--theme-green-strong) 74%, #5c6670);
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

#benefits{
  position:relative;
  overflow:hidden;
  margin-top:-2px;
}

#benefits::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:170px;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(var(--theme-green-ink-rgb),.9) 0%, rgba(var(--theme-green-ink-rgb),.46) 42%, rgba(var(--theme-green-ink-rgb),0) 100%);
}

#benefits::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(var(--theme-green-ink-rgb),.76), rgba(var(--theme-green-deep-rgb),.54)),
    url('../image.php?src=images%2Fbenefits_main_3.jpg&w=1600&h=900&fit=cover&q=74&fm=webp') center/cover;
  z-index:0;
}

#benefits .container{
  position:relative;
  z-index:2;
}

#benefits h2,
#benefits .eyebrow{
  color:#fff;
}

#benefits,
#benefits .container,
#benefits .split,
#benefits .split > div,
#benefits .split > div p,
#benefits .split > div h2,
#benefits .split > div .eyebrow{
  text-align:left !important;
}

#benefits .split{
  align-items:start;
}

#benefits .split > div:first-child{
  max-width:520px;
}

#benefits .split > div:first-child p{
  color:#fff !important;
  opacity:.88;
}

.benefits-list .split{
  align-items:start;
}

.benefit-list{
  display:grid;
  gap:12px;
}

.benefit-item{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  align-items:start;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 50px rgba(0,0,0,.14);
  position:relative;
}

.benefit-item .card-icon{
  position:static;
  width:44px;
  height:44px;
  border-radius:14px;
  grid-column:1;
  grid-row:1;
  margin:0;
  box-shadow:0 12px 24px rgba(var(--accent-strong-rgb),.18);
}

.benefit-item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:900;
  font-size:15px;
  grid-column:1;
  grid-row:1;
}

.benefit-item > div{
  grid-column:2;
  grid-row:1;
}

.benefit-item h3{
  margin:0 0 6px;
  font-size:24px;
  color:#fff;
}

.benefit-item p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.house-slider{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  min-height:auto;
  aspect-ratio:1.95 / 1;
  padding:0;
  background:#dbe5d8;
  box-shadow:0 30px 80px rgba(var(--theme-green-ink-rgb),.16);
  will-change:auto;
  touch-action:pan-y;
  user-select:none;
}

.house-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transition:none;
}

.house-slider img.is-active{
  opacity:1;
}

.house-slider::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(8,16,11,.06) 0%, rgba(8,16,11,.02) 24%, rgba(8,16,11,.22) 60%, rgba(8,16,11,.78) 100%);
}

.house-slider__overlay{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:18px 18px 20px;
  color:#fff;
}

.house-slider__top,
.house-slider__bottom{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:12px;
}

.house-slider__bottom{
  align-items:flex-end;
}

.house-slider__badges,
.house-slider__actions,
.house-slider__meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.house-slider__bottom .house-slider__meta{
  justify-content:flex-start;
  align-self:flex-end;
  flex:2 1 0;
  min-width:0;
}

.house-slider__badges span,
.house-slider__action{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(29,37,32,.58);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.house-slider__badges span{
  padding:0 14px;
}

.house-slider__actions{
  justify-content:flex-end;
}

.house-slider__action{
  padding:0 12px;
  cursor:pointer;
  gap:8px;
}

.house-slider__action svg,
.house-slider__meta svg{
  width:18px;
  height:18px;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
  flex:0 0 auto;
}

.house-slider__action--likes{
  background:rgba(255,255,255,.96);
  color:#1d3924;
}

.house-slider__summary{
  display:grid;
  gap:8px;
}

.house-slider__summary h4{
  margin:0;
  font-size:clamp(28px,3vw,40px);
  line-height:1;
  letter-spacing:-.05em;
  text-shadow:0 8px 28px rgba(0,0,0,.24);
}

.house-slider__meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:800;
  color:#fff;
}

.house-slider__price{
  margin-top:auto;
  align-self:flex-end;
  margin-left:auto;
  flex:1 1 0;
  text-align:right;
  font-size:clamp(26px,2.4vw,40px);
  line-height:1;
  font-weight:900;
  white-space:nowrap;
  text-shadow:0 8px 28px rgba(0,0,0,.28);
}

.house-slider__price-prefix,
.house-slider__price-suffix{
  font-size:.5em;
  font-weight:800;
}

.house-slider__price-value{
  font-size:1em;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:rgba(9,28,15,.48);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
}

.slider-btn--prev{left:18px}
.slider-btn--next{right:18px}

.house{
  grid-template-columns:minmax(0,1.86fr) minmax(0,1fr);
  gap:22px;
  padding:24px;
  align-items:stretch;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,248,241,.9));
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 26px 80px rgba(var(--theme-green-ink-rgb),.08);
}

.house-slider,
.house__content{
  min-width:0;
  width:100%;
}

.house__content{
  display:grid;
  align-content:center;
  gap:18px;
  padding:8px 10px 8px 4px;
}

.house__content h3{
  margin:0;
  font-size:clamp(30px,2.8vw,44px);
  line-height:1.04;
  letter-spacing:-.05em;
}

.house__content p{
  margin:0;
  max-width:580px;
  font-size:18px;
  line-height:1.65;
  color:#5d6d63;
}

.project-card img{
  width:100%;
  height:auto;
  aspect-ratio:16 / 9;
  object-fit:contain;
  object-position:center;
  padding:14px;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb),.12), transparent 24%),
    linear-gradient(180deg, #f7faf4, #edf4e8);
}

.house ul{
  margin:0;
  gap:14px;
}

.house .btn{
  width:max-content;
  min-width:320px;
  min-height:64px;
  justify-content:center;
  padding:0 28px;
  border-radius:999px;
  font-size:17px;
}

.house li{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(188,228,193,.9);
  padding:14px 18px;
  font-weight:700;
  font-size:15px;
  color:#1a2d22;
}

.house li svg{
  width:18px;
  height:18px;
  stroke:var(--theme-green-strong);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.village-gallery-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb),.14), transparent 24%),
    radial-gradient(circle at left bottom, rgba(var(--theme-green-soft-rgb),.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,240,.98));
}

.village-gallery__lead{
  max-width:860px;
  margin:0 0 28px;
  font-size:18px;
  line-height:1.7;
}

.village-gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  grid-auto-rows:220px;
  grid-auto-flow:dense;
  gap:18px;
  align-items:stretch;
}

.village-gallery__item{
  position:relative;
  height:100%;
  padding:0;
  border:0;
  border-radius:30px;
  overflow:hidden;
  cursor:pointer;
  background:#dbe7d8;
  box-shadow:0 24px 70px rgba(var(--theme-green-ink-rgb),.12);
  transition:transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease;
  appearance:none;
}

.village-gallery__item:hover{
  transform:none;
  box-shadow:0 24px 70px rgba(var(--theme-green-ink-rgb),.12);
}

.village-gallery__item img{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.village-gallery__item--hero{
  grid-column:span 2;
  grid-row:span 2;
}

.village-gallery__item--hero img{
  object-fit:cover;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.82);
  z-index:130;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px 84px;
}

.lightbox.show{
  display:flex;
}

.lightbox img{
  max-width:min(1100px,92vw);
  max-height:86vh;
  border-radius:28px;
  box-shadow:0 30px 100px rgba(0,0,0,.45);
}

.lightbox__nav,
#lightboxClose{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
  transition:.25s;
}

.lightbox__nav:hover,
#lightboxClose:hover{
  background:rgba(255,255,255,.24);
}

.btn:hover,
.filter:hover,
.quiz__answers button:hover,
.faq-item:hover,
.project-card:hover,
.thumb-gallery button:hover,
.cards article:hover,
.finish-grid article:hover,
.feature-row div:hover,
.house:hover,
.gallery figure:hover,
.metric-grid div:hover,
.calculator:hover{
  transform:none !important;
}

.gallery figure:hover img,
.house:hover img,
.finish-grid article:hover img,
.thumb-gallery button:hover img{
  transform:none !important;
  filter:none !important;
}

.lightbox__nav{
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  font-size:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.lightbox__nav--prev{
  left:16px;
}

.lightbox__nav--next{
  right:16px;
}

#lightboxClose{
  right:16px;
  top:18px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:32px;
}

.section.dark,
.leadbox,
.faq-section{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.section.dark::before,
.leadbox::before,
.faq-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(var(--theme-green-ink-rgb),.2), rgba(var(--theme-green-deep-rgb),.1)),
    url('../image.php?src=images%2F55mkad.png&w=1600&h=900&fit=cover&q=72&fm=webp') center/cover;
  filter:blur(4px) saturate(1.02);
  transform:scale(1.03);
  z-index:-2;
}

.section.dark::after,
.leadbox::after,
.faq-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(var(--dark-rgb),.72), rgba(var(--dark-rgb),.84));
  z-index:-1;
}

.section.dark{
  background:var(--dark-solid) !important;
}

#mortgage::before{
  background:
    linear-gradient(135deg, rgba(9,24,13,.28), rgba(24,58,36,.14)),
    url('../image.php?src=images%2Fvillage-gallery%2F10.jpg&w=1600&h=900&fit=cover&q=74&fm=webp') center/cover;
}

#mortgage::after{
  background:linear-gradient(180deg, rgba(8,19,13,.74), rgba(10,27,17,.9));
}

#location::before{
  background:
    linear-gradient(135deg, rgba(14,22,34,.26), rgba(20,44,71,.16)),
    url('../image.php?src=images%2F55mkad.png&w=1600&h=900&fit=cover&q=72&fm=webp') center/cover;
}

#location::after{
  background:linear-gradient(180deg, rgba(10,16,26,.72), rgba(9,18,30,.88));
}

#faq::before{
  background:
    linear-gradient(135deg, rgba(12,22,32,.28), rgba(26,44,58,.14)),
    url('../image.php?src=images%2Fvillage-gallery%2F7.jpg&w=1600&h=900&fit=cover&q=74&fm=webp') center/cover;
}

#faq::after{
  background:linear-gradient(180deg, rgba(10,18,28,.76), rgba(9,16,24,.9));
}

#mortgage .calculator{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 28px 70px rgba(0,0,0,.24);
}

#mortgage .calculator p,
.faq-section p{
  color:rgba(255,255,255,.74);
}

#mortgage .calculator label{
  color:#fff;
}

#location .map{
  min-height:400px;
  border-radius:34px;
  overflow:hidden;
}

#location .map-lazy{
  position:relative;
  display:grid;
  place-items:center;
  cursor:pointer;
  background:
    linear-gradient(180deg, rgba(7,18,11,.08), rgba(7,18,11,.42)),
    url('../image.php?src=images%2Fmap.png&w=1200&h=800&fit=cover&q=72&fm=webp') center/cover no-repeat;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}

#location .map-lazy::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  pointer-events:none;
}

#location .map-lazy::after{
  display: none;
  content:"";
  position:absolute;
  inset:50% auto auto 50%;
  width:76px;
  height:76px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  pointer-events:none;
}

#location .map-lazy:focus-visible{
  outline:2px solid rgba(255,255,255,.78);
  outline-offset:4px;
}

#location .map iframe{
  width:100%;
  height:400px;
  border:0;
  display:block;
}

.calc-result{
  background:linear-gradient(135deg,var(--dark-start),var(--dark-end));
}

.calc-result strong{
  font-size:clamp(30px,4vw,52px) !important;
  line-height:1;
}

.faq-section .eyebrow,
.faq-section h2{
  color:#fff;
}

.faq-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.faq-item p{
  color:rgba(255,255,255,.76);
}

.faq-item.open{
  background:rgba(18,37,21,.52);
  border-color:rgba(255,255,255,.2);
  box-shadow:0 20px 50px rgba(0,0,0,.22);
}

.final-cta{
  position:relative;
  overflow:hidden;
  padding:72px 0 80px;
  text-align:left !important;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb),.16), transparent 24%),
    linear-gradient(135deg, #08162a, #0d2340 48%, #09182c 100%);
  color:#fff;
}

.final-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(4,11,21,.28), rgba(4,11,21,.8)),
    url('../image.php?src=https%3A%2F%2Friga-life.ru%2Fimg.php%3Fimg%3Dimg%252Fparkovaz_zona.jpg&w=1800&h=1000&fit=cover&q=74&fm=webp') center/cover;
  opacity:.22;
  pointer-events:none;
}

.final-cta .container{
  position:relative;
  z-index:1;
}

.final-cta .eyebrow,
.final-cta h2{
  color:#fff;
}

.final-cta .container,
.final-cta .container > .eyebrow,
.final-cta .container > h2,
.final-cta .container > p{
  text-align:left !important;
}

.final-cta .container > .eyebrow{
  display:block;
  width:max-content;
  margin-left:0;
}

.final-cta .container > h2{
  max-width:760px;
  margin:8px 0 10px;
  font-size:clamp(20px,2.6vw,34px);
}

.final-cta > .container > p{
  max-width:760px;
  margin-left:0;
  color:rgba(255,255,255,.9);
}

.tour-layout{
  margin-top:14px;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(320px,.78fr);
  gap:18px;
  align-items:stretch;
}

.tour-photo{
  position:relative;
  min-height:420px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(6,12,24,.06), rgba(6,12,24,.72)),
    url('../image.php?src=https%3A%2F%2Friga-life.ru%2Fimg.php%3Fimg%3Dimg%252Fparkovaz_zona.jpg&w=1600&h=900&fit=cover&q=74&fm=webp') center/cover;
  box-shadow:0 30px 90px rgba(0,0,0,.24);
}

.tour-photo__content{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  display:grid;
  gap:10px;
}

.tour-photo__content b{
  font-size:26px;
  line-height:1.05;
}

.tour-photo__content p{
  margin:0;
  max-width:520px;
  color:#fff;
  line-height:1.65;
  text-shadow:0 2px 14px rgba(0,0,0,.24);
}

.tour-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tour-pills span{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.1);
  color:#fff;
  font-weight:700;
  font-size:14px;
}

.tour-form-card{
  padding:22px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(5,16,30,.84);
  box-shadow:
    0 28px 80px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}

.tour-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(var(--accent-rgb),.18);
  border:1px solid rgba(var(--accent-rgb),.34);
  color:#fff4d2;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.tour-form-card h3{
  margin:0 0 12px;
  font-size:clamp(22px,2.1vw,28px);
  line-height:1.02;
  color:#fff;
}

.tour-form-card > p{
  margin:0 0 10px;
  color:rgba(255,255,255,.74);
  line-height:1.65;
}

.tour-form{
  display:grid;
  gap:12px;
  margin-top:10px;
}

.tour-form input{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:13px 16px;
  font-size:16px;
  color:#fff;
  background:rgba(144,174,255,.14);
}

.tour-form input::placeholder{
  color:rgba(255,255,255,.54);
}

.modal__field select,
.modal select{
  width:100%;
  border:1px solid #dfe7d8;
  border-radius:999px;
  padding:17px 20px;
  font-size:16px;
  color:#102016;
  background:#fff;
  appearance:none;
}

.tour-checks{
  display:grid;
  gap:10px;
  margin:4px 0 6px;
  color:rgba(255,255,255,.7);
  font-size:13px;
}

.tour-checks label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.5;
}

.tour-checks input{
  width:16px;
  height:16px;
  margin-top:2px;
  accent-color:var(--accent-strong);
  flex:0 0 auto;
}

.tour-submit{
  width:100%;
  justify-content:center;
  margin-top:6px;
}

.tour-links{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.tour-links a{
  color:rgba(255,255,255,.86);
  font-weight:700;
  text-decoration:none;
}

.mobile-contact-bar{
  display:none;
  background:color-mix(in srgb, var(--dark-solid) 88%, transparent) !important;
}

.mobile-sheet{
  display:none;
}

.footer{
  position:relative;
  overflow:hidden;
  background:color-mix(in srgb, var(--theme-green-ink) 82%, black);
}

.footer__brand{
  display:grid;
  gap:12px;
  align-content:start;
}

.footer__brand img{
  width:min(240px,100%);
  height:auto;
  display:block;
}

.footer__legal{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.66);
}

.footer__legal p{
  margin:0;
  font-size:13px;
  line-height:1.6;
}

.footer__legal p + p{
  margin-top:4px;
}

.primary{
  box-shadow:0 18px 45px rgba(var(--theme-green-soft-rgb),.28);
}

.metric-grid b,
.cards span,
.project-card b,
.quiz__result h3,
.calc-controls b,
.calc-result strong{
  color:var(--theme-green-soft);
}

.hero-offer b{
  color:#fff;
}

#mortgage .calculator b{
  color:var(--theme-green-soft);
  text-shadow:
    0 0 14px rgba(var(--theme-green-soft-rgb),.34),
    0 0 28px rgba(var(--theme-green-rgb),.18);
}


.tour-photo__content p,
.faq-section p,
.faq-section .faq-item p,
.calc-result p,
.calc-result span,
#mortgage .calculator p{
  color:#fff;
}

.faq-section .faq-item span,
.faq-section .faq-item p{
  text-shadow:0 2px 12px rgba(0,0,0,.42);
}

.faq-section .faq-item p{
  opacity:.9;
}

.metric-grid div,
.cards article,
.finish-grid article,
.calculator,
.feature-row div,
.service .split > div,
.project-card,
.quiz,
.calc-controls,
.thumb-gallery button,
.faq-item{
  border-color:color-mix(in srgb, var(--theme-surface-4) 54%, #e5eadf);
  box-shadow:0 24px 70px rgba(var(--theme-green-ink-rgb),.08);
}

.project-card span{
  background:var(--theme-surface-3);
  color:var(--theme-green-strong);
}

.project-card b,
.metric-grid b{
  color:var(--theme-green);
}

.chips span{
  background:var(--theme-surface-3);
}

.ticks li::before,
.calculator b,
.calculator input,
.calc-controls input,
.quiz__progress span{
  accent-color:var(--theme-green);
}

.calculator b,
.calc-controls b{
  color:var(--theme-green);
}

.quiz__progress span{
  background:linear-gradient(90deg, var(--theme-green-soft), #1a73e8);
}

.quiz__progress{
  background:color-mix(in srgb, var(--theme-surface-2) 76%, white);
}

.quiz__answers button:hover,
.faq-item:hover{
  background:rgba(24,44,28,.54);
  border-color:inherit;
}

.faq-item.open{
  background:rgb(16 18 32 / 72%);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 20px 50px rgba(0,0,0,.24);
}

.faq-hotline{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.06));
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  color:#fff;
}

.faq-hotline__badge{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.faq-hotline b{
  display:block;
  margin:14px 0 10px;
  font-size:26px;
  line-height:1.08;
}

.faq-hotline p{
  margin:0 0 16px;
  color:rgba(255,255,255,.76);
  line-height:1.6;
}

.faq-hotline__phone{
  display:inline-flex;
  align-items:center;
  min-height:54px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:#102016;
  font-weight:900;
  font-size:18px;
  text-decoration:none;
}

.quiz__result{
  background:var(--theme-green-ink);
}

.calc-result{
  background:linear-gradient(135deg, var(--theme-green-ink), var(--theme-green-deep));
}

.map2{
  background:radial-gradient(circle at 20% 20%, var(--theme-green-soft), var(--theme-green-strong) 42%, var(--theme-green-ink));
}

.reveal,
.section,
.leadbox,
.final-cta,
.project-card,
.quiz,
.calc-controls,
.calc-result,
.faq-item,
.cards article,
.finish-grid article,
.feature-row div,
.gallery figure,
.metric-grid div{
  opacity:1 !important;
  transform:none !important;
  transition:none !important;
}

@media(max-width:980px){
  .topbar{
    height:68px;
    padding:0 14px 0 18px;
  }

  .logo__mark{
    height:38px;
    max-width:min(156px,34vw);
  }

  .header-cta{
    display:none;
  }

  .hero h1{
    font-size:clamp(28px,6.4vw,46px);
  }

  .section h2,
  .leadbox h2,
  .final-cta h2{
    font-size:clamp(24px,4.8vw,34px);
  }

  .benefit-item h3{
    font-size:22px;
  }

  .about-copy p{
    font-size:17px;
  }

  .hero__actions{
    max-width:none;
  }

  .about-gallery{
    min-height:260px;
  }

  .company-video-card{
    grid-template-columns:1fr;
  }

  .company-video-card__media{
    min-height:380px;
  }

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

  #benefits .cards.five article{
    grid-template-columns:72px 1fr;
    padding:24px 22px 24px 88px;
  }

  #benefits .cards.five article p{
    grid-column:2;
  }

  .house-slider{
    aspect-ratio:16 / 9;
    padding:12px;
  }

  .house-slider img{
    inset:12px;
    width:calc(100% - 24px);
    height:calc(100% - 24px);
  }

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

  .village-gallery__item--hero{
    grid-column:span 2;
  }

  .village-gallery__item--hero img{
    min-height:300px;
  }

  .topbar,
  .hero-offer,
  .stats div,
  .hero-card,
  .messenger-btn,
  .tour-form-card{
    backdrop-filter:none;
  }

  .section.dark::before,
  .leadbox::before,
  .faq-section::before{
    filter:none;
    transform:none;
  }
}

@media(max-width:760px){
  .hero__bg{
    background-position:58% 12%;
  }

  .company-video-section{
    padding-top:18px;
  }

  .company-video-card{
    padding:14px;
    border-radius:28px;
  }

  .company-video-card__content{
    padding:20px 18px;
    border-radius:22px;
  }

  .company-video-card__content h2{
    font-size:30px;
  }

  .company-video-card__content p:not(.eyebrow){
    font-size:15px;
  }

  .company-video-card__content .btn{
    width:100%;
  }

  .company-video-card__media{
    min-height:300px;
    padding:18px;
    border-radius:24px;
  }

  .company-video-card__title{
    font-size:34px;
    max-width:260px;
  }

  .company-video-card__play{
    width:68px;
    height:68px;
  }

  .village-gallery__lead{
    font-size:16px;
    margin-bottom:20px;
  }

  .benefits-top__lead{
    font-size:16px;
    margin-bottom:18px;
  }

  .benefits-top__grid{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
    width:100%;
  }

  .benefits-top__grid article{
    min-width:0;
    width:100%;
    max-width:100%;
    min-height:240px;
    padding:20px 16px !important;
    border-radius:24px;
  }

  .benefits-top__grid article h3{
    margin:0;
    font-size:22px;
    line-height:1.12;
    overflow-wrap:anywhere;
  }

  .benefits-top__grid article p{
    font-size:14px !important;
    line-height:1.5 !important;
    overflow-wrap:anywhere;
  }

  .benefits-top__icon{
    width:48px;
    height:48px;
  }

  .benefits-top__icon svg{
    width:22px;
    height:22px;
  }

  .hero__actions .messenger-btn{
    min-height:50px;
    padding:12px 16px;
    font-size:15px;
  }

  .topbar{
    display:none !important;
  }

  .hero{
    padding-top:26px;
  }

  .hero-urgent-wrap{
    margin-top:-44px;
    padding-bottom:12px;
  }

  .hero-urgent-wrap .container{
    width:min(100%,calc(100% - 24px));
  }

  .hero-urgent-call{
    grid-template-columns:1fr;
    padding:18px 18px 20px;
    border-radius:24px 24px 0 0;
  }

  .hero-urgent-call__form{
    grid-template-columns:1fr;
  }

  .hero-urgent-call__form .btn{
    width:100%;
    min-width:0;
  }

  .plan-lead{
    grid-template-columns:1fr;
    padding:18px !important;
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .plan-lead > div,
  .plan-lead__form{
    width:100%;
    max-width:100%;
    min-width:0;
    grid-template-columns:1fr !important;
    align-items:stretch;
    gap:10px !important;
  }

  .plan-lead__brand{
    margin-bottom:10px;
    padding:8px 10px;
  }

  .plan-lead__brand img{
    width:min(170px,100%);
  }

  .plan-lead__form input{
    width:100%;
    min-width:0;
    max-width:100%;
    background:#fff !important;
  }

  .plan-lead__form .btn{
    width:100% !important;
    max-width:100%;
    min-width:0;
    min-height:54px;
    padding:0 18px;
    white-space:normal;
    overflow-wrap:anywhere;
    text-align:center;
    flex:1 1 auto;
  }

  .tour-layout{
    grid-template-columns:1fr;
  }

  .tour-photo{
    min-height:300px;
  }

  .tour-form-card{
    padding:18px;
  }

  .tour-links{
    grid-template-columns:1fr;
  }

  .mobile-contact-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:80;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    padding:14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    border-radius:28px 28px 0 0;
    background:rgba(255,255,255,.96) !important;
    border-top:1px solid rgba(16,32,22,.08);
    box-shadow:0 -18px 40px rgba(10,22,16,.14);
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button{
    display:grid;
    place-items:center;
    gap:6px;
    min-height:64px;
    border:0;
    border-radius:20px;
    padding:10px 8px;
    font-weight:800;
    font-size:13px;
    color:#17261d;
    background:transparent;
    text-align:center;
  }

  .mobile-contact-bar .btn-icon{
    display:flex;
    width:28px;
    height:28px;
    transform:none;
    color:var(--accent-strong);
  }

  .mobile-contact-bar .btn-icon svg{
    width:24px;
    height:24px;
    stroke-width:2.1;
  }

  .mobile-sheet{
    position:fixed;
    inset:0;
    z-index:95;
    display:block;
    pointer-events:none;
    opacity:0;
    transition:opacity .24s ease;
  }

  .mobile-sheet.is-open{
    opacity:1;
    pointer-events:auto;
  }

  .mobile-sheet__backdrop{
    position:absolute;
    inset:0;
    border:0;
    background:rgba(8,18,13,.42);
  }

  .mobile-sheet__panel{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    border-radius:28px 28px 0 0;
    background:#fff;
    box-shadow:0 -26px 60px rgba(0,0,0,.18);
    transform:translateY(100%);
    transition:transform .28s ease;
  }

  .mobile-sheet.is-open .mobile-sheet__panel{
    transform:translateY(0);
  }

  .mobile-sheet__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px;
  }

  .mobile-sheet__top b{
    font-size:18px;
    color:#15241b;
  }

  .mobile-sheet__close{
    border:0;
    background:transparent;
    color:#5e6c62;
    font-size:16px;
    padding:0;
  }

  .mobile-sheet__actions{
    display:grid;
    gap:12px;
  }

  .mobile-sheet__action{
    min-height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 18px;
    font-weight:800;
    font-size:18px;
    text-decoration:none;
  }

  .mobile-sheet__action--soft{
    color:#17261d;
  }

  .mobile-sheet__action--accent{
    color:#17261d;
  }

  .mobile-sheet__action--dark{
    color:#fff;
  }

  .mobile-sheet__nav{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(20,36,27,.08);
  }

  .mobile-sheet__nav p{
    margin:0 0 12px;
    color:#26352c;
    font-size:16px;
    font-weight:700;
  }

  .mobile-sheet__links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .mobile-sheet__links a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#f5f6f4;
    color:#17261d;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
  }

  .footer__legal{
    margin-top:14px;
    padding-bottom:88px;
  }
}

@media(max-width:620px){
  .hero__bg{
    background-position:62% 8%;
  }

  .company-video-card__content h2{
    font-size:26px;
  }

  .company-video-card__media{
    min-height:260px;
  }

  .company-video-card__tag{
    min-height:34px;
    padding:0 12px;
    font-size:12px;
  }

  .company-video-card__title{
    font-size:28px;
    max-width:220px;
  }

  .company-video-card__play{
    width:58px;
    height:58px;
  }

  .company-video-card__play svg{
    width:26px;
    height:26px;
  }

  #plan{
    padding-bottom:96px;
  }

  .benefits-top__grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    width:100%;
  }

  .benefits-top__grid article{
    width:100%;
    min-width:0;
    max-width:100%;
    min-height:auto;
    padding:18px 16px !important;
    border-radius:22px !important;
  }

  .benefits-top__grid article h3{
    font-size:20px;
    line-height:1.12;
    margin:0;
  }

  .benefits-top__grid article p{
    max-width:none;
    font-size:13px !important;
    line-height:1.45 !important;
  }

  .benefits-top__icon{
    width:44px;
    height:44px;
  }

  .benefits-top__icon svg{
    width:20px;
    height:20px;
  }

  .hero h1{
    font-size:32px;
    line-height:1;
  }

  .section h2,
  .leadbox h2,
  .final-cta h2{
    font-size:24px;
    line-height:1.08;
  }

  .lead{
    font-size:16px;
  }

  .benefit-item{
    grid-template-columns:48px 1fr;
    gap:12px;
    padding:16px;
  }

  .benefit-item .card-icon{
    width:40px;
    height:40px;
    border-radius:12px;
  }

  .benefit-item span{
    width:40px;
    height:40px;
    border-radius:12px;
    font-size:13px;
  }

  .benefit-item h3{
    font-size:19px;
  }

  .metric-grid{
    grid-template-columns:1fr 1fr;
  }

  .metric-card{
    min-height:132px;
    padding:18px !important;
  }

  .metric-card b{
    font-size:22px;
  }

  .metric-card span{
    font-size:13px;
  }

  .about-gallery{
    min-height:200px;
  }

  .about-copy p{
    font-size:16px;
  }

  #benefits .cards.five article{
    grid-template-columns:1fr;
    gap:12px;
    padding:82px 18px 18px;
  }

  #benefits .cards.five article .card-icon{
    top:18px;
    left:18px;
    transform:none;
  }

  #benefits .cards.five article h3{
    font-size:28px;
  }

  #benefits .cards.five article p{
    font-size:16px;
  }

  .section{
    padding:56px 0;
  }

  .split,
  .about-flow,
  .house-list,
  .finish-grid,
  .feature-row,
  .cards,
  .gallery,
  .tour-layout,
  .calc-grid{
    gap:14px !important;
  }

  .house,
  .cards article,
  .finish-grid article,
  .feature-row div,
  .project-card div,
  .quiz,
  .calc-controls,
  .calc-result,
  .tour-form-card,
  .plan-lead,
  .faq-item{
    padding:18px !important;
  }

  .house{
    grid-template-columns:1fr;
    gap:14px;
    padding:16px !important;
  }

  .house-slider{
    order:1;
    width:100%;
    padding:0;
    border-radius:24px;
    aspect-ratio:1.18 / 1;
  }

  .house-slider img{
    inset:0;
    width:100%;
    height:100%;
  }

  .slider-btn{
    width:44px;
    height:44px;
    font-size:28px;
  }

  .slider-btn--prev{left:12px}
  .slider-btn--next{right:12px}

  .house__content{
    order:2;
    gap:12px;
    padding:0;
  }

  .village-gallery{
    grid-template-columns:1fr;
    gap:14px;
  }

  .village-gallery__item,
  .village-gallery__item--hero{
    grid-column:auto;
    border-radius:24px;
  }

  .village-gallery__item--hero img{
    min-height:0;
  }

  .lightbox__nav{
    width:46px;
    height:46px;
    font-size:30px;
  }

  .lightbox__nav--prev{
    left:10px;
  }

  .lightbox__nav--next{
    right:10px;
  }

  .lightbox{
    padding:18px 58px;
  }

  #lightboxClose{
    right:10px;
    top:10px;
  }
}

@media(max-width:480px){
  .lightbox{
    padding:14px 12px 18px;
  }

  .lightbox img{
    max-width:100%;
    max-height:78vh;
    border-radius:20px;
  }

  .lightbox__nav{
    top:auto;
    bottom:20px;
    transform:none;
    width:44px;
    height:44px;
    font-size:28px;
  }

  .lightbox__nav--prev{
    left:calc(50% - 52px);
  }

  .lightbox__nav--next{
    right:calc(50% - 52px);
  }

  #lightboxClose{
    right:10px;
    top:10px;
  }

  .cards h3,
  .house h3,
  .finish-grid h3,
  .feature-row h3{
    font-size:22px;
  }

  #communications .cards article,
  #comfort .feature-row > div{
    padding-top:18px !important;
  }

  #communications .card-icon,
  #comfort .card-icon{
    position:static;
    top:auto;
    left:auto;
    transform:none;
    width:34px;
    height:34px;
    border-radius:12px;
    margin:0 0 10px;
  }

  #communications .card-icon svg,
  #comfort .card-icon svg{
    width:18px;
    height:18px;
  }

  #communications article h3,
  #comfort .feature-row h3{
    margin:0 0 6px;
  }

  .project-card h3{
    font-size:23px;
  }

  .house p,
  .cards article p,
  .finish-grid article p,
  .feature-row div p,
  .project-card p,
  .faq-item p,
  .tour-form-card > p,
  .about-copy p,
  .final-cta > .container > p{
    font-size:15px !important;
    line-height:1.55 !important;
  }

  .house ul{
    margin:14px 0;
    gap:8px;
  }

  .house li{
    padding:9px 12px;
    font-size:13px;
  }

  .house .btn{
    width:100%;
    min-width:0;
    min-height:52px;
    font-size:15px;
    padding:0 16px;
  }

  .house-slider__overlay{
    padding:14px 14px 16px;
  }

  .house-slider__badges span{
    min-height:32px;
    padding:0 12px;
    font-size:12px;
  }

  .house-slider__summary h4{
    font-size:20px;
  }

  .house-slider__meta span{
    font-size:12px;
  }

  .house-slider__meta svg{
    width:15px;
    height:15px;
  }

  .house-slider__price{
    font-size:20px;
  }

  .gallery figcaption{
    left:12px;
    right:12px;
    bottom:12px;
    padding:10px 12px;
    font-size:13px;
  }

  .tour-photo{
    min-height:240px;
  }

  .tour-photo__content{
    display:none;
  }

  .final-cta{
    padding:56px 0 70px;
  }

  .final-cta .container > .eyebrow,
  .final-cta .container > h2,
  .final-cta > .container > p{
    margin-left:0;
    text-align:left;
  }

  .tour-pills span{
    padding:8px 10px;
    font-size:12px;
  }

  .plan-lead b{
    font-size:18px;
    overflow-wrap:anywhere;
  }

  .plan-lead__brand{
    padding:8px;
  }

  .plan-lead__brand img{
    width:min(150px,100%);
  }

  .footer__brand img{
    width:min(210px,100%);
  }

  .plan-lead__form{
    width:100%;
    max-width:100%;
    min-width:0;
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .plan-lead__form input,
  .plan-lead__form .btn{
    width:100%;
    min-width:0;
    max-width:100%;
  }

  .plan-lead__form .btn{
    justify-content:center;
    text-align:center;
    white-space:normal;
    overflow-wrap:anywhere;
    line-height:1.2;
    min-height:50px;
    padding:0 16px;
    font-size:14px;
  }

  .faq-item span{
    font-size:18px;
  }

  #mortgage .calculator b{
    display:block;
    font-size:clamp(18px, 6vw, 24px);
    line-height:1.18;
  }
}
