:root {
  --blue:        #1c83e3;
  --blue-dark:   #0f6fd1;
  --teal:        #16b8d4;
  --sky-1:       #CDEFFF;
  --sky-2:       #B7E0F6;
  --navy:        #16243d;
  --navy-soft:   #1f2d4a;
  --text:        #3b4358;
  --muted:       #8a93a6;
  --bg:          #f3f7fe;
  --white:       #ffffff;
  --pill-bg:     #eef2f9;
  --field-border:#e2e8f2;
  --whatsapp:    #25d366;
  --radius:      18px;
  --maxw:        1200px;
  --shadow-card: 0 30px 60px -25px rgba(28, 60, 120, 0.25);
  --shadow-btn:  0 12px 24px -8px rgba(28, 131, 227, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef1f6;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 16px;
  color: var(--navy);
}
.logo span { color: var(--blue); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  transition: transform .15s ease;
}
.whatsapp-btn:hover { transform: scale(1.08); }

.lang-switch {
  display: inline-flex;
  background: var(--pill-bg);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 999px;
  transition: all .15s ease;
}
.lang-switch a.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(28,131,227,.7);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 90px 0 80px;
}
.hero-glow {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(46,127,241,0.35) 0%, rgba(46,127,241,0.12) 35%, rgba(243,247,254,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: linear-gradient(100deg, var(--teal), var(--blue));
  color: #fff;
  padding: 16px 38px;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(28,131,227,.65); }
.btn-block { width: 100%; }

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-card);
  transition: transform .15s ease;
}
.btn-round:hover { transform: translateY(-2px); }

/* Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.pill {
  background: var(--white);
  border: 1px solid #e8eef7;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -14px rgba(28,60,120,.3);
}
.pill strong { color: var(--navy); font-weight: 800; }

/* Lead card */
.lead-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.lead-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.lead-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.field {
  font-family: inherit;
  font-size: 16px;
  padding: 15px 18px;
  border: 1px solid var(--field-border);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field::placeholder { color: #aab2c2; }
.field:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,131,227,.14);
}
.lead-form .btn-primary {
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 16px;
  margin-top: 4px;
}
.lead-note {
  margin-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero { padding: 56px 0 60px; }
  .phone-link { display: none; }
  .header-right { gap: 10px; }
  .hero-actions { flex-direction: row; }
  .btn-primary { padding: 14px 28px; font-size: 15px; }
}

/* Erişilebilirlik: hareketi azalt */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   QUIZ (Bölmə 01)
   ============================================================ */
.quiz {
  background: var(--bg);
  padding: 30px 0 90px;
}

/* Bölmə başlığı — sola hizalı, konteyner içinde */
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-eyebrow .num { color: var(--navy); }
.section-eyebrow .eyebrow-line {
  width: 46px;
  height: 1px;
  background: #c9d3e0;
}
.section-title {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
}

/* Kart */
.quiz-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* İlerleme çubuğu */
.quiz-progress {
  height: 5px;
  background: #eef2f9;
}
.quiz-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 0 4px 4px 0;
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.quiz-body {
  padding: 30px 34px 30px;
}

