/* ============================================
   Doktor Jahongir Raximov — Landing
   Brand colors: navy #19243C, gold #B89968
   Mobile-first
   ============================================ */

:root {
  --c-navy: #19243C;
  --c-navy-dark: #0F1729;
  --c-gold: #B89968;
  --c-gold-dark: #9C8050;
  --c-white: #FFFFFF;
  --c-gray-light: #F5F5F5;
  --c-gray-border: #E5E5E5;
  --c-text: #1A1A1A;
  --c-text-secondary: #666666;
  --c-success: #2E7D32;
  --c-error: #C62828;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(25, 36, 60, 0.06);
  --shadow-md: 0 6px 20px rgba(25, 36, 60, 0.10);
  --shadow-lg: 0 12px 40px rgba(25, 36, 60, 0.14);

  --container: 1200px;
  --container-narrow: 900px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 70px; /* sticky mobile bar offset */
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--c-navy); }
h1 { font-size: clamp(28px, 5vw, 44px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 36px); letter-spacing: -0.015em; margin-bottom: 16px; }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: 18px; }
p { margin-bottom: 12px; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }
@media (min-width: 768px) { section { padding: 80px 0; } }
@media (min-width: 1024px) { section { padding: 100px 0; } }

.section-gray { background: var(--c-gray-light); }
.section-navy { background: var(--c-navy); color: var(--c-white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--c-white); }

.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--c-text-secondary); font-size: 17px; max-width: 720px; margin: 0 auto 48px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--c-gold); color: var(--c-navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-gold-dark); color: var(--c-navy); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn-outline:hover { background: var(--c-navy); color: var(--c-white); }
.btn-outline-light { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); }
.btn-outline-light:hover { background: var(--c-white); color: var(--c-navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 18px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-gray-border);
  transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-navy);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-sub { font-size: 11px; font-weight: 500; color: var(--c-text-secondary); margin-top: 2px; letter-spacing: 0.02em; }
.nav { display: none; gap: 24px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { font-size: 15px; color: var(--c-text); font-weight: 500; }
.nav a:hover { color: var(--c-gold-dark); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  display: inline-flex;
  background: var(--c-gray-light);
  border-radius: var(--radius-sm);
  padding: 3px;
  font-size: 13px;
  font-weight: 600;
}
.lang-switch a {
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--c-text-secondary);
  text-decoration: none;
}
.lang-switch a.active { background: var(--c-navy); color: var(--c-white); }
.header-phone { color: var(--c-navy); font-weight: 600; font-size: 15px; }
.header-phone-icon { display: inline-flex; }
@media (max-width: 767px) {
  .header-phone span { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}
@media (min-width: 768px) { .hero { padding: 60px 0 80px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 60px; } }
.hero h1 { margin-bottom: 16px; }
.hero-sub { font-size: 17px; color: var(--c-text-secondary); margin-bottom: 24px; max-width: 560px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-gray-light);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
}
.hero-bullets { margin: 0 0 28px; }
.hero-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--c-gold);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.hero-cta .btn { flex: 1 1 auto; min-width: 200px; }
@media (max-width: 480px) { .hero-cta .btn { width: 100%; } }
.hero-social-proof { font-size: 14px; color: var(--c-text-secondary); }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #19243C 0%, #2A3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo::after {
  content: 'ФОТО ВРАЧА';
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(25, 36, 60, 0.85);
  color: var(--c-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* ===== Video block ===== */
.video-section { background: var(--c-navy); color: var(--c-white); }
.video-section h2 { color: var(--c-white); }
.video-section .section-subtitle { color: rgba(255,255,255,0.75); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1F2D4A 0%, #0F1729 100%);
  cursor: pointer;
  color: var(--c-white);
}
.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s;
}
.video-placeholder:hover .video-play-icon { transform: scale(1.08); }
.video-play-icon::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--c-navy);
  margin-left: 6px;
}
.video-placeholder-text { font-size: 13px; opacity: 0.6; letter-spacing: 0.08em; text-transform: uppercase; }
.video-description {
  text-align: center;
  margin: 24px auto 28px;
  max-width: 720px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.video-cta { text-align: center; }
.video-cta .btn-note { display: block; margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }

/* Compact video (anesthesia block) */
.video-wrapper-compact { max-width: 600px; margin: 0 auto 32px; }

/* ===== Symptoms grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.card h3 { margin-bottom: 8px; font-size: 18px; }
.card p { color: var(--c-text-secondary); font-size: 15px; margin: 0; }
.cta-after { text-align: center; margin-top: 40px; }

.emotional-text {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 17px;
  color: var(--c-navy);
  font-weight: 500;
  line-height: 1.6;
}

/* ===== "What if not" cards ===== */
.consequence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .consequence-grid { grid-template-columns: repeat(2, 1fr); } }
.consequence-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: 24px;
}
.consequence-card h3 { font-size: 19px; margin-bottom: 8px; }
.consequence-card p { color: var(--c-text); font-size: 15px; margin: 0; }

