*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #2E5F18;
  --brand-dark: #1F4410;
  --brand-light: #4A8E2C;
  --dark: #111E08;
  --dark-2: #1B2E0E;
  --dark-3: #233B12;
  --gray: #6B7280;
  --gray-light: #F4F6F2;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4B5563;
  --border: #E2E8DD;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ——— BUTTONS ——— */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all .2s ease; letter-spacing: .02em; white-space: nowrap; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 16px rgba(46,95,24,.25); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,95,24,.35); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #EDF3E8; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #2a3f1a; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-text-short { display: none; }
.btn-text-full { display: inline; }

/* ——— HEADER ——— */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: all .3s;
  padding-top: env(safe-area-inset-top, 0px);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
@media (max-width: 768px) { .header-inner { height: 58px; } }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--brand); }
.logo-icon { width: 36px; height: 36px; background: var(--brand); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone { color: var(--text); font-weight: 600; font-size: 15px; transition: color .2s; }
.header-phone:hover { color: var(--brand); }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-nav a { color: rgba(0,0,0,.6); font-size: 14px; font-weight: 500; transition: color .2s; }
.header-nav a:hover { color: var(--brand); }

/* ——— HAMBURGER ——— */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— MOBILE MENU ——— */
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 140;
  background: rgba(0,0,0,.4); backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 68px; z-index: 150;
  background: rgba(17,30,8,.98); backdrop-filter: blur(16px);
  flex-direction: column; padding: 40px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.mobile-menu nav a { color: rgba(255,255,255,.85); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; }
.mobile-menu nav a:hover { color: var(--brand-light); }
.mobile-menu-phone { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 16px; }
.mobile-menu-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; font-size: 15px; padding: 14px 24px; border-radius: 10px; margin-bottom: 24px; }
.mobile-menu-cta { width: 100%; text-align: center; justify-content: center; padding: 16px; }

/* ——— HERO ——— */
.hero {
  position: relative; min-height: 100vh;
  background: #07130A;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80');
  background-size: cover; background-position: center 30%;
  opacity: .52;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,12,2,.78) 0%, rgba(8,18,4,.55) 55%, rgba(0,0,0,.18) 100%),
              linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; padding: clamp(88px, 12vh, 130px) 0 clamp(48px, 7vh, 100px); max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,142,44,.18); border: 1px solid rgba(74,142,44,.4);
  color: #A8D48A; padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
}
.hero-badge-dot { width: 6px; height: 6px; background: #7ABF52; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-size: clamp(36px, 4.2vw, 56px); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 24px; letter-spacing: -.02em; }
.hero h1 span { color: #A8D48A; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: clamp(28px, 4vh, 48px); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: clamp(32px, 5vh, 60px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 36px); }
.hero-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: #fff; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* Hero scroll arrow */
.hero-scroll-arrow {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: color .2s;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll-arrow:hover { color: rgba(255,255,255,.8); }
.hero-scroll-arrow svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ——— HERO STATS ——— */
.hero-stats { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.hero-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: #fff; line-height: 1; letter-spacing: -.02em; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; line-height: 1.3; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-sep { height: 32px; }
}

/* ——— PAGE HERO (catalog / gallery headers) ——— */
.page-hero {
  position: relative;
  padding: 120px 0 64px;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .48;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,12,2,.82) 0%, rgba(8,18,4,.55) 60%, rgba(0,0,0,.2) 100%),
              linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 40%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: #A8D48A; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: #fff;
  letter-spacing: -.02em; margin: 8px 0 12px; line-height: 1.1;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,.6);
}