/* Adımlar */
.quiz-step { display: none; }
.quiz-step.is-active {
  display: block;
  animation: quizFade .3s ease;
}
@keyframes quizFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.quiz-step-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.quiz-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Seçenekler */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quiz-option {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease;
}
.quiz-option:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 22px -14px rgba(28, 131, 227, .55);
  transform: translateY(-1px);
}
.quiz-option.selected {
  border-color: var(--blue);
  background: rgba(28, 131, 227, .06);
}
.quiz-option:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* "Əvvəlki sual" */
.quiz-back {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quiz-back:hover { color: var(--blue); }

/* Son ekran (əlaqə) */
.quiz-final-sub {
  font-size: 15px;
  color: var(--muted);
  margin: -8px 0 22px;
}
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-form .btn-primary {
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 16px;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .quiz { padding: 10px 0 60px; }
  .quiz-body { padding: 24px 20px 24px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-question { font-size: 18px; }
}

/* ============================================================
   PLANS (Bölmə 02) — Mənzil tipləri və qiymətlər
   ============================================================ */
.plans {
  background: var(--white);
  padding: 90px 0;
}

/* Grid: 3 sütun, 3-dən artıq kart gələndə avtomatik növbəti sıra.
   auto-fit + minmax sayəsində JS-də heç bir say məhdudiyyəti yoxdur —
   admin panel massivə nə qədər kart əlavə etsə, grid özü düzəcək. */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
/* 3-dən çox kartda sütunları 300-340px-də sabitləyib sırala (tam genişliyə
   yayılmasının qarşısını alır, kartlar öz təbii enində qalır) */
.plans-grid:has(.plan-card:nth-child(4)),
.plans-grid--wrap {
  grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
}

.plan-card {
  background: var(--white);
  border: 1px solid #eef1f6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -28px rgba(28, 60, 120, 0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(28, 60, 120, 0.26);
}

/* Vizual sahə — yumşaq boz fon + line-art SVG */
.plan-visual {
  background: #f4f6fa;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.plan-visual svg {
  width: 100%;
  height: 100%;
  max-width: 220px;
  color: var(--blue);
}
.plan-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.plan-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.plan-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}
.plan-cta {
  font-size: 13.5px;
  letter-spacing: 0.03em;
  padding: 14px;
}

@media (max-width: 900px) {
  .plans-grid,
  .plans-grid:has(.plan-card:nth-child(4)),
  .plans-grid--wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .plans { padding: 60px 0; }
}

/* ============================================================
   FEATURES (Bölmə 04) — Niyə Renessans Residences?
   ============================================================ */
.features {
  background: var(--white);
  padding: 90px 0 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(28, 60, 120, 0.22);
  border-color: #dbe6f7;
}

.feature-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf3fe;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card:hover .feature-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.feature-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .features { padding: 56px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px; }
}

/* ============================================================
   LOCATION (Bölmə 05) — Yerləşmə və infrastruktur
   ============================================================ */
.location {
  background: var(--white);
  padding: 90px 0 100px;
}

/* Mavi nöqtəli bullet-list */
.location-points {
  list-style: none;
  margin-bottom: 32px;
  max-width: 760px;
}
.location-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 14px;
}
.location-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* Çiplər */
.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.amenity-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 999px;
  padding: 10px 20px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .location { padding: 56px 0 64px; }
  .location-points li { font-size: 14.5px; }
  .amenity-chip { font-size: 13px; padding: 9px 16px; }
}

/* ============================================================
   CALCULATOR (Bölmə 06) — Mənzilin dəyərini hesablayın
   ============================================================ */
.calc {
  background: var(--bg);
  padding: 90px 0 100px;
}

.calc-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 34px 36px 30px;
  max-width: 720px;
}

.calc-row { margin-bottom: 26px; }
.calc-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.calc-label {
  font-size: 14px;
  color: var(--muted);
}
.calc-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: color .15s ease;
}

/* Native range input → dizayna uyğunlaşdırılmış slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--fill, 50%), #e6ebf3 var(--fill, 50%), #e6ebf3 100%);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(28, 131, 227, .5);
  cursor: pointer;
  transition: transform .12s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.18); }

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(28, 131, 227, .5);
  cursor: pointer;
  transition: transform .12s ease;
}
.calc-slider::-moz-range-thumb:hover { transform: scale(1.12); }
.calc-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent; /* arxa fon yuxarıdaki background gradientdən gəlir */
}

.calc-divider {
  height: 1px;
  background: #eef1f6;
  margin: 6px 0 24px;
}

.calc-result {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.calc-result-item {
  white-space: nowrap;
}
.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.calc-result-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
}
.calc-cta {
  margin-left: auto;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 16px 28px;
  white-space: nowrap;
}

.calc-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 640px) {
  .calc { padding: 56px 0 64px; }
  .calc-card { padding: 26px 22px 24px; }
  .calc-result { gap: 18px; }
  .calc-cta { margin-left: 0; width: 100%; }
}

/* ============================================================
   TIMELINE (Bölmə 07) — Tikintinin gedişi
   ============================================================ */
.timeline {
  background: var(--white);
  padding: 90px 0 100px;
}

.timeline-stages {
  list-style: none;
  max-width: 640px;
  margin-bottom: 32px;
}

.timeline-stage {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  padding-left: 2px;
  align-items: flex-start;
}
/* Dairələri birləşdirən şaquli xətt */
.timeline-stage::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 22px;
  bottom: -2px;
  width: 1px;
  background: #dde4ee;
}
.timeline-stage:last-child::before { display: none; }
.timeline-stage:last-child { padding-bottom: 0; }

