/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('assets/hero-bg-new.jpg') center 61%/cover no-repeat;
  background-color: #2a1f15;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

/* === LEFT COLUMN === */
.hero-left {
  flex: 1;
  max-width: 620px;
  color: #ffffff;
}

.hero-left * {
  color: inherit;
}

.hero-title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  white-space: normal;
}

.hero-title-main {
  white-space: nowrap;
}

.hero-title .highlight {
  color: #f4955c !important;
}

.hero-subtitle-accent {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #7ecfff;
  margin-bottom: 16px;
  margin-top: -8px;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-subtitle-accent strong {
  color: #FFD700;
  font-size: clamp(16px, 1.9vw, 22px);
}

.hero-title-accent {
  display: block;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 1px;
  margin-top: 6px;
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 20px;
}

.promo-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(244,149,92,0.2), rgba(255,200,50,0.15));
  border: 2px solid rgba(244,149,92,0.6);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  animation: promoPulse 2s ease-in-out infinite;
}
.promo-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #F4955C, #FFD700);
  color: #1a1a2e;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-text {
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
}
.promo-text strong {
  color: #FFD700;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,149,92,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(244,149,92,0.15); }
}
@media (max-width: 600px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 14px;
  }
  .promo-text { font-size: 14px; }
}

.hero-downpayment {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: 32px;
  color: #f4955c;
}

/* === BENEFITS === */
.hero-benefits {
  list-style: none;
  margin-bottom: 36px;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}

.hero-benefits .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #43a047;
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

/* === CTA BUTTON === */
.cta-button {
  display: inline-block;
  padding: 18px 48px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 100%);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(244, 149, 92, 0.35);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 149, 92, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-sub {
  margin-top: 16px;
  font-size: 21px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-sub-price {
  color: #f4955c;
}

/* Outline variant */
.cta-button-outline {
  background: transparent !important;
  border: 2px solid #f4955c !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(244, 149, 92, 0.15) !important;
}

.cta-button-outline:hover {
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 100%) !important;
  box-shadow: 0 8px 30px rgba(244, 149, 92, 0.35) !important;
}

/* === CTA BUTTONS STACK === */
.cta-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

/* Write us row */
.cta-write-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-write-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-messenger-btn:hover {
  transform: translateY(-2px);
}

.cta-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cta-wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.cta-tg {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 6px 20px rgba(42, 171, 238, 0.3);
}

.cta-tg:hover {
  box-shadow: 0 8px 28px rgba(42, 171, 238, 0.45);
}

/* Phone link */
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.2s;
}

.cta-phone-link:hover {
  color: #f4955c;
}

/* === CTA ROW WITH ARROW (legacy) === */
.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-arrow {
  width: 140px;
  height: 70px;
  flex-shrink: 0;
}

/* === RIGHT COLUMN — 3D PHONE === */
.hero-right {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  perspective: 1200px;
  align-self: flex-end;
  margin-bottom: -120px;
  overflow: visible;
}

.iphone-3d {
  transform: translateX(-351px) translateY(148px);
  transition: transform 0.4s ease;
}

.iphone-3d:hover {
  transform: translateX(-351px) translateY(148px);
}

/* iPhone Frame */
.iphone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  background: #1c1c1e;
  border-radius: 44px;
  border: 4px solid #3a3a3e;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.1),
    -5px 0 15px rgba(0, 0, 0, 0.3);
}

/* Screen glare */
.screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,255,255,0.03) 100%
  );
  pointer-events: none;
  z-index: 20;
  border-radius: 40px;
}

/* Dynamic Island */
.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Status bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 4px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 5;
  position: relative;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.battery-icon {
  width: 22px;
  height: 11px;
  border: 1.5px solid white;
  border-radius: 3px;
  padding: 1px;
  position: relative;
}

.battery-icon::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: white;
  border-radius: 0 1px 1px 0;
}

.battery-fill {
  width: 80%;
  height: 100%;
  background: #f4955c;
  border-radius: 1px;
}

.chat-back-arrow {
  font-size: 22px;
  color: #f4955c;
  font-weight: 300;
  margin-right: 4px;
}

/* Side buttons */
.iphone-frame::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 120px;
  width: 4px;
  height: 28px;
  background: #3a3a3e;
  border-radius: 2px 0 0 2px;
  z-index: 30;
}

.iphone-frame::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 160px;
  width: 4px;
  height: 55px;
  background: #3a3a3e;
  border-radius: 0 2px 2px 0;
  z-index: 30;
}