.doctor-quote {
  background: var(--c-gray-light);
  border-left: 4px solid var(--c-gold);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  font-style: italic;
  font-size: 17px;
  color: var(--c-navy);
  max-width: 800px;
  margin: 0 auto;
}
.doctor-quote-author { display: block; margin-top: 12px; font-style: normal; font-weight: 600; font-size: 14px; color: var(--c-text-secondary); }

/* ===== Method comparison table ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 40px;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-gray-border);
  font-size: 14px;
  vertical-align: top;
}
.compare-table th { background: var(--c-gray-light); font-weight: 700; color: var(--c-navy); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table td.col-old { color: var(--c-text-secondary); }
.compare-table td.col-new { color: var(--c-navy); font-weight: 600; background: rgba(184, 153, 104, 0.06); }
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .compare-table th, .compare-table td { padding: 10px 8px; font-size: 13px; }
}

.fact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .fact-cards { grid-template-columns: repeat(3, 1fr); } }
.fact-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.fact-card-icon { font-size: 32px; margin-bottom: 10px; }
.fact-card h4 { margin-bottom: 4px; }
.fact-card p { font-size: 14px; color: var(--c-text-secondary); margin: 0; }

.disclaimer-small {
  margin-top: 32px;
  font-size: 13px;
  color: var(--c-text-secondary);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Doctor block ===== */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) { .doctor-grid { grid-template-columns: 0.85fr 1fr; gap: 56px; } }
.doctor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #19243C 0%, #2A3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.doctor-photo::after {
  content: 'ФОТО ВРАЧА';
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.doctor-photo-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-text-secondary);
  text-align: center;
}
.doctor-info h2 { margin-bottom: 6px; }
.doctor-title { color: var(--c-text-secondary); font-size: 16px; margin-bottom: 28px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--c-gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--c-text-secondary); line-height: 1.3; }

.doctor-paragraph { margin-bottom: 16px; font-size: 16px; }
.doctor-personal {
  background: linear-gradient(135deg, #FAF6EE 0%, #F5EFE0 100%);
  border-left: 4px solid var(--c-gold);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
  margin: 24px 0;
}
.doctor-personal-label {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ===== Anesthesia block ===== */
.anesthesia-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .anesthesia-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .anesthesia-cards { grid-template-columns: repeat(3, 1fr); } }
.anesthesia-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.anesthesia-card-icon { font-size: 32px; margin-bottom: 8px; color: var(--c-gold-dark); }
.anesthesia-card h4 { margin-bottom: 10px; font-size: 17px; }
.anesthesia-card p { font-size: 14px; color: var(--c-text); margin: 0; line-height: 1.55; }

/* ===== Timeline ===== */
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid var(--c-gray-border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-gold-dark);
}
.timeline-content h4 { margin-bottom: 4px; font-size: 16px; }
.timeline-content p { font-size: 14px; color: var(--c-text-secondary); margin: 0; }