.timeline-dot {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: #fff;
  margin-top: 1px;
  z-index: 1;
  transition: background .15s ease;
}
.timeline-stage.is-active .timeline-dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(28, 131, 227, .15);
}

.timeline-stage-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.timeline-stage-period {
  font-size: 13.5px;
  color: var(--muted);
}

/* Aşağıdaki qutu — qeyd + zolaq */
.timeline-progress-box {
  background: var(--white);
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 14px 32px -26px rgba(28, 60, 120, 0.18);
}
.timeline-progress-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.timeline-progress-track {
  height: 8px;
  border-radius: 999px;
  background: #eef2f9;
  overflow: hidden;
}
.timeline-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 640px) {
  .timeline { padding: 56px 0 64px; }
  .timeline-progress-box { padding: 18px 20px; }
}

/* ============================================================
   STATS (Bölmə 08) — Renessans Residences rəqəmlərlə
   ============================================================ */
.stats {
  background: var(--white);
  padding: 90px 0 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 44px;
}
.stat-value {
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* Aşağıdaki sənəd düymələri */
.doc-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 999px;
  padding: 12px 18px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.doc-link:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 22px -16px rgba(28, 131, 227, .5);
  transform: translateY(-1px);
}
.doc-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  flex: none;
}

@media (max-width: 640px) {
  .stats { padding: 56px 0 64px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .doc-link { font-size: 12px; padding: 11px 16px; }
}

/* ============================================================
   EARLY STAGE (Bölmə 09) — Satış erkən mərhələdə başlayıb
   ============================================================ */
.early-stage {
  background: var(--white);
  padding: 90px 0 100px;
}

.early-card {
  background: linear-gradient(115deg, var(--blue-dark), var(--blue));
  border-radius: 20px;
  padding: 36px 40px 38px;
  max-width: 1000px;
  box-shadow: 0 26px 50px -28px rgba(15, 111, 209, 0.45);
}

.early-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.early-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 24px;
}

.early-card-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.early-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .early-stage { padding: 56px 0 64px; }
  .early-card { padding: 28px 24px 30px; }
  .early-card-title { font-size: 18px; }
}

/* ============================================================
   FAQ (Bölmə 10) — Tez-tez verilən suallar
   ============================================================ */
.faq {
  background: var(--white);
  padding: 90px 0 100px;
}

.faq-list {
  border-top: 1px solid #eef1f6;
}

.faq-item {
  border-bottom: 1px solid #eef1f6;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  transition: color .15s ease;
}
.faq-question:hover { color: var(--blue); }

/* Artı/eksi ikonu — tək element, ::before üfüqi, ::after şaquli xətt */
.faq-icon {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}
.faq-icon::before { width: 14px; height: 1.8px; }
.faq-icon::after   { width: 1.8px; height: 14px; }

.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-question { color: var(--blue); }

/* Cavab — qapalı vəziyyətdə hündürlüyü 0, açılanda JS max-height verir */
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
}
.faq-answer {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  padding: 0 4px 22px;
  max-width: 760px;
}

@media (max-width: 640px) {
  .faq { padding: 56px 0 64px; }
  .faq-question { font-size: 14.5px; padding: 18px 2px; }
  .faq-answer { font-size: 14px; padding-bottom: 18px; }
}

/* ============================================================
   CATALOG (Bölmə 11) — Planlaşdırmalar və qiymətlərlə PDF kataloq
   ============================================================ */
.catalog {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--sky-2) 70%, var(--sky-1) 100%);
  padding: 100px 0 110px;
}

.catalog-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.catalog-text .section-eyebrow { margin-bottom: 20px; }
.catalog-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.catalog-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  max-width: 460px;
}

.catalog-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-card);
}
.catalog-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.catalog-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.catalog-form .btn-primary {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 16px;
  margin-top: 2px;
}
.catalog-form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .catalog-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .catalog { padding: 64px 0 70px; }
  .catalog-card { padding: 26px 22px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 28px 0 36px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.footer-address {
  font-size: 13.5px;
  color: var(--text);
}
.footer-phone {
  font-weight: 700;
  text-decoration: underline;
  color: var(--navy);
}
.footer-disclaimer {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
