/* ============================================================
   Инсайт-Хэлп — Стоматологическая клиника
   Static CSS Export
   ============================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
  --gold: #c8a882;
  --gold-dark: #b8977a;
  --gold-light: #d4b89a;
  --brown-dark: #3a2820;
  --brown-darker: #2a1810;
  --brown-deep: #1e1410;
  --brown-mid: #4a3830;
  --brown-text: #7a5c4a;
  --bg-cream: #faf5f0;
  --bg-warm: #f7f0e8;
  --border-warm: #ecddc8;
  --bg-circle-start: #f5ede3;
  --gradient-hero-start: #c4aa96;
  --gradient-hero-mid: #9e7f6e;
  --gradient-hero-end: #7a5c4a;
  --gradient-card-start: #d4c5b5;
  --gradient-card-end: #9e7f6e;
  --gradient-map-start: #ede5db;
  --gradient-map-end: #cfc5b8;

  --text-dark: #1f2937;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-xlight: #d1d5db;

  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 12px 48px rgba(0,0,0,0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --max-w: 1280px;
  --px: 1rem;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

/* ── 2. CSS Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  border: none;
  outline: none;
}

/* ── 3. Layout Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.text-center { text-align: center; }
.hidden { display: none !important; }

/* ── 4. Typography ── */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--text-dark);
}

/* ── 5. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--brown-darker);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-full);
  padding: 0.7rem 2.5rem;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full { width: 100%; padding: 0.875rem; border-radius: var(--radius-lg); }
.btn-pill { border-radius: var(--radius-full); padding: 0.5rem 1.5rem; }

/* ── 6. Form Elements ── */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  transition: box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

.form-input--white-bg {
  background: rgba(255,255,255,0.9);
}

.form-input--bordered {
  border: 1px solid #e5e7eb;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.1rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

/* ── 7. Header ── */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.header-top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-top-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.header-top-item a:hover {
  color: var(--gold);
}

.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}

.header-nav a:hover {
  color: var(--gold);
}

.services-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  gap: 0.125rem;
}

.services-nav a {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.services-nav a:hover {
  color: var(--gold);
  background: var(--bg-cream);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--text-dark);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 0.75rem 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu-phones {
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mobile-menu-phones div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── 8. Hero Section ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gradient-hero-start) 0%, var(--gradient-hero-mid) 50%, var(--gradient-hero-end) 100%);
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -5rem;
  right: 5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.10;
  filter: blur(48px);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.05;
  filter: blur(64px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-text {
  color: var(--white);
}

.hero-promo-label {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* ── 9. Appointment Form (Hero) ── */
.appt-form-card {
  background: rgba(60,40,30,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.appt-form-title {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.appt-form-card .form-input {
  margin-bottom: 0.75rem;
}

.appt-form-card .checkbox-label {
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.success-state {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  font-size: 3.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

.success-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.success-sub {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* ── 10. Stats Bar ── */
.stats-bar {
  background: var(--bg-warm);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-warm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-val {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ── 11. Advantages ── */
.advantages {
  padding: 4rem 0;
  background: var(--white);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.advantage-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.advantage-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-circle-start);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1.125rem;
  color: var(--gold);
}

.advantage-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.advantage-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.logo-circle {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-circle-start) 0%, var(--gold-light) 100%);
  border: 5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
}

.logo-circle-inner {
  text-align: center;
}

.logo-circle-emoji {
  font-size: 3.75rem;
  display: block;
}

.logo-circle-text {
  color: var(--brown-text);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ── 12. CTA Banner ── */
.cta-banner {
  padding: 3.5rem 0;
  background: var(--brown-mid);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-text p {
  color: var(--gold-light);
  font-size: 0.875rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 42rem;
  flex-wrap: wrap;
}

.cta-form .form-input {
  flex: 1;
  min-width: 180px;
}

.cta-consent {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  cursor: pointer;
}

.cta-consent input {
  accent-color: var(--gold);
  cursor: pointer;
}

/* ── 13. Reviews ── */
.reviews {
  padding: 4rem 0;
  background: var(--bg-cream);
}

.reviews-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.reviews-tabs-inner {
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.reviews-tab-btn {
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.review-star {
  color: var(--gold);
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.review-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-full);
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.review-dot.active {
  width: 1.5rem;
  background: var(--gold);
}

/* ── 14. About + FAQ ── */
.about-faq {
  padding: 4rem 0;
  background: var(--white);
}

.about-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat-card {
  text-align: center;
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: 1rem;
  border: 1px solid var(--border-warm);
}

.about-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question-text {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
  flex: 1;
}

.faq-chevron {
  font-size: 1.1rem;
  color: #9ca3af;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: color 0.2s, transform 0.2s;
}

.faq-item.open .faq-chevron {
  color: var(--gold);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0.75rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #f3f4f6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-cta-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-cta-hint:hover {
  color: var(--gold);
}

/* ── 15. Services ── */
.services {
  padding: 4rem 0;
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover .service-title {
  color: var(--gold);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.service-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 16. Doctors ── */
.doctors {
  padding: 4rem 0;
  background: var(--white);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.doctor-card {
  cursor: pointer;
}

.doctor-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
  background: linear-gradient(160deg, var(--gradient-card-start) 0%, var(--gradient-card-end) 100%);
}

.doctor-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-emoji {
  font-size: 4rem;
  opacity: 0.6;
}

.doctor-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255,255,255,0.8);
  color: var(--brown-text);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.doctor-info {
  text-align: center;
}

.doctor-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.doctor-spec {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.doctors-show-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── 17. Bottom CTA Section ── */
.bottom-cta {
  padding: 4rem 0;
  background: var(--bg-cream);
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bottom-cta-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--gradient-card-start) 0%, var(--gradient-card-end) 100%);
}

.bottom-cta-visual-inner {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.bottom-cta-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
}

.bottom-cta-visual-title {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.95;
}

.bottom-cta-visual-sub {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.bottom-cta-form h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.bottom-cta-form-sub {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.bottom-cta-form .form-input {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
}

.bottom-cta-form .checkbox-label {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ── 18. Contacts ── */
.contacts {
  padding: 4rem 0;
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.clinic-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.clinic-card {
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-warm);
}

.clinic-card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.clinic-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.clinic-detail-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.clinic-detail-main {
  color: #4b5563;
}

.clinic-detail-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.clinic-hours {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gradient-map-start) 0%, var(--gradient-map-end) 100%);
}

.map-inner {
  text-align: center;
  padding: 2rem;
}

.map-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.map-title {
  color: #4b5563;
  font-weight: 600;
  font-size: 1.125rem;
}

.map-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.map-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.map-btn:hover {
  background: var(--gold-dark);
}

/* ── 19. Footer ── */
.footer {
  background: var(--brown-deep);
  color: #9ca3af;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.65;
}

.footer-col-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-col ul li a {
  font-size: 0.75rem;
  color: #6b7280;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

/* ── 20. Responsive Overrides ── */
@media (max-width: 1024px) {
  .header-top { display: none; }
  .services-nav { display: none; }
  .header-nav { display: none; }
  .menu-toggle { display: block; }

  .advantages-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .advantage-col { align-items: center; }
  .advantage-item { flex-direction: column; align-items: center; text-align: center; }
  .logo-circle { margin: 0 auto; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root { --px: 0.875rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem var(--px);
  }

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

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-form {
    width: 100%;
    flex-direction: column;
  }

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

  .about-faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .bottom-cta-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

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