/* Screen */
.iphone-screen {
  height: 100%;
  background: linear-gradient(180deg, #1a1d23 0%, #141619 100%);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 10px;
  background: #212329;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4955c, #e8783a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.chat-info {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-size: 13px;
  font-weight: 600;
}

.chat-status {
  font-size: 10px;
  opacity: 0.6;
}

/* Chat messages */
.chat-messages {
  flex: 1;
  padding: 10px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chat-bubble {
  background: #2a2d35;
  color: #e8eaed;
  padding: 7px 10px;
  border-radius: 8px 8px 8px 2px;
  font-size: 11px;
  line-height: 1.4;
  max-width: 92%;
  align-self: flex-start;
}

.chat-blueprint {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2a2d35;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 10px;
  color: #b0b3b8;
  max-width: 80%;
}

.blueprint-icon {
  font-size: 16px;
}

/* Chat input bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #212329;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.send-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f4955c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
}

/* Home bar */
.iphone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 6px auto 8px;
}

/* === SECTIONS COMMON === */
.section {
  padding: 48px 24px;
  position: relative;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title .highlight {
  color: #f4955c;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(15px, 1.8vw, 18px);
  color: #5a6070;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* === SECTION 1: SEASON === */
.section-season {
  background: linear-gradient(135deg, #fdf6f0 0%, #ffffff 50%, #f0f4ff 100%);
  padding-top: 24px;
}

/* Gradient text on "за один сезон" */
.section-season .section-title {
  font-size: clamp(30px, 5.5vw, 68px);
}

.section-season .section-title .highlight {
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 50%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-season .section-subtitle {
  font-style: italic;
  font-weight: 400;
  color: #8a8f9c;
}

/* House Carousel */
.house-carousel {
  position: relative;
  margin: 40px auto 50px;
  max-width: 960px;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 56.25%; /* 9/16 = 16:9 */
}

.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.7);
}

.carousel-dot.active {
  background: #f4955c;
  transform: scale(1.2);
}

/* Carousel CTA button */
.carousel-cta-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-cta-btn {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #1a2d5a;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(26,45,90,0.5);
  transition: all 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-cta-btn:hover {
  background: #243d7a;
  transform: scale(1.07);
  box-shadow: 0 12px 40px rgba(26,45,90,0.65);
}

/* Pulsing badge */
.season-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4955c 0%, #e67e22 100%);
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  animation: seasonPulse 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes seasonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 149, 92, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(244, 149, 92, 0);
  }
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 17px;
}

/* Gradient border via background trick */
.season-card {
  background: linear-gradient(160deg, #ffffff 0%, #fffbf7 100%);
  border: none;
  border-radius: 18px;
  padding: 25px 22px;
  position: relative;
  isolation: isolate;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.season-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(244, 149, 92, 0.3), rgba(232, 120, 58, 0.08), rgba(244, 149, 92, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.season-card:hover {
  transform: translateY(-5px);
}

.season-card:hover::before {
  background: linear-gradient(135deg, #f4955c, #e8783a, #f4955c);
}

.season-card--accent {
  background: linear-gradient(160deg, #fff8f2 0%, #fee8d6 100%);
}

.season-card--accent::before {
  background: linear-gradient(135deg, #f4955c, #e67e22, #f4955c);
}

/* Icon badges */
.season-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4955c 0%, #f0c27f 100%);
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(244, 149, 92, 0.25);
}

.season-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.season-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0;
}

.season-card p {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.45;
}

/* === SECTION 2: MORTGAGE === */
.section-mortgage {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 228, 196, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 218, 185, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 245, 238, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #fff5ef 0%, #ffffff 100%);
}

.mortgage-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4955c 0%, #e67e22 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mortgage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

/* Glass morphism stat cards */
.mortgage-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 18px 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mortgage-stat:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(244, 149, 92, 0.4);
  transform: translateY(-4px);
}

/* Large gradient numbers */
.mortgage-stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 40%, #d44000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.1;
}

.mortgage-stat-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Green accent border-left */
.mortgage-conditions {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 4px solid #43a047;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
}

.mortgage-cond-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.mortgage-cond-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.mortgage-cond-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.mortgage-cond-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #43a047;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* Warning: red gradient + pulse */
.mortgage-warning {
  display: inline-block;
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  color: #ffffff;
  animation: warningPulse 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.mortgage-warning strong {
  color: #ffeb3b;
}

@keyframes warningPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
  }
}

/* === SECTION 3: STEPS (Timeline) === */
.section-steps {
  background: #f8f9fb;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(10% + 4px);
  right: calc(10% + 4px);
  height: 2px;
  background: linear-gradient(90deg, #f4955c 0%, #fbc97f 50%, #f4955c 100%);
  z-index: 0;
}

.step-card {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  padding: 28px 18px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-card:hover {
  border-color: #f4955c;
  box-shadow: 0 8px 32px rgba(244, 149, 92, 0.15);
  transform: translateY(-4px);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(244, 149, 92, 0.35);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff5ef 0%, #ffeedd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-icon-wrap svg {
  display: block;
}

.step-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}

.step-card p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.step-card:last-child {
  grid-column: span 2;
}

/* === SECTION: REVIEWS === */
.section-reviews {
  background: #f4f5f7;
  padding-top: 56px;
  padding-bottom: 56px;
}

.reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.yandex-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.yandex-rating-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.yandex-rating-score {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.yandex-rating-stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 1px;
}

.yandex-rating-count {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Carousel wrapper with side arrows */
.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-prev,
.reviews-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reviews-prev:hover,
.reviews-next:hover {
  border-color: #f4955c;
  background: #fff5ef;
}

.reviews-dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.reviews-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.reviews-dot.active {
  background: #f4955c;
  width: 22px;
  border-radius: 4px;
}

/* Review card — новый стиль */
.review-card {
  background: #ffffff;
  border: 1px solid #e9eaec;
  border-radius: 18px;
  padding: 22px 20px 18px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  box-sizing: border-box;
}

.review-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.review-quote {
  font-size: 40px;
  line-height: 1;
  color: #f4955c;
  font-family: Georgia, serif;
  margin-bottom: -8px;
  opacity: 0.7;
}

.review-text {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4955c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-loc {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 1px;
}

.review-stars {
  color: #FFB800;
  font-size: 12px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
  .reviews-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
  }
  .reviews-carousel-wrap {
    gap: 8px;
  }
  .reviews-prev,
  .reviews-next {
    width: 34px;
    height: 34px;
  }
}

/* === TOP ALERT BAR === */
.top-alert-bar {
  background: linear-gradient(90deg, #e8640a 0%, #f4955c 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 100;
}

.top-alert-bar strong {
  font-weight: 800;
}

@media (max-width: 540px) {
  .top-alert-bar {
    font-size: 12.5px;
    padding: 8px 12px;
  }
}

/* === SECTION 4: LEAD FORM === */
.section-leadform {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0c1222 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative dot pattern */
.section-leadform::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Decorative geometric shapes */
.section-leadform::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 149, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-leadform .section-inner {
  position: relative;
  z-index: 1;
}

/* White title on dark bg */
.section-leadform .section-title {
  color: #ffffff;
}

.section-leadform .section-title .highlight {
  background: linear-gradient(135deg, #f4955c 0%, #f0c27f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-leadform .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* Glass morphism form card */
.lead-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Adjust form colors for dark bg */
.section-leadform .lead-field label {
  color: rgba(255, 255, 255, 0.75);
}

.section-leadform .lead-field select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-leadform .lead-field select:focus {
  border-color: #f4955c;
  background: rgba(255, 255, 255, 0.12);
}

.section-leadform .lead-field select option {
  background: #1e293b;
  color: #ffffff;
}

.section-leadform .lead-contact-row input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-leadform .lead-contact-row input:focus {
  border-color: #f4955c;
  background: rgba(255, 255, 255, 0.12);
}

.section-leadform .lead-contact-row input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Glow CTA button */
.section-leadform .lead-submit-btn {
  box-shadow: 0 0 20px rgba(244, 149, 92, 0.4), 0 4px 16px rgba(244, 149, 92, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-leadform .lead-submit-btn:hover {
  box-shadow: 0 0 36px rgba(244, 149, 92, 0.6), 0 8px 24px rgba(244, 149, 92, 0.4);
  transform: translateY(-2px);
}

.section-leadform .form-disclaimer {
  color: rgba(255, 255, 255, 0.35);
}

.section-leadform .form-disclaimer .privacy-link {
  color: rgba(255, 255, 255, 0.5);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

/* Inline Quiz */
.inline-quiz {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.inline-quiz .form-step {
  display: none;
}
.inline-quiz .form-step.active {
  display: block;
}
.inline-quiz .form-progress {
  margin-bottom: 16px;
}
.inline-quiz .step-counter {
  text-align: center;
  margin-bottom: 16px;
}
.inline-quiz h2,
.inline-quiz .step-desc,
.inline-quiz .step-counter,
.inline-quiz .slider-value,
.inline-quiz .slider-labels span,
.inline-quiz .option-text,
.inline-quiz .form-disclaimer,
.inline-quiz .form-disclaimer .privacy-link,
.inline-quiz .contact-form label,
.inline-quiz .success-screen h2,
.inline-quiz .success-screen p {
  color: #fff;
}
.inline-quiz .option-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.inline-quiz .option-card:hover {
  background: rgba(244,149,92,0.15);
  border-color: rgba(244,149,92,0.6);
}

/* Callback modal */
.cta-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
  text-transform: none;
}

.callback-modal {
  max-width: 440px;
}
.callback-modal h2 {
  color: #fff;
}
.callback-modal .step-desc {
  color: rgba(255,255,255,0.6);
}

.lead-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
}

.lead-field select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #1a1a2e;
  background: #f8f9fb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.lead-field select:focus {
  border-color: #f4955c;
}

.lead-field select option {
  background: #ffffff;
  color: #1a1a2e;
}

.lead-contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 16px;
}

.lead-contact-row input {
  flex: 1;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #1a1a2e;
  background: #f8f9fb;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.lead-contact-row input:focus {
  border-color: #f4955c;
  background: #fff;
}

.lead-contact-row input::placeholder {
  color: #9ca3af;
}

.lead-submit-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.lead-form .form-disclaimer {
  text-align: center;
}

/* SECTIONS RESPONSIVE */
@media (max-width: 768px) {
  .section-season {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .section-season .section-title {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 6px;
  }

  .section-season .section-subtitle {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .season-badge {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 4px;
  }

  .section-house-photo {
    margin: 16px auto 20px;
  }

  .house-carousel {
    max-width: 100%;
    margin: 16px auto 20px;
    border-radius: 10px;
  }

  .season-card {
    padding: 16px 13px;
  }

  .season-card-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .season-card h3 {
    font-size: 16px;
  }

  .season-card p {
    font-size: 14px;
  }
  .section {
    padding: 36px 16px;
  }

  .season-top {
    flex-direction: column;
    text-align: center;
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* 2-column grid on mobile */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card:last-child {
    grid-column: span 2;
  }

  .step-card {
    padding: 20px 14px 18px;
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .step-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .step-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .mortgage-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mortgage-cond-list {
    flex-direction: column;
    gap: 8px;
  }

  .lead-form {
    padding: 20px 16px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-contact-row {
    flex-direction: column;
  }

  .lead-contact-row input,
  .lead-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .season-card {
    padding: 13px 10px;
  }

  .season-card-header {
    gap: 6px;
    margin-bottom: 4px;
  }

  .season-card-icon {
    width: 29px;
    height: 29px;
    font-size: 15px;
  }

  .season-card h3 {
    font-size: 14px;
  }

  .season-card p {
    font-size: 13px;
    line-height: 1.3;
  }

  .steps-grid {
    gap: 8px;
  }

  .step-card {
    padding: 16px 10px;
  }

  .step-card h3 {
    font-size: 13px;
  }

  .step-card p {
    font-size: 11.5px;
  }

  .step-num {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .mortgage-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  padding: 40px 36px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s;
  border: 1px solid #e0e4ea;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: #1a1a2e;
}

/* Progress bar */
.form-progress {
  height: 4px;
  background: #e8ebf0;
  border-radius: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #f4955c, #e8783a);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Step counter */
.step-counter {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Slider */
.slider-container {
  padding: 20px 0 28px;
}

.slider-value {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #f4955c;
  margin-bottom: 20px;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #f4955c 0%,
    #f4955c var(--fill, 18%),
    #e8ebf0 var(--fill, 18%),
    #e8ebf0 100%
  );
  outline: none;
  cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4955c, #e8783a);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(244, 149, 92, 0.4);
  cursor: grab;
}

.custom-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}

.custom-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4955c, #e8783a);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(244, 149, 92, 0.4);
  cursor: grab;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  color: #9ca3af;
}

.next-btn {
  width: 100%;
  margin-top: 8px;
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Option cards */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f8f9fb;
  border: 1px solid #e0e4ea;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a2e;
  text-align: left;
}

.option-card:hover {
  background: #fff5ef;
  border-color: #f4955c;
  transform: translateX(4px);
}

.option-card:active {
  transform: translateX(2px);
}

.option-icon {
  font-size: 28px;
  min-width: 36px;
  text-align: center;
}

.option-text {
  font-size: 16px;
  font-weight: 600;
}

.option-sub {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-top: 2px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group input {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #1a1a2e;
  background: #f8f9fb;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.input-group input:focus {
  border-color: #f4955c;
  background: #ffffff;
}

.input-group input::placeholder {
  color: #9ca3af;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.form-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

.privacy-link {
  color: #6b7280;
  text-decoration: underline;
}

/* Success screen */
.success-screen {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.success-screen h2 {
  text-align: center;
  margin-bottom: 12px;
}

.success-screen p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-screen .cta-button {
  width: 100%;
}

/* Hero bottom row — hidden on desktop, shown on mobile */
.hero-bottom-row {
  display: none;
}
.hero-bottom-messengers {
  display: none;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background: url('assets/hero-bg-mobile.jpg') center center/cover no-repeat;
    background-color: #1a3a1a;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.7) 70%,
      rgba(0, 0, 0, 0.85) 100%
    );
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 24px 14px 10px;
    align-items: center;
    gap: 6px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    text-align: center;
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 6px;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-benefits {
    display: inline-block;
    text-align: left;
    margin-bottom: 10px;
  }

  .hero-benefits li {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-subtitle {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .promo-banner {
    margin-bottom: 8px;
    padding: 8px 10px;
  }

  .hero-downpayment {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .cta-arrow {
    display: none;
  }

  .cta-row {
    justify-content: center;
  }

  .cta-button {
    width: 100%;
    max-width: 360px;
    padding: 14px 36px;
    font-size: 15px;
  }

  .cta-sub {
    font-size: 14px;
  }

  .cta-buttons-stack {
    align-items: center;
    gap: 8px;
  }

  .cta-write-row {
    display: none;
  }

  .cta-write-label {
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
  }

  .cta-messenger-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .cta-phone-link {
    font-size: 17px;
    justify-content: center;
  }

  /* Phone + Messengers in one row on mobile */
  .hero-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .hero-right {
    display: flex;
    justify-content: flex-start;
    align-self: center;
    margin-bottom: -80px;
    margin-top: 0px;
    overflow: hidden;
    max-height: 280px;
    flex-shrink: 0;
  }

  .hero-bottom-messengers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .hero-bottom-messengers .cta-write-label {
    width: auto;
    text-align: left;
    font-size: 11px;
  }

  .hero-bottom-messengers .cta-messenger-btn {
    width: 100%;
    justify-content: center;
  }

  .iphone-3d {
    transform: none !important;
  }

  .iphone-frame {
    width: 200px;
    height: 420px;
    border-radius: 34px;
  }

  .iphone-notch {
    width: 70px;
    height: 22px;
    top: 10px;
  }

  .chat-bubble {
    font-size: 10px;
    padding: 5px 8px;
  }

  .chat-name {
    font-size: 11px;
  }

  .chat-status {
    font-size: 9px;
  }

  .chat-avatar {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }

  .chat-blueprint {
    font-size: 9px;
    padding: 6px 8px;
  }

  .status-bar {
    font-size: 10px;
    padding: 12px 14px 2px;
  }

  .chat-input-bar {
    font-size: 9px;
    padding: 6px 10px;
  }

  .send-icon {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .iphone-home-bar {
    width: 80px;
    height: 3px;
    margin: 4px auto 6px;
  }
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;
  padding: 18px 48px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #f4955c 0%, #e8783a 100%);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(244, 149, 92, 0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  box-shadow: 0 12px 40px rgba(244, 149, 92, 0.55), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateX(-50%) translateY(-2px);
}

.floating-cta:active {
  transform: translateX(-50%) translateY(0);
}

/* Pulse animation for attention */
.floating-cta.visible {
  animation: floatingPulse 3s ease-in-out infinite;
}

@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(244, 149, 92, 0.4), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 8px 40px rgba(244, 149, 92, 0.6), 0 2px 12px rgba(0,0,0,0.3); }
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    padding: 16px 36px;
    font-size: 15px;
    width: calc(100% - 40px);
    max-width: 360px;
  }
}

/* === FOOTER === */
.footer {
  background: #f8f9fb;
  border-top: 1px solid #e8ebf0;
  padding: 28px 24px;
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f4955c;
}

.footer-dot {
  color: #d1d5db;
  margin: 0 10px;
  font-size: 13px;
}

.footer-copy {
  font-size: 12px;
  color: #9ca3af;
}

@media (max-width: 480px) {
  .hero-content {
    padding: 32px 16px;
  }

  .modal {
    padding: 28px 20px;
    width: 95%;
  }

  .option-card {
    padding: 14px 16px;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  max-width: 600px;
}

.cookie-banner a {
  color: #f4955c;
  text-decoration: underline;
}

.cookie-accept {
  background: #f4955c;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: #e67e22;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 14px 16px;
  }
}