.aftercare-card {
  background: var(--c-gray-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.aftercare-card h3 { margin-bottom: 12px; }
.aftercare-card ul { padding: 0; }
.aftercare-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}
.aftercare-card li::before { content: '•'; color: var(--c-gold); position: absolute; left: 6px; font-weight: 700; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }
.price-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--c-gold);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card.featured::before {
  content: attr(data-label);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-navy);
  margin-bottom: 16px;
  line-height: 1;
}
.price-includes-title { font-size: 13px; font-weight: 700; color: var(--c-text-secondary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.price-includes { padding: 0; margin: 0 0 20px; flex-grow: 1; }
.price-includes li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--c-text);
}
.price-includes li::before { content: '✓'; color: var(--c-gold-dark); position: absolute; left: 0; font-weight: 700; }
.price-extras { font-size: 12px; color: var(--c-text-secondary); margin-bottom: 16px; font-style: italic; }
.price-card .btn { width: 100%; }

.pricing-extras {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--c-gray-light);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-extras ul { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 768px) { .pricing-extras ul { grid-template-columns: repeat(3, 1fr); } }
.pricing-extras li { font-size: 14px; }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--c-gold); margin-bottom: 10px; font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--c-text); margin-bottom: 16px; line-height: 1.6; font-style: italic; }
.review-author { font-size: 13px; color: var(--c-text-secondary); font-weight: 500; }

.results-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding: 28px;
  background: var(--c-navy);
  border-radius: var(--radius-md);
  color: var(--c-white);
}
@media (min-width: 768px) { .results-bar { grid-template-columns: repeat(4, 1fr); } }
.results-bar .stat-number { color: var(--c-gold); }
.results-bar .stat-label { color: rgba(255,255,255,0.75); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--c-white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--c-white);
}
.faq-question:hover { background: var(--c-gray-light); }
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--c-gold-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after { width: 2px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; line-height: 1.65; color: var(--c-text); }
.faq-item.open .faq-answer { max-height: 800px; }

/* ===== Final CTA + Contacts ===== */
.final-cta-form {
  max-width: 540px;
  margin: 0 auto 56px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-border);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-gray-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--c-white);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--c-text-secondary); }
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.form-note { display: block; text-align: center; margin-top: 10px; font-size: 12px; color: var(--c-text-secondary); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) { .contacts-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h3 { margin-bottom: 14px; }
.contact-info p { font-size: 15px; margin-bottom: 8px; }
.contact-info .icon { display: inline-block; width: 22px; }
.contacts-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-secondary);
  font-size: 13px;
  border: 1px solid var(--c-gray-border);
}
.contacts-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 {
  color: var(--c-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer ul li { margin-bottom: 6px; font-size: 14px; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--c-gold); text-decoration: none; }
.footer-brand { font-size: 18px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; font-family: var(--font-heading); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) { .footer-bottom { grid-template-columns: 2fr 1fr; align-items: center; } }
.footer-bottom-right { text-align: left; }
@media (min-width: 768px) { .footer-bottom-right { text-align: right; } }
.footer-disclaimer { line-height: 1.5; }

/* ===== Sticky Mobile Bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--c-white);
  border-top: 1px solid var(--c-gray-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 64px;
}
.sticky-bar a, .sticky-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  border-right: 1px solid var(--c-gray-border);
  background: var(--c-white);
}
.sticky-bar > *:last-child { border-right: none; }
.sticky-bar svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (min-width: 768px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 41, 0.72);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; animation: modalFade 0.2s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 500px;
  width: 100%;
  margin: auto 0;
  position: relative;
  animation: modalSlide 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-text);
  line-height: 1;
}
.modal-close:hover { background: var(--c-gray-border); }
.modal h3 { margin-bottom: 6px; }
.modal-sub { color: var(--c-text-secondary); font-size: 14px; margin-bottom: 20px; }
.modal-alt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-gray-border);
  text-align: center;
  font-size: 13px;
  color: var(--c-text-secondary);
}
.modal-alt-buttons { display: flex; gap: 8px; margin-top: 10px; }
.modal-alt-buttons a { flex: 1; padding: 10px; border-radius: var(--radius-sm); background: var(--c-gray-light); color: var(--c-navy); font-weight: 600; font-size: 14px; text-align: center; }
.modal-alt-buttons a:hover { background: var(--c-navy); color: var(--c-white); text-decoration: none; }
.modal-disclaimer { margin-top: 16px; font-size: 11px; color: var(--c-text-secondary); text-align: center; line-height: 1.5; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.shown { display: block; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--c-success); color: var(--c-white); display: inline-flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 16px; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