/* ——— SECTION ——— */
section { padding: 100px 0; }
.section-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-soft); line-height: 1.65; max-width: 600px; }
.section-header { margin-bottom: 60px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

/* ——— BENEFITS STRIP ——— */
.benefits-strip { background: var(--dark); padding: 0; }
.benefits-inner { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid rgba(255,255,255,.08); }
.benefit-item { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); transition: background .25s; }
.benefit-item:hover { background: rgba(255,255,255,.04); }
.benefit-icon { width: 44px; height: 44px; background: rgba(74,142,44,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 22px; height: 22px; stroke: #7ABF52; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 4px; }
.benefit-label { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ——— HOUSES ——— */
.houses-section { background: var(--gray-light); padding-top: 48px !important; padding-bottom: 80px !important; }
.houses-tabs { display: flex; gap: 4px; background: #e2e8dd; padding: 4px; border-radius: 10px; width: fit-content; margin-bottom: 48px; }
.tab-btn { padding: 10px 24px; border-radius: 7px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: all .2s; background: transparent; color: var(--text-soft); }
.tab-btn.active { background: #fff; color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.houses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.house-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.house-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,.12); }
.house-card-img { position: relative; height: 240px; overflow: hidden; background: linear-gradient(90deg,#ccd5c4 25%,#dde5d5 50%,#ccd5c4 75%); background-size: 800px 100%; animation: shimmer 1.4s infinite linear; }
.house-card-img.img-loaded { animation: none !important; background: #e8ede4; }
.house-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.house-card:hover .house-card-img img { transform: scale(1.07); }
.house-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.08) 50%, transparent 100%); z-index: 1; pointer-events: none; }
.house-card-badge { position: absolute; top: 16px; left: 16px; background: var(--brand); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 100px; z-index: 2; }
.house-card-style { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; z-index: 2; }
.house-card-body { padding: 24px; }
.house-card-code { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--text); margin-bottom: 4px; letter-spacing: -.01em; }
.house-card-area { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.house-card-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--text); margin-bottom: 4px; }
.house-card-mortgage { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 20px; }
.house-card-btn { width: 100%; padding: 13px 16px; border-radius: 8px; background: var(--brand); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: background .2s, box-shadow .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.house-card-btn:hover { background: var(--brand-dark); box-shadow: 0 6px 20px rgba(46,95,24,.3); }
.house-card-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.house-plan-toggle { width: 100%; padding: 10px 14px; border-radius: 8px; background: transparent; color: var(--text); border: 1.5px solid var(--border); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all .2s; text-align: left; display: flex; align-items: center; gap: 6px; }
.house-plan-toggle:hover { border-color: var(--brand); color: var(--brand); background: rgba(46,95,24,.04); }
.house-plan-toggle .plan-arrow { transition: transform .25s; font-size: 10px; margin-left: auto; }
.house-plan-toggle.open .plan-arrow { transform: rotate(180deg); }
.house-plan-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.house-plan-panel.open { max-height: 600px; }
.house-plan-panel svg { width: 100%; display: block; border-radius: 8px; margin: 10px 0 4px; }
.house-plan-panel img { border-radius: 8px; margin: 10px 0 4px; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.house-plan-note { font-size: 11px; color: var(--text-soft); text-align: center; padding-bottom: 4px; }
.houses-section .plans-cta { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

/* ——— FLOOR PLAN ——— */
.floorplan-section { background: var(--gray-light); }
.floorplan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.floorplan-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 16px; border: 1px solid var(--border); }
.floorplan-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); }
.floorplan-svg-wrap { border-radius: 8px; overflow: hidden; background: #edf2e8; border: 1px solid var(--border); }
.floorplan-svg { width: 100%; display: block; }
.floorplan-note { font-size: 13px; color: var(--text-soft); line-height: 1.4; }
.floorplan-tagline { margin-top: 48px; font-size: clamp(24px, 4vw, 38px); font-weight: 900; color: var(--text); text-align: center; letter-spacing: -0.02em; }
.floorplan-cta-note { text-align: center; color: var(--text-soft); font-size: 15px; margin-top: 10px; margin-bottom: 0; }
.floorplan-cta { display: flex; justify-content: center; margin-top: 24px; }
@media (max-width: 600px) {
  .floorplan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mobile-menu { top: 58px; }
}

/* ——— COMPARISON ——— */
.comparison-section { background: var(--gray-light); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comp-card { border-radius: var(--radius-lg); padding: 36px; }
.comp-card.apartment { background: #fff; border: 1px solid var(--border); }
.comp-card.house { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.comp-card.house::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(74,142,44,.25) 0%, transparent 70%); }
.comp-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.comp-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.comp-card.house .comp-subtitle { color: rgba(255,255,255,.5); }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.comp-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.comp-icon.minus { background: #FEE2E2; }
.comp-icon.check { background: var(--brand); }
.comp-icon svg { width: 12px; height: 12px; }
.comp-card.house .comp-list li { color: rgba(255,255,255,.85); }
.comp-highlight { margin-top: 28px; padding: 16px 20px; background: rgba(74,142,44,.12); border: 1px solid rgba(74,142,44,.25); border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #A8D48A; }
.comp-badge { display: inline-block; padding: 6px 14px; background: var(--brand); color: #fff; border-radius: 100px; font-size: 12px; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 16px; }

/* ——— PROCESS TIMELINE ——— */
.process-section { background: var(--dark); }
.process-section .section-label { color: #A8D48A; }
.process-section .section-title { color: #fff; }
.process-section .section-sub { color: rgba(255,255,255,.55); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 16px; position: relative; margin-top: 64px; }
.timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.timeline-num { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 0 0 6px rgba(74,142,44,.15), 0 0 0 12px rgba(74,142,44,.06); flex-shrink: 0; }
.timeline-step-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 8px; }
.timeline-step-text { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.timeline-step-days { display: inline-block; margin-top: 10px; background: rgba(74,142,44,.15); border: 1px solid rgba(74,142,44,.3); color: #A8D48A; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; font-family: 'Montserrat', sans-serif; }

/* ——— CONFIGURATOR ——— */
.config-section { background: #fff; }
.config-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.config-group { margin-bottom: 32px; }
.config-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); margin-bottom: 12px; }
.config-options { display: flex; gap: 10px; flex-wrap: wrap; }
.config-opt { padding: 10px 20px; border-radius: 8px; border: 2px solid var(--border); font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s; background: #fff; color: var(--text); }
.config-opt.selected { border-color: var(--brand); background: rgba(46,95,24,.06); color: var(--brand); }
.config-result { background: var(--dark); border-radius: var(--radius-lg); padding: 40px; color: #fff; position: sticky; top: 100px; }
.config-result-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 32px; }
.config-price { margin-bottom: 28px; }
.config-price-label { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.config-price-val { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 34px; color: #fff; }
.config-price-sub { font-size: 13px; color: #A8D48A; margin-top: 4px; }
.config-divider { height: 1px; background: rgba(255,255,255,.08); margin: 24px 0; }
.config-detail { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.config-detail-label { color: rgba(255,255,255,.5); }
.config-detail-val { color: #fff; font-weight: 600; }
.config-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 16px; line-height: 1.5; }

/* ——— MORTGAGE ——— */
.mortgage-section { background: var(--gray-light); }
.mortgage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.mortgage-highlight { background: var(--brand); border-radius: var(--radius-lg); padding: 40px; color: #fff; margin-bottom: 32px; }
.mortgage-highlight-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 48px; line-height: 1; }
.mortgage-highlight-label { font-size: 15px; opacity: .85; margin-top: 6px; }
.mortgage-note { background: #fff; border-radius: var(--radius); padding: 20px 24px; border: 1px solid var(--border); font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 24px; }
.mortgage-note strong { color: var(--text); font-weight: 600; }
.banks-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); margin-bottom: 16px; }
.banks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
@media (max-width: 480px) { .banks-grid { grid-template-columns: repeat(2, 1fr); } }
.bank-chip { display: flex; align-items: center; justify-content: center; padding: 14px 16px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; transition: all .25s; min-height: 64px; cursor: default; overflow: hidden; }
.bank-chip:hover { border-color: var(--brand); box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.bank-chip img { max-height: 34px; max-width: 100%; width: auto; object-fit: contain; display: block; }
.bank-chip svg { max-width: 100%; }
.mortgage-steps { }
.mortgage-step { display: flex; gap: 20px; margin-bottom: 28px; }
.mortgage-step-num { width: 40px; height: 40px; border-radius: 10px; background: rgba(46,95,24,.1); color: var(--brand); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mortgage-step-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.mortgage-step-text { font-size: 14px; color: var(--text-soft); line-height: 1.5; }

/* ——— MORTGAGE CALCULATOR ——— */
.calc-section { background: #fff; }
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.calc-form-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 32px; }
.calc-slider-group { margin-bottom: 32px; }
.calc-slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc-slider-name { font-size: 14px; color: var(--text-soft); font-weight: 500; }
.calc-slider-val { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 4px; background: var(--border); outline: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); cursor: pointer; box-shadow: 0 2px 8px rgba(46,95,24,.35); border: 3px solid #fff; }
.calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); cursor: pointer; box-shadow: 0 2px 8px rgba(46,95,24,.35); border: 3px solid #fff; }
.calc-rate-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,95,24,.08); border: 1px solid rgba(46,95,24,.2); color: var(--brand); padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 8px; }
.calc-rate-badge strong { font-size: 18px; font-weight: 800; }
.calc-result-box { background: var(--dark); border-radius: var(--radius-lg); padding: 40px; color: #fff; position: sticky; top: 100px; }
.calc-result-label { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.calc-result-big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 44px; color: #fff; margin-bottom: 4px; }
.calc-result-sub { font-size: 13px; color: #A8D48A; margin-bottom: 32px; }
.calc-result-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; }
.calc-result-row:last-child { border-bottom: none; }
.calc-result-row-label { color: rgba(255,255,255,.5); }
.calc-result-row-val { color: #fff; font-weight: 600; }
.calc-cta { margin-top: 28px; width: 100%; padding: 15px; background: var(--brand); color: #fff; border: none; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; }
.calc-cta:hover { background: var(--brand-dark); }

/* ——— SHIMMER SKELETON ——— */
@keyframes shimmer { 0% { background-position: -800px 0; } 100% { background-position: 800px 0; } }
.img-wrap { position: relative; width: 100%; height: 100%; background: linear-gradient(90deg,#cdd5c6 25%,#dce5d5 50%,#cdd5c6 75%); background-size: 800px 100%; animation: shimmer 1.4s infinite linear; }
.img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; }
.img-wrap img.img-loaded { opacity: 1; }
.img-wrap-dark { background: linear-gradient(90deg,#1a2a0f 25%,#263d18 50%,#1a2a0f 75%); background-size: 800px 100%; animation: shimmer 1.4s infinite linear; }

/* ——— GALLERY ——— */
.gallery-section { background: var(--gray-light); padding-top: 48px !important; padding-bottom: 80px !important; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: zoom-in; position: relative; background: linear-gradient(90deg,#b8c8b0 25%,#cad5c2 50%,#b8c8b0 75%); background-size: 800px 100%; animation: shimmer 1.4s infinite linear; }
.gallery-item.img-loaded { animation: none !important; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.5) 100%); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; z-index: 2; }
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; font-size: 12px; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%); z-index: 3; letter-spacing: .03em; transform: translateY(4px); opacity: 0; transition: all .3s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }
.gallery-zoom-icon { width: 44px; height: 44px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.gallery-zoom-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 500; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ——— FAQ ——— */
.faq-section { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: 0 4px 24px rgba(0,0,0,.06); border-color: rgba(46,95,24,.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; }
.faq-question-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.faq-arrow { width: 32px; height: 32px; border-radius: 8px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq-item.open .faq-arrow { background: var(--brand); transform: rotate(45deg); }
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--text-soft); fill: none; stroke-width: 2; stroke-linecap: round; }
.faq-item.open .faq-arrow svg { stroke: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-soft); line-height: 1.7; }

/* ——— URGENCY / PRICE FIXATION ——— */
.urgency-section { background: linear-gradient(135deg, #050F02 0%, #0D1F06 50%, #080F04 100%); padding: 80px 0; position: relative; overflow: hidden; }
.urgency-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,142,44,.15) 0%, transparent 70%); pointer-events: none; }
.urgency-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(74,142,44,.08) 0%, transparent 70%); pointer-events: none; }
.urgency-wrap { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; z-index: 1; }
.urgency-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(74,142,44,.2); border: 1px solid rgba(74,142,44,.4); color: #A8D48A; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 16px; }
.urgency-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(24px, 3vw, 36px); color: #fff; line-height: 1.15; margin-bottom: 12px; }
.urgency-title span { color: #A8D48A; }
.urgency-text { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 520px; margin-bottom: 28px; }
.urgency-perks { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.urgency-perk { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 8px 14px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; }
.urgency-perk-dot { width: 6px; height: 6px; background: #7ABF52; border-radius: 50%; flex-shrink: 0; }
.urgency-timer-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px 36px; text-align: center; min-width: 280px; }
.urgency-timer-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.urgency-timer { display: flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 20px; }
.timer-unit { display: flex; flex-direction: column; align-items: center; }
.timer-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px; color: #fff; line-height: 1; }
.timer-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-top: 4px; }
.timer-sep { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: #A8D48A; margin-bottom: 16px; }
.urgency-timer-cta { width: 100%; padding: 14px; background: var(--brand); color: #fff; border: none; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s; }
.urgency-timer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,95,24,.4); }
.urgency-form { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; max-width: 440px; }
.urgency-input { padding: 14px 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border .2s; }
.urgency-input::placeholder { color: rgba(255,255,255,.35); }
.urgency-input:focus { border-color: #A8D48A; background: rgba(255,255,255,.1); }
.urgency-submit { padding: 15px 24px; background: var(--brand); color: #fff; border: none; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .2s; }
.urgency-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,95,24,.45); }

/* ——— TESTIMONIALS ——— */
.reviews-section { background: var(--gray-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.09); border-color: rgba(46,95,24,.3); }
.review-card::before { content: '\201C'; position: absolute; top: -4px; right: 20px; font-size: 96px; line-height: 1; color: var(--brand); opacity: .07; font-family: 'Montserrat', sans-serif; font-weight: 900; pointer-events: none; }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-star { color: #F59E0B; font-size: 16px; }
.review-text { font-size: 15px; line-height: 1.65; color: var(--text-soft); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(46,95,24,.3); }
.review-name { font-weight: 700; font-size: 14px; }
.review-city { font-size: 12px; color: var(--gray); }

/* ——— FORM ——— */
.form-section { background: var(--dark); padding: 100px 0; }
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.form-left h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.15; }
.form-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 32px; }
.form-promise { display: flex; flex-direction: column; gap: 12px; }
.form-promise-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: 14px; }
.form-promise-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(74,142,44,.2); border: 1px solid rgba(74,142,44,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-promise-icon svg { width: 12px; height: 12px; stroke: #A8D48A; }
.form-box { background: #fff; border-radius: var(--radius-lg); padding: 40px; }
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 28px; }
.form-field { margin-bottom: 16px; }
.form-label { display: block; font-weight: 600; font-size: 13px; color: var(--text-soft); margin-bottom: 6px; }
.form-input { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.form-input:focus { border-color: var(--brand); }
.form-input::placeholder { color: #9CA3AF; }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 15px; background: var(--brand); color: #fff; border: none; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: background .2s, transform .1s; margin-top: 8px; }
.form-submit:hover { background: var(--brand-dark); }
.form-submit:active { transform: scale(.99); }
.form-policy { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ——— FOOTER ——— */
footer { background: #0A1506; padding: 60px 0 36px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 280px; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.4; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: #A8D48A; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-domain { font-size: 13px; color: rgba(255,255,255,.2); }

/* ——— QUIZ ——— */
.quiz-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.68); z-index: 1000; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(5px); }
.quiz-overlay.open { display: flex; }
.quiz-box { background: #fff; border-radius: 20px; width: 100%; max-width: 540px; overflow: hidden; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,.35); max-height: 92vh; overflow-y: auto; }
/* progress */
.quiz-prog-row { padding: 24px 28px 0; text-align: center; }
.quiz-prog-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 12px; }
.quiz-prog-segs { display: flex; gap: 6px; }
.quiz-prog-seg { flex: 1; height: 4px; border-radius: 2px; background: #e2e8dd; transition: background .35s; }
.quiz-prog-seg.done { background: var(--brand); }
/* header / body */
.quiz-qheader { padding: 22px 28px 0; }
.quiz-qtitle { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 21px; color: var(--text); line-height: 1.28; margin: 0 0 4px; }
.quiz-qsub { font-size: 13px; color: var(--text-soft); margin: 0; }
.quiz-qbody { padding: 18px 28px 32px; }
/* options with radio */
.quiz-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.quiz-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border: 2px solid var(--border); border-radius: 12px; background: #fff; font-size: 15px; font-weight: 500; color: var(--text); cursor: pointer; text-align: left; transition: all .2s; }
.quiz-opt:hover { border-color: var(--brand); background: #F0F5EC; }
.quiz-opt.chosen { border-color: var(--brand); background: #F0F5EC; }
.quiz-radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #c8d4c2; flex-shrink: 0; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.quiz-opt.chosen .quiz-radio { border-color: var(--brand); background: var(--brand); }
.quiz-opt.chosen .quiz-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
/* close */
.quiz-close-btn { position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; border: none; background: #EDF2E8; border-radius: 50%; font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #888; z-index: 10; }
.quiz-close-btn:hover { background: var(--border); color: var(--text); }
/* contact form */
.quiz-form-field { margin-bottom: 14px; }
.quiz-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-soft); margin-bottom: 6px; }
.quiz-form-input { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; outline: none; transition: border .2s; box-sizing: border-box; font-family: inherit; color: var(--text); }
.quiz-form-input::placeholder { color: #aaa; }
.quiz-form-input:focus { border-color: var(--brand); }
.quiz-submit { width: 100%; padding: 16px; background: var(--brand); color: #fff; border: none; border-radius: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; cursor: pointer; transition: background .2s; margin-top: 4px; }
.quiz-submit:hover { background: var(--brand-dark); }
.quiz-policy { font-size: 11px; color: var(--text-soft); text-align: center; margin-top: 10px; margin-bottom: 0; }
.quiz-summary { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.quiz-summary-tag { background: #EEF4E9; border-radius: 20px; padding: 5px 13px; font-size: 13px; font-weight: 600; color: var(--brand); }
/* success */
.quiz-success { text-align: center; padding: 40px 20px; }
.quiz-success-icon { width: 68px; height: 68px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.quiz-success-icon svg { width: 30px; height: 30px; stroke: #16A34A; fill: none; stroke-width: 2.5; }
.quiz-success-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 10px; }
.quiz-success-text { color: var(--text-soft); font-size: 15px; line-height: 1.6; margin-bottom: 24px; max-width: 340px; margin-left: auto; margin-right: auto; }
.quiz-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background .2s; }
.quiz-wa-btn:hover { background: #1da851; }
@media(max-width:500px) { .quiz-prog-row { padding: 20px 20px 0; } .quiz-qheader { padding: 18px 20px 0; } .quiz-qbody { padding: 14px 20px 28px; } .quiz-qtitle { font-size: 18px; } }

/* ——— MODAL ——— */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 999; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); padding: 40px; max-width: 460px; width: 100%; position: relative; animation: modalIn .3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(10px); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 8px; background: var(--gray-light); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; font-size: 18px; color: var(--text-soft); }
.modal-close:hover { background: var(--border); }
.modal-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; }
.success-msg { display: none; text-align: center; padding: 24px 0; }
.success-msg.show { display: block; }
.success-icon { width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-icon svg { width: 32px; height: 32px; stroke: #16A34A; fill: none; stroke-width: 2.5; }
.success-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.success-text { color: var(--text-soft); font-size: 14px; }

/* ——— FLOATING BUTTONS ——— */
.float-wa {
  position: fixed; bottom: 96px; right: 24px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-tg {
  position: fixed; bottom: 162px; right: 24px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #229ED9; box-shadow: 0 4px 20px rgba(34,158,217,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.float-tg:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,158,217,.5); }
.float-tg svg { width: 26px; height: 26px; fill: #fff; }
.float-max {
  position: fixed; bottom: 228px; right: 24px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #5B4FD6 0%, #3E8EF5 100%);
  box-shadow: 0 4px 20px rgba(62,142,245,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.float-max:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(62,142,245,.55); }
.float-max svg { width: 28px; height: 28px; }
.float-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 300;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(17,30,8,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; opacity: 0; pointer-events: none;
}
.float-top.visible { opacity: 1; pointer-events: all; }
.float-top:hover { background: var(--brand); border-color: transparent; }
.float-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ——— MOBILE FAB ——— */
.mob-fab { display: none; position: fixed; bottom: 82px; right: 16px; z-index: 310; flex-direction: column; align-items: center; gap: 10px; }
.mob-fab-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); box-shadow: 0 4px 20px rgba(46,95,24,.45); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .28s; flex-shrink: 0; }
.mob-fab-btn.open { background: #1a3a0e; }
.mob-fab-btn svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .28s; }
.mob-fab-btn.open svg { transform: rotate(45deg); }
.mob-fab-menu { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; pointer-events: none; transform: translateY(8px) scale(.95); transition: opacity .22s, transform .22s; }
.mob-fab-menu.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.mob-fab-item { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .18s; }
.mob-fab-item:active { transform: scale(.9); }
.mob-fab-item-wa { background: #25D366; box-shadow: 0 3px 12px rgba(37,211,102,.4); }
.mob-fab-item-tg { background: #229ED9; box-shadow: 0 3px 12px rgba(34,158,217,.4); }
.mob-fab-item-max { background: linear-gradient(135deg,#5B4FD6,#3E8EF5); box-shadow: 0 3px 12px rgba(62,142,245,.4); }
.mob-fab-item svg { width: 26px; height: 26px; fill: #fff; }

/* ——— MOBILE CTA BAR ——— */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 62px; background: #fff; box-shadow: 0 -1px 0 rgba(0,0,0,.08), 0 -4px 20px rgba(0,0,0,.1); z-index: 280; padding: 8px 12px; gap: 8px; align-items: stretch; transform: translateY(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.mobile-bar.shown { transform: translateY(0); }
.mobile-bar-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; border: 2px solid var(--brand); border-radius: 10px; color: var(--brand); font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 14px; text-decoration: none; }
.mobile-bar-call svg { width: 17px; height: 17px; stroke: var(--brand); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-bar-cta { flex: 1.4; background: var(--brand); color: #fff; border: none; border-radius: 10px; font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; }
.mobile-bar-cta:active { filter: brightness(.9); }

/* ——— SCROLL FADE ——— */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.preview-all .fade-in { opacity: 1 !important; transform: none !important; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .houses-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid, .config-wrap, .mortgage-grid, .form-wrap, .calc-wrap, .urgency-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .urgency-timer-box { min-width: auto; width: 100%; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .header-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .btn { padding: 11px 16px; font-size: 13px; }
  .btn-text-short { display: inline; }
  .btn-text-full { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; font-size: 13px; padding: 14px 10px; }
  .hero-stats { gap: 24px; }
  .houses-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .config-result { position: static; }
  .mortgage-highlight-num { font-size: 36px; }
  .calc-result-box { position: static; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .timeline-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .timeline-num { flex-shrink: 0; margin-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .float-wa, .float-tg, .float-max { display: none; }
  .float-top { bottom: 150px; right: 16px; }
  .mob-fab { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 62px; }
  .page-hero { padding: 80px 0 40px; }
  .hero-cta { padding-bottom: 72px; }
  .houses-grid { gap: 28px; }
  .urgency-wrap { grid-template-columns: 1fr; gap: 32px; }
  .timer-num { font-size: 32px; }
  .faq-list { max-width: 100%; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
  .plans-cta { flex-direction: column; }
  .plans-cta .btn { width: 100%; justify-content: center; }
  header .btn-primary { display: none; }
  .logo { font-size: 18px; gap: 8px; }
  .header-right { gap: 12px; }
  .page-hero h1 { font-size: 26px; }
  .hero-stat-sep { display: none; }
  .hero-stats { justify-content: space-around; flex-wrap: wrap; row-gap: 16px; }
  .urgency-form { flex-direction: column; }
  .urgency-submit { width: 100%; }
  /* benefits: 1 column for long text on small screens */
  .benefits-inner { grid-template-columns: 1fr; }
  .benefit-num { font-size: 14px !important; line-height: 1.4; }
  /* hero CTA: stack buttons vertically */
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; flex: none; justify-content: center; }
}
