/* ===== SUBTLE DOT-GRID PATTERN ===== */



/* Light SVG dot pattern — 4-6% opacity, adds depth without distraction */



/* Medical cross variant is defined separately for targeted sections */



/* ===== VARIABLES ===== */



:root {



  --z-base: 1;



  --z-header: 100;



  --z-dropdown: 200;



  --z-sticky: 300;



  --z-overlay: 400;



  --z-modal: 500;



  --z-tooltip: 600;



  --z-toast: 700;



  --z-progress: 800;







  --dot-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23E1E5E8' opacity='0.06'/%3E%3C/svg%3E");



  --medical-cross-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect x='13' y='4' width='6' height='24' rx='1' fill='%23E1E5E8' opacity='0.05'/%3E%3Crect x='4' y='13' width='24' height='6' rx='1' fill='%23E1E5E8' opacity='0.05'/%3E%3C/svg%3E");



  --teal: #676458;



  --accent: #676458;



  --primary: #A9CAD6;



  --primary-hover: #94b8c4;



  --primary-ink: #343A40;



  --surface: #F5F1EA;



  --surface-alt: #E8E5DF;



  --text-muted: #8A847A;



  --border: #A6A9AA;



  --teal-bg: #A9CAD6;



  --teal-light: #F5F1EA;



  --dark: #343A40;



  --text-secondary: #8A847A;



  --white: #F5F1EA;



  --bg-light: #E8E5DF;



  --hero-start: #f0f3f7;



  --hero-end: #e5eaf2;



  --emergency-start: #f5f7fa;



  --emergency-end: #e1e5e8;



  --bg-light-dark: #c5c9cd;



  --teal-dark: #c5c9cd;



  --input-border: #A6A9AA;



  --telegram: #0088cc;



  --whatsapp: #25D366;



  --shadow: 0 0.4rem 3rem 0 rgba(0, 0, 0, 0.08);



  --shadow-sm: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.04);



  --shadow-primary: 0 6px 20px rgba(0, 0, 0, 0.08);



  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);



  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.08);



  --shadow-btn-hover: 0 8px 30px rgba(0, 0, 0, 0.1);



  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.08);



  --shadow-avatar: 0 4px 20px rgba(0, 0, 0, 0.1);



  --shadow-teal: 0 6px 20px rgba(169, 202, 214, 0.35);



  --shadow-scenario: 0 8px 24px rgba(0, 0, 0, 0.06);



  --shadow-focus: 0 0 0 3px rgba(0, 0, 0, 0.08);



  --shadow-focus-teal: 0 0 0 3px rgba(169, 202, 214, 0.5);



  --shadow-glass: 0 4px 24px rgba(0,0,0,0.06);



  --radius: 14px;



  --radius-sm: 10px;

  --radius-md: 12px;

  --gray-metallic: #8A847A;

  --dark-soft: #4A453E;

  --shadow-toast: 0 8px 24px rgba(52, 58, 64, 0.12);



  --transition: all 0.3s ease;



  --transition-hover: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease, border-color 0.25s ease;







  /* NEW: 20% larger base font scale */



  --font-base: 19px;



  --font-sm: 15px;



  --font-lg: 22px;



  --line-base: 1.7;



  --line-tight: 1.3;



}







/* Respect reduced-motion preference */



@media (prefers-reduced-motion: reduce) {



  :root {



    --dot-pattern: none;



    --medical-cross-pattern: none;



  }



}







/* Respect reduced-motion preference */



@media (prefers-reduced-motion: reduce) {



  :root {



    --dot-pattern: none;



    --medical-cross-pattern: none;



  }



}







/* ===== RESET & BASE ===== */



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }







html { scroll-behavior: smooth; font-size: var(--font-base); }







body {



  font-family: 'Manrope', system-ui, sans-serif;



  font-size: 1rem; /* = var(--font-base) */



  line-height: var(--line-base);



  color: var(--dark);



  background: var(--white);



  -webkit-font-smoothing: antialiased;



  -moz-osx-font-smoothing: grayscale;



}







h1, h2, h3, h4 {



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 700;



  line-height: var(--line-tight);



}







a { text-decoration: none; color: inherit; transition: var(--transition); }



img { max-width: 100%; display: block; }



ul { list-style: none; }







.container {



  max-width: 1440px;



  margin: 0 auto;



  padding: 0 20px;



}







.container-fluid {



  width: 100%;



  padding: 0 20px;



  margin: 0 auto;



}







.container-1440 {



  max-width: 1440px;



  margin: 0 auto;



  padding: 0 20px;



}







/* ===== BUTTONS ===== */



.btn {



  display: inline-flex;



  align-items: center;



  justify-content: center;



  gap: 10px;



  padding: 16px 32px;



  border-radius: var(--radius);



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 700;



  font-size: 1rem;



  cursor: pointer;



  border: none;



  transition: var(--transition);



  text-align: center;



  white-space: nowrap;



}







/* Primary CTA — unified gradient CTA */



.btn-primary,.hero--bleed .hero-cta .btn-primary,.service-hero .btn-primary,.page-header--contacts .btn-primary,.cta-section .btn-primary,.emergency-cta .btn-primary,.quick-call-btn,.h-cta,.svc-btn,.promo-cta,.doctor-link,.staff-featured__cta,.price-cta,.faq-cta{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;background:var(--primary);color:var(--primary-ink);padding:14px 28px;border-radius:12px;font-weight:700;font-size:15px;text-decoration:none;transition:.3s;box-shadow:0 4px 14px rgba(169,202,214,.45);border:none;cursor:pointer;white-space:nowrap}



.btn-primary:hover,.hero--bleed .hero-cta .btn-primary:hover,.service-hero .btn-primary:hover,.page-header--contacts .btn-primary:hover,.cta-section .btn-primary:hover,.emergency-cta .btn-primary:hover,.quick-call-btn:hover,.h-cta:hover,.svc-btn:hover,.promo-cta:hover,.doctor-link:hover,.staff-featured__cta:hover,.price-cta:hover,.faq-cta:hover{background:var(--primary-hover);color:var(--primary-ink);transform:translateY(-2px);box-shadow:0 6px 20px rgba(169,202,214,.55)}



.btn-primary:active{transform:translateY(0)}







/* Glass effect for hero CTA buttons (secondary) */



.btn-glass {



  backdrop-filter: blur(12px);



  -webkit-backdrop-filter: blur(12px);



  background: rgba(255, 255, 255, 0.85);



  border: 2px solid rgba(169, 202, 214, 0.5);



  color: var(--dark);



  box-shadow: var(--shadow-glass);



}



.btn-glass:hover {



  background: rgba(255, 255, 255, 0.95);



  border-color: var(--teal-bg);



  transform: translateY(-2px);



}







/* Light button — teal-bg gradient */



.btn-light {



  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-bg) 100%);



  color: var(--dark);



  box-shadow: var(--shadow-card);



}



.btn-light:hover {



  transform: translateY(-2px);



  box-shadow: var(--shadow-teal);



}







.btn-large {



  padding: 20px 40px;



  font-size: 1.1rem;



  border-radius: var(--radius);



}







.btn-success-state {



  background: #FFFFFF;



  color: var(--dark);



}







.btn-sm { padding: 12px 24px; font-size: 0.9rem; }



.btn-block { width: 100%; }







/* Outline button for secondary actions on light bg */



.btn-outline-teal {



  background: transparent;



  color: var(--teal);



  border: 2px solid var(--teal);



}



.btn-outline-teal:hover {



  background: var(--teal);



  color: #fff;



  transform: translateY(-2px);



}







/* Emergency button — coral accent (subtle, derived from teal-bg) */



.emergency-alert .btn-emergency {



  background: linear-gradient(135deg, #e8a8a0 0%, #d48b82 100%);



  color: #fff;



  font-weight: 700;



  box-shadow: 0 6px 20px rgba(212, 139, 130, 0.4);



}



.emergency-alert .btn-emergency:hover {



  transform: translateY(-2px);



  box-shadow: 0 10px 28px rgba(212, 139, 130, 0.55);



}







/* ===== HEADER ===== */



/* ===== HEADER — sticky, prominent phone, corporate bg ===== */



.header {



  position: sticky;



  top: 0;



  z-index: var(--z-header);



  background: linear-gradient(180deg, var(--white) 0%, var(--teal-light) 100%);



  box-shadow: var(--shadow-sm);



  padding: 0;



  border-bottom: 1px solid rgba(169, 202, 214, 0.3);



}







.header-inner {



  display: flex;



  align-items: center;



  justify-content: space-between;



  padding: 18px 32px;



  max-width: 1400px;



  margin: 0 auto;



}







.logo {



  display: inline-flex;



  align-items: center;



  height: 60px;



}







.logo img {



  width: auto;



  height: 60px;



  display: block;



}







.header-phone {



  display: flex;



  align-items: center;



  gap: 10px;



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 800;



  font-size: 1.15rem;



  color: var(--dark);



  text-decoration: none;



  padding: 8px 16px;



  border-radius: var(--radius-sm);



  background: rgba(169, 202, 214, 0.2);



  transition: var(--transition);



}



.header-phone:hover {



  background: var(--teal-bg);



  color: var(--dark);



  transform: translateY(-1px);



}



.header-phone svg { color: var(--teal); flex-shrink: 0; width: 22px; height: 22px; }







.header-actions { display: flex; align-items: center; gap: 14px; }







/* ===== THEME TOGGLE ===== */



.theme-toggle {



  display: flex;



  align-items: center;



  justify-content: center;



  width: 36px;



  height: 36px;



  border-radius: 50%;



  border: none;



  background: var(--bg-light);



  cursor: pointer;



  transition: var(--transition);



  color: var(--dark);



  flex-shrink: 0;



}



.theme-toggle:hover {



  background: var(--teal-bg);



  color: var(--dark);



}



html[data-theme="dark"] .theme-toggle {



  background: #2d3a4f;



  color: #e8ecf0;



}



html[data-theme="dark"] .theme-toggle:hover {



  background: var(--teal-bg);



}







/* ===== SERVICE PAGE ===== */



.back-link { color: var(--gray-metallic); font-size: 14px; margin-bottom: 12px; display: inline-block; }



.service-subtitle { font-size: 18px; color: rgba(245, 241, 234, 0.9); margin-bottom: 20px; }



.service-hero-cta { margin-top: 8px; }



.service-price-from {



  font-size: 22px;



  font-weight: 800;



  color: var(--teal-light);



  margin: 0 0 14px;



  font-family: 'Manrope', system-ui, sans-serif;



}



.service-hero-actions {



  display: flex;



  flex-wrap: wrap;



  gap: 10px;



}



.service-hero-actions .btn { min-width: 160px; }



@media (max-width: 768px) {



  .service-hero-actions { flex-direction: column; }



  .service-hero-actions .btn { width: 100%; }



}



.btn-call { padding: 18px 48px; font-size: 18px; }



.mt-24 { margin-top: 24px; }



.symptoms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; max-width: 700px; margin: 0 auto 32px; }



.symptom-item { padding: 14px 20px; background: var(--bg-light); border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; }



.symptoms-note { text-align: center; color: var(--gray-metallic); font-size: 15px; }



.bg-pink { background: #fff3f3; }



.contraindications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; max-width: 700px; margin: 0 auto; }



.contraindication-item { padding: 14px 20px; background: #fff; border-radius: var(--radius-sm); font-size: 14px; color: #c0392b; border-left: 3px solid #c0392b; }



.contraindications-note { text-align: center; color: var(--gray-metallic); font-size: 14px; margin-top: 16px; }







/* ===== SERVICE HERO — corporate gradient bg, no dark overlay ===== */



.service-hero {



  position: relative;



  padding: 80px 0 88px;



  overflow: hidden;



  isolation: isolate;



  background: linear-gradient(180deg, var(--white) 0%, var(--teal-light) 60%, var(--teal-bg) 100%);



}



.service-hero h1 {



  font-size: clamp(36px, 5vw, 54px);



  font-weight: 900;



  letter-spacing: -0.02em;



  line-height: 1.1;



  color: var(--dark);



  max-width: 780px;



  margin-bottom: 16px;



}



.service-subtitle {



  font-size: clamp(19px, 2.2vw, 22px);



  line-height: 1.6;



  color: var(--dark);



  opacity: 0.85;



  max-width: 700px;



  margin-bottom: 28px;



}



.service-hero::before {



  content: '';



  position: absolute;



  inset: 0;



  z-index: 1;



  background: 



    radial-gradient(ellipse at 20% 0%, rgba(169, 202, 214, 0.25) 0%, transparent 60%),



    radial-gradient(ellipse at 80% 100%, rgba(103, 100, 88, 0.12) 0%, transparent 50%);



  pointer-events: none;



}



.service-hero .container { position: relative; z-index: 2; }



.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  display: block;
}
.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(245,241,234,0.82) 0%, rgba(232,229,223,0.9) 100%);
  pointer-events: none;
}







/* sr-only — visually hidden for screen readers */



.sr-only {



  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;



  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;



}







/* about page new blocks */



.about-navigate-img,



.about-safety-img { display: block; width: 100%; max-width: 1100px; max-height: 620px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }



.about-navigate-img img,



.about-safety-img img { display: block; width: 100%; height: 100%; object-fit: cover; }







/* trust-carousel — горизонтальная карусель с transform */



.trust-carousel { padding: 60px 0; background: #FFFFFF; }



.trust-carousel .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }



.trust-carousel .section-title { margin-bottom: 8px; }



.trust-carousel .section-subtitle { color: var(--gray-metallic); margin-bottom: 28px; }



.trust-carousel-viewport { position: relative; overflow: hidden; padding: 4px 0 16px; }



.trust-carousel-grid {



  display: flex;



  gap: 16px;



  transition: transform 0.4s ease;



  will-change: transform;



}



.trust-carousel-item {



  flex: 0 0 calc((100% - 32px) / 3); /* 3 фото видно на десктопе */



  margin: 0;



  border-radius: var(--radius-md);



  overflow: hidden;



  box-shadow: var(--shadow-card);



  background: var(--bg-light);



}



.trust-carousel-item img { display: block; width: 100%; height: 240px; object-fit: cover; }



.trust-carousel-item figcaption { padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--dark); text-align: center; }



@media (max-width: 900px) {



  .trust-carousel-item { flex: 0 0 88%; }



  .trust-carousel-item img { height: 220px; }



}



.trust-carousel-nav {



  display: flex; justify-content: center; gap: 8px; margin-top: 16px;



}



.trust-carousel-nav button {



  width: 40px; height: 40px; border-radius: 50%;



  background: var(--bg-light); border: 1px solid rgba(116, 140, 164, 0.2);



  cursor: pointer; display: flex; align-items: center; justify-content: center;



  transition: background 0.2s, border-color 0.2s;



  color: var(--dark);



}



.trust-carousel-nav button:hover { background: var(--teal-bg); border-color: var(--teal); }



.trust-carousel-nav button:disabled { opacity: 0.4; cursor: not-allowed; }



.trust-carousel-nav button svg { width: 18px; height: 18px; }



@media (max-width: 900px) {



  .trust-carousel-item { flex: 0 0 88%; /* 1 фото + peek на мобиле */ }



  .trust-carousel-item img { height: 220px; }



}







/* contacts new blocks */



.contacts-photo-block { margin: 32px 0; }



.contacts-photo-block .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }



.contacts-photo-block picture { display: block; max-width: 1100px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }



.contacts-photo-block img { display: block; width: 100%; height: auto; }



.contacts-extra-info {



  margin: 24px auto 0; max-width: 800px; padding: 20px 24px;



  background: var(--bg-light); border-left: 4px solid var(--teal); border-radius: var(--radius-sm);



  font-size: 15px; line-height: 1.6; color: var(--dark);



}



.contacts-extra-info strong { color: var(--teal-dark); }







/* 404 page image */



.error-page-image { display: block; max-width: 480px; margin: 0 auto 24px; border-radius: var(--radius-md); overflow: hidden; }



.error-page-image img { display: block; width: 100%; height: auto; }







/* staff-bg — staff profile hero background */



.staff-hero { position: relative; padding: 48px 0; overflow: hidden; isolation: isolate; }



.staff-hero::before {



  content: ''; position: absolute; inset: 0; z-index: 1;



  background: linear-gradient(135deg, rgba(245,241,234,0.85) 0%, rgba(245,241,234,0.92) 100%);



  pointer-events: none;



}



.staff-hero .container { position: relative; z-index: 2; }



.staff-hero-bg { position: absolute; inset: 0; z-index: 0; margin: 0; }



.staff-hero-bg img,



.staff-hero-bg source { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }



.prep-container { max-width: 700px; margin: 0 auto; }



.prep-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 12px; }



.step-number { min-width: 32px; height: 32px; background: var(--teal-bg); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }



.prep-step-text { font-size: 15px; color: var(--dark); line-height: 1.6; padding-top: 4px; }



.included-container { max-width: 700px; margin: 0 auto; }



.included-item { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }



.included-icon { color: var(--dark); width: 24px; height: 24px; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }



.included-text { font-size: 15px; color: var(--dark); }



.step-card-title { font-size: 17px; margin-bottom: 8px; color: var(--teal); }



.step-card-desc { font-size: 14px; color: var(--gray-metallic); }



.prices-wrapper { display: flex; justify-content: center; }



.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }



.location-card { background: var(--white); border-radius: var(--radius); padding: 28px; }



.location-card-title { color: var(--teal); font-size: 18px; margin-bottom: 8px; }



.location-card-text { color: var(--gray-metallic); font-size: 14px; }



.location-note { margin-top: 24px; color: var(--gray-metallic); }



.treatment-text { font-size: 16px; color: var(--gray-metallic); max-width: 600px; margin: 0 auto 16px; }



.doctor-card-inline { display: inline-block; background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; }



.doctor-photo-wrapper { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; box-shadow: var(--shadow-avatar); }



.doctor-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }



.doctor-name { font-size: 18px; margin-bottom: 4px; }



.doctor-position { color: var(--teal); font-size: 14px; font-weight: 600; margin-bottom: 16px; }



.cta-container { text-align: center; max-width: 600px; }



.cta-section-pad { padding: 56px 0; }







/* Nav */



.nav { display: flex; align-items: center; gap: 4px; }



.nav a {



  padding: 8px 14px;



  border-radius: var(--radius-sm);



  font-size: 15px;



  font-weight: 600;



  color: var(--dark);



  transition: var(--transition);



}



.nav a:hover { color: var(--teal); background: rgba(103,100,88,0.08); }



.nav a,



.nav .nav-item > a {



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 600;



  letter-spacing: 0.2px;



}







.nav a.active { background: var(--primary); color: var(--primary-ink); }







/* Category dropdown menu (SEO doc: 6 service groups) */



.nav-dropdown-panel--categories {



  width: 640px;



  max-height: 70vh;



  overflow-y: auto;



  padding: 16px 20px;



  display: grid;



  grid-template-columns: 1fr 1fr;



  gap: 12px 24px;



}



.nav-cat-title {



  display: block;



  font-weight: 700;



  font-size: 13px;



  color: var(--teal);



  text-transform: uppercase;



  letter-spacing: 0.04em;



  margin-bottom: 6px;



  text-decoration: none;



}



.nav-cat-title:hover { text-decoration: underline; }



.nav-cat-items { display: flex; flex-direction: column; gap: 2px; }



.nav-cat-items a {



  font-size: 13px;



  color: var(--dark);



  padding: 3px 0;



  text-decoration: none;



  line-height: 1.35;



}



.nav-cat-items a:hover { color: var(--teal); }



@media (max-width: 900px) {



  .nav-dropdown-panel--categories {



    width: 100%;



    grid-template-columns: 1fr;



    max-height: none;



  }



}







/* Requisites page */



.requisites-grid {



  display: grid;



  grid-template-columns: 1fr 1fr;



  gap: 24px;



  margin: 32px 0;



}



.requisites-card {



  background: #fff;



  border-radius: 16px;



  padding: 28px;



  box-shadow: 0 4px 20px rgba(52,58,64,0.06);



}



.requisites-card h2 {



  font-size: 20px;



  font-weight: 700;



  margin: 0 0 16px;



  color: var(--dark);



}



.requisites-table {



  width: 100%;



  border-collapse: collapse;



}



.requisites-table td {



  padding: 10px 8px;



  border-bottom: 1px solid rgba(52,58,64,0.08);



  font-size: 15px;



  vertical-align: top;



}



.requisites-table td:first-child {



  color: var(--text-secondary, #6b6b6b);



  font-weight: 600;



  width: 40%;



  white-space: nowrap;



}



.requisites-table td:last-child {



  color: var(--dark);



  font-weight: 500;



}



.requisites-table a { color: var(--teal); text-decoration: none; }



.requisites-table a:hover { text-decoration: underline; }



.requisites-note {



  font-size: 14px;



  color: var(--text-secondary, #6b6b6b);



  margin-top: 8px;



}



.requisites-note a { color: var(--teal); }



@media (max-width: 768px) {



  .requisites-grid { grid-template-columns: 1fr; }



  .requisites-table td:first-child { white-space: normal; width: 35%; }



}







/* Footer license text */



.footer-license-text {



  margin-top: 12px;



  padding-top: 12px;



  border-top: 1px solid rgba(225,229,232,0.12);



  font-size: 13px;



  color: rgba(245,241,234,0.7);



  text-align: center;



}







/* Licenses block slider */



.licenses-block { position: relative; }



.licenses-slider {



  position: relative;



  max-width: 900px;



  margin: 32px auto 0;



  overflow: hidden;



}



.licenses-track {



  display: flex;



  transition: transform 0.4s ease;



}



.license-slide {



  flex: 0 0 100%;



  min-width: 100%;



  text-align: center;



  padding: 0 8px;



}



.license-slide-link {



  display: block;



  border-radius: 12px;



  overflow: hidden;



  box-shadow: 0 4px 20px rgba(52,58,64,0.1);



  background: #fff;



}



.license-slide-link img {



  width: 100%;



  height: auto;



  max-height: 480px;



  object-fit: contain;



  display: block;



}



.license-slide-caption {



  margin-top: 12px;



  font-size: 14px;



  font-weight: 600;



  color: var(--dark);



}



.licenses-prev,



.licenses-next {



  position: absolute;



  top: 50%;



  transform: translateY(-50%);



  width: 44px;



  height: 44px;



  border-radius: 50%;



  border: none;



  background: var(--teal);



  color: #fff;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  z-index: 2;



  transition: background 0.2s;



}



.licenses-prev { left: 8px; }



.licenses-next { right: 8px; }



.licenses-prev:hover,



.licenses-next:hover { background: #555044; }



.licenses-prev svg,



.licenses-next svg { width: 20px; height: 20px; }



@media (max-width: 640px) {



  .licenses-prev, .licenses-next { width: 36px; height: 36px; }



}







/* Sources block (EEAT) */



.sources-block { background: var(--teal-light); }



.sources-list {



  list-style: none;



  counter-reset: sources;



  max-width: 800px;



  margin: 24px auto 0;



  padding: 0;



}



.sources-item {



  counter-increment: sources;



  position: relative;



  padding: 10px 0 10px 44px;



  font-size: 14px;



  line-height: 1.5;



  color: var(--dark);



  border-bottom: 1px solid rgba(52,58,64,0.08);



}



.sources-item::before {



  content: counter(sources);



  position: absolute;



  left: 0;



  top: 10px;



  width: 28px;



  height: 28px;



  border-radius: 6px;



  background: var(--teal);



  color: #fff;



  font-weight: 700;



  font-size: 13px;



  display: flex;



  align-items: center;



  justify-content: center;



}



.sources-item a {



  color: var(--teal);



  text-decoration: underline;



  text-underline-offset: 2px;



}



.sources-item a:hover { color: #555044; }







/* Home prices block */



.home-prices-block { background: var(--teal-light); }



.home-prices-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



  margin-top: 32px;



}



.home-prices-cat {



  background: #fff;



  border-radius: 16px;



  padding: 28px 28px 24px;



  box-shadow: 0 4px 20px rgba(52,58,64,0.06);



  display: flex;



  flex-direction: column;



  border-top: 4px solid var(--teal-bg);



}



.home-prices-cat-title {



  font-size: 20px;



  font-weight: 800;



  margin: 0 0 18px;



  color: var(--dark);



  letter-spacing: -0.01em;



}



.home-prices-cat-title a { color: var(--dark); text-decoration: none; }



.home-prices-cat-title a:hover { color: var(--teal); }



.home-prices-items { display: flex; flex-direction: column; flex: 1; }



.home-price-row {



  display: flex;



  justify-content: space-between;



  align-items: baseline;



  gap: 8px;



  padding: 11px 0;



}



/* Пунктир-лидер между названием и ценой — глаз легко ведёт к цифре */



.home-price-name {



  font-size: 14px;



  color: var(--dark);



  text-decoration: none;



  line-height: 1.35;



  flex: 1;



  min-width: 0;



  padding-right: 6px;



  border-bottom: 1px dotted rgba(52,58,64,0.25);



}



.home-price-name:hover { color: var(--teal); border-bottom-color: var(--teal); }



.home-price-value {



  font-size: 15px;



  font-weight: 800;



  color: var(--teal);



  white-space: nowrap;



}



.home-prices-cat .link-more {



  display: inline-flex;



  align-items: center;



  gap: 6px;



  margin-top: 18px;



  align-self: flex-start;



  padding: 10px 18px;



  font-size: 14px;



  font-weight: 700;



  color: var(--dark);



  background: var(--teal-bg);



  border-radius: 10px;



  text-decoration: none;



  transition: background 0.2s, transform 0.2s;



}



.home-prices-cat .link-more:hover {



  background: var(--teal);



  color: var(--teal-light);



  transform: translateY(-1px);



  text-decoration: none;



}



@media (max-width: 900px) {



  .home-prices-grid { grid-template-columns: 1fr; }



}







/* Expert block (EEAT) */



.expert-section { background: var(--teal-light); }



.expert-card {



  display: flex;



  align-items: center;



  gap: 24px;



  background: #fff;



  border-radius: 16px;



  padding: 24px 28px;



  box-shadow: 0 4px 20px rgba(52,58,64,0.06);



  max-width: 900px;



  margin: 0 auto;



}



.expert-photo {



  flex-shrink: 0;



  width: 120px;



  height: 120px;



  border-radius: 50%;



  overflow: hidden;



  background: var(--teal-light);



}



.expert-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }



.expert-info { flex: 1; }



.expert-label {



  font-size: 12px;



  font-weight: 700;



  text-transform: uppercase;



  letter-spacing: 0.06em;



  color: var(--text-secondary, #6b6b6b);



  margin-bottom: 4px;



}



.expert-name {



  font-size: 20px;



  font-weight: 700;



  color: var(--teal);



  text-decoration: none;



}



.expert-name:hover { text-decoration: underline; }



.expert-position { font-size: 14px; color: var(--dark); margin-top: 2px; }



.expert-exp { font-size: 14px; color: var(--text-secondary, #6b6b6b); margin-top: 2px; }



.expert-bio { font-size: 14px; color: var(--dark); margin-top: 8px; line-height: 1.5; }



.expert-cta { flex-shrink: 0; }



@media (max-width: 768px) {



  .expert-card { flex-direction: column; text-align: center; }



  .expert-cta { width: 100%; }



  .expert-cta .btn { width: 100%; }



}







/* Price name links */



.price-name--link {



  color: var(--teal);



  text-decoration: none;



  font-weight: 600;



}



.price-name--link:hover {



  text-decoration: underline;



  color: #555044;



}







/* Pagination */



.pagination {



  display: flex;



  justify-content: center;



  gap: 8px;



  margin: 32px 0 8px;



  flex-wrap: wrap;



}



.pagination-item {



  min-width: 40px;



  height: 40px;



  display: inline-flex;



  align-items: center;



  justify-content: center;



  border-radius: 10px;



  border: 1px solid rgba(103,100,88,0.25);



  background: #fff;



  color: var(--dark);



  font-weight: 600;



  font-size: 15px;



  text-decoration: none;



  transition: all 0.2s;



}



.pagination-item:hover {



  border-color: var(--teal);



  color: var(--teal);



}



.pagination-item--active {



  background: var(--primary);



  border-color: var(--primary);



  color: var(--primary-ink);



}







/* Services category sections (anchorable from menu) */



.services-listing .services-category {



  margin: 40px 0 0;



  padding-top: 8px;



  scroll-margin-top: 120px;



}



.services-category-head {



  display: flex;



  align-items: center;



  gap: 12px;



  margin-bottom: 20px;



  padding-bottom: 12px;



  border-bottom: 1px solid rgba(103, 100, 88, 0.18);



}



.services-category-icon {



  width: 44px;



  height: 44px;



  border-radius: 12px;



  background: linear-gradient(135deg, var(--teal-bg) 0%, #8bb8d0 100%);



  color: var(--dark);



  display: flex;



  align-items: center;



  justify-content: center;



  flex-shrink: 0;



  box-shadow: 0 4px 14px rgba(169, 202, 214, 0.35);



}



.services-category-head h3 {



  margin: 0;



  font-size: 22px;



  font-weight: 800;



  color: var(--dark);



}



.services-category-anchor {



  margin-left: auto;



  color: var(--teal);



  opacity: 0.55;



  display: inline-flex;



  transition: opacity 0.2s;



}



.services-category-anchor:hover { opacity: 1; }



.services-category-grid {



  display: flex;



  flex-wrap: wrap;



  justify-content: center;



  gap: 16px;



}



.services-category-grid .service-card {



  flex: 0 0 calc((100% - 32px) / 3);



  box-sizing: border-box;



}



.services-category-grid .service-card {



  display: flex;



  flex-direction: column;



  justify-content: space-between;



  gap: 12px;



  background: #fff;



  border-radius: 14px;



  padding: 22px 24px;



  border: 1px solid rgba(103, 100, 88, 0.08);



  box-shadow: 0 2px 10px rgba(52, 58, 64, 0.05);



  transition: transform 0.2s, box-shadow 0.2s;



  text-decoration: none;



}



.services-category-grid .service-card:hover {



  transform: translateY(-3px);



  box-shadow: 0 6px 18px rgba(52, 58, 64, 0.1);



}



.services-category-grid .service-card h4 {



  margin: 0;



  font-size: 16.5px;



  font-weight: 700;



  color: var(--dark);



  line-height: 1.35;



}



.services-category-grid .service-link {



  display: inline-flex;



  align-items: center;



  justify-content: center;



  gap: 8px;



  font-size: 14px;



  font-weight: 700;



  color: var(--dark);



  background: linear-gradient(135deg, var(--teal-bg) 0%, #8bb8d0 100%);



  padding: 10px 18px;



  border-radius: 10px;



  margin-top: auto;



  transition: transform 0.2s, box-shadow 0.2s;



  box-shadow: 0 3px 10px rgba(169, 202, 214, 0.3);



}



.services-category-grid .service-card:hover .service-link {



  transform: translateY(-2px);



  box-shadow: 0 6px 16px rgba(169, 202, 214, 0.45);



}







/* Burger */



.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }



.burger span {



  width: 24px; height: 2px; background: var(--dark);



  border-radius: 2px; transition: var(--transition);



}







/* ===== HERO (full-bleed, corporate palette) ===== */



.hero {



  overflow: hidden;



  position: relative;



}







.hero--bleed {



  /* Match facade photo 1920×1280 (3:2) so cover does not crop ambulance/entrance */
  min-height: 0;



  aspect-ratio: 3 / 2;



  max-height: 90vh;



  width: 100%;



  display: flex;



  align-items: center;



  background: transparent; /* facade photo fully visible */



}



.hero--bleed::after {



  content: '';



  position: absolute;



  left: 0;



  top: 0;



  bottom: 0;



  width: 55%;



  background: linear-gradient(90deg, rgba(30, 35, 40, 0.7) 0%, rgba(30, 35, 40, 0.35) 40%, transparent 70%);



  pointer-events: none;



  z-index: 1;



  border-radius: 0 var(--radius) var(--radius) 0;



}



.hero--bleed::after {



  content: '';



  position: absolute;



  left: 0;



  top: 0;



  bottom: 0;



  width: 50%;



  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, transparent 70%);



  pointer-events: none;



  z-index: 1;



}



.hero--bleed::after {



  content: '';



  position: absolute;



  left: 0;



  top: 0;



  bottom: 0;



  width: 45%;



  background: linear-gradient(90deg, rgba(30, 35, 40, 0.3) 0%, rgba(30, 35, 40, 0.15) 25%, transparent 45%);



  pointer-events: none;



  z-index: 1;



  border-radius: 0 var(--radius) var(--radius) 0;



}







/* Hide interior photo card, pagination dots, scroll down text on hero */



.hero--bleed .hero-photo-card,



.hero--bleed .glass-card,



.hero--bleed .hero-glass-card,



.hero--bleed .glassmorphism-card,



.hero--bleed [class*="glass"],



.hero--bleed .scroll-indicator,



.hero--bleed .scroll-down {



  display: none !important;



}







/* Hide glassmorphism card on hero right - facade must be fully visible */



.hero--bleed .glass-card,



.hero--bleed .hero-glass-card,



.hero--bleed .glassmorphism-card,



.hero--bleed [class*="glass"],



.hero--bleed .hero-photo-card {



  display: none !important;



}







/* Hide glassmorphism card on hero right - facade must be fully visible */



.hero--bleed .glass-card,



.hero--bleed .hero-glass-card,



.hero--bleed .glassmorphism-card,



.hero--bleed [class*="glass"] {



  display: none !important;



}







.hero-bg { position: absolute; inset: 0; z-index: 0; margin: 0; }







.hero-veil {



  display: none; /* REMOVED - facade fully visible, readability via text-shadow */



}







.hero-inner {



  position: static;



  z-index: 3;



  display: block;



  width: 100%;



  padding: 0;



}







.hero-content { 



  position: absolute;



  left: 3vw;



  top: 24px;



  max-width: 460px;



  color: #fff;



  z-index: 10;



  padding: 0;



  /* NO backdrop — facade fully visible. Readability via text-shadow only */



}



.hero-content .hero-brand,



.hero-content h1,



.hero-content .hero-subtitle,



.hero-content .hero-trustline,



.hero-content .hero-badge,



.hero-content .hero-cta .btn,



.hero-content .hero-trust-row {



  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);



  color: #fff;



}







.hero-content .hero-badge {



  display: inline-flex;



  align-items: center;



  gap: 6px;



  padding: 6px 14px;



  background: var(--teal-bg);



  color: var(--dark);



  border-radius: 24px;



  font-size: 0.85rem;



  font-weight: 700;



  margin-bottom: 12px;



  text-shadow: none;



  box-shadow: 0 2px 8px rgba(0,0,0,0.3);



}







.hero-content h1 {



  font-size: clamp(28px, 3.5vw, 42px);



  font-weight: 800;



  color: #fff;



  margin: 0 0 12px;



  letter-spacing: -0.5px;



  line-height: 1.15;



  text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);



}







.hero-content .hero-subtitle {



  font-size: clamp(16px, 2vw, 19px);



  color: #fff;



  opacity: 0.9;



  margin: 0 0 20px;



  line-height: 1.55;



}







.hero-content .hero-cta {



  display: flex;



  gap: 12px;



  flex-wrap: wrap;



  margin-bottom: 24px;



}







.hero-content .btn {



  padding: 14px 28px;



  font-size: 1rem;



  font-weight: 700;



  border-radius: var(--radius-sm);



  text-shadow: none;



}



.hero-content .btn-primary,.hero--bleed .hero-cta .btn-primary,.service-hero .btn-primary,.page-header--contacts .btn-primary,.cta-section .btn-primary,.emergency-cta .btn-primary,.quick-call-btn,.h-cta,.svc-btn,.promo-cta,.doctor-link,.staff-featured__cta,.price-cta,.faq-cta{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;background:var(--primary);color:var(--primary-ink);padding:14px 28px;border-radius:12px;font-weight:700;font-size:15px;text-decoration:none;transition:.3s;box-shadow:0 4px 14px rgba(169,202,214,.45);border:none;cursor:pointer;white-space:nowrap}



.btn-primary:hover,.hero--bleed .hero-cta .btn-primary:hover,.service-hero .btn-primary:hover,.page-header--contacts .btn-primary:hover,.cta-section .btn-primary:hover,.emergency-cta .btn-primary:hover,.quick-call-btn:hover,.h-cta:hover,.svc-btn:hover,.promo-cta:hover,.doctor-link:hover,.staff-featured__cta:hover,.price-cta:hover,.faq-cta:hover{background:var(--primary-hover);color:var(--primary-ink);transform:translateY(-2px);box-shadow:0 6px 20px rgba(169,202,214,.55)}



.btn-primary:active{transform:translateY(0)}







.hero-content .btn-outline-light {



  background: rgba(255,255,255,0.9);



  color: var(--dark);



  border: 2px solid var(--teal-bg);



}







.hero-content .hero-trust-row {



  display: flex;



  align-items: center;



  gap: 20px;



  flex-wrap: wrap;



  font-size: 0.95rem;



  color: #fff;



  opacity: 0.95;



  text-shadow: 0 2px 6px rgba(0,0,0,0.7);



}







.hero-content .hero-trust-row svg {



  color: var(--teal-bg);



  flex-shrink: 0;



  width: 18px;



  height: 18px;



}







.hero-brand {



  font-family: 'Manrope', system-ui, sans-serif;



  font-size: clamp(30px, 5vw, 48px);



  font-weight: 900;



  letter-spacing: -0.03em;



  color: var(--dark);



  margin: 0 0 16px;



  line-height: 1.05;



}







.hero--bleed h1 {



  font-size: clamp(32px, 4.5vw, 48px);



  font-weight: 800;



  color: var(--dark);



  margin: 0 0 18px;



  letter-spacing: -0.5px;



  line-height: 1.15;



}







.hero--bleed .hero-subtitle {



  font-size: clamp(19px, 2.2vw, 22px);



  color: var(--dark);



  opacity: 0.85;



  margin: 0 0 32px;



  line-height: 1.6;



  max-width: 38em;



}







.hero-cta {



  display: flex;



  flex-wrap: wrap;



  gap: 16px;



  margin-bottom: 28px;



}







.btn-outline-light {



  background: transparent;



  color: var(--dark);



  border: 2px solid var(--dark);



  font-weight: 700;



}



.btn-outline-light:hover {



  background: var(--dark);



  color: var(--white);



  transform: translateY(-2px);



}







.hero-trustline {



  margin: 0;



  font-size: 1rem;



  font-weight: 600;



  color: var(--dark);



  opacity: 0.8;



  letter-spacing: 0.01em;



}







/* Trust badges — corporate style */



.trust-badges {



  display: flex;



  flex-wrap: wrap;



  gap: 20px;



  margin-top: 36px;



  align-items: flex-start;



}







.trust-badge {



  display: flex;



  align-items: center;



  gap: 10px;



  font-size: 1rem;



  color: var(--dark);



  font-weight: 600;



  padding: 12px 20px;



  background: rgba(169, 202, 214, 0.2);



  border-radius: var(--radius-sm);



  border: 1px solid rgba(169, 202, 214, 0.3);



}



.trust-badge svg { color: var(--teal); flex-shrink: 0; width: 22px; height: 22px; }







/* Scenarios below hero — list, not card dashboard */



.hero-scenarios-section {



  padding: 56px 0;



  background: var(--white);



}







.hero-scenarios {



  display: flex;



  flex-direction: column;



  gap: 0;



  max-width: 800px;



  margin: 0 auto;



}







.scenario-row {



  display: flex;



  align-items: center;



  justify-content: space-between;



  gap: 20px;



  padding: 20px 0;



  border-bottom: 1px solid rgba(103, 100, 88, 0.15);



}







.scenario-row:last-child { border-bottom: none; }







.scenario-content { min-width: 0; flex: 1; }







.scenario-title {



  font-size: 18px;



  font-weight: 700;



  color: var(--dark);



  margin: 0 0 4px;



  line-height: 1.2;



}







.scenario-desc {



  font-size: 14px;



  color: var(--text-secondary);



  margin: 0;



  line-height: 1.45;



}







.scenario-btn {



  flex-shrink: 0;



  white-space: nowrap;



  padding: 10px 18px;



  font-size: 14px;



}







/* Legacy trust badges (other pages) */



.trust-badges {



  display: flex;



  flex-wrap: wrap;



  gap: 16px;



  margin-top: 32px;



  align-items: flex-start;



}







.trust-badge {



  display: flex;



  align-items: center;



  gap: 6px;



  font-size: 13px;



  color: var(--text-secondary);



  font-weight: 600;



}







.trust-badge svg { color: var(--teal); flex-shrink: 0; }







/* Hero image placeholder — medical cross pattern */



.hero-image {



  position: relative;



  display: flex;



  align-items: center;



  justify-content: center;



  overflow: hidden;



  border-radius: var(--radius);



  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-bg) 100%);



  min-height: 360px;



}



.hero-image::before {



  content: '';



  position: absolute;



  inset: 0;



  background: var(--medical-cross-pattern);



  opacity: 0.08;



}



.hero-image img {



  width: 100%;



  max-width: 460px;



  aspect-ratio: 1 / 1;



  object-fit: cover;



  object-position: center top;



  border-radius: var(--radius);



  box-shadow: var(--shadow-hero);



}







/* ===== SECTION COMMON ===== */



section { padding: 80px 0; position: relative; }







/* Gradient fade at top/bottom edges — fades into adjacent sections */



section::before {



  content: '';



  position: absolute;



  top: 0; left: 0; right: 0;



  height: 40px;



  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);



  pointer-events: none;



  z-index: 0;



}



section::after {



  display: none;



}







/* Only apply gradient backgrounds to sections that DON'T have explicit bg classes.



   These use ::before pseudo to blend smoothly into neighbors. */



section:not([class*="bg-"]):not(.hero):not(.emergency):not(.cta-teal):not(.cta-section):not(.service-hero):not(.benefits-strip) {



  background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%), var(--dot-pattern);



  background-size: 100% 100%, 20px 20px;



  position: relative;



  overflow: hidden;



}



/* Wave at bottom — removed per user request (2026-08-07) */



section:not([class*="bg-"]):not(.hero):not(.emergency):not(.cta-teal):not(.cta-section):not(.service-hero):not(.benefits-strip)::after {



  display: none;



}







.section-title {



  font-size: 36px;



  font-weight: 900;



  color: var(--dark);



  text-align: center;



  margin-bottom: 12px;



  letter-spacing: -0.5px;



}







.section-subtitle {



  font-size: 18px;



  color: var(--gray-metallic);



  text-align: center;



  margin-bottom: 48px;



}







/* ===== EMERGENCY ===== */



.emergency {



  background: linear-gradient(135deg, var(--emergency-start) 0%, var(--emergency-end) 100%), var(--medical-cross-pattern);



  background-size: 100% 100%, 32px 32px;



  color: var(--dark); padding: 60px 0;



  position: relative;



  overflow: hidden;



}



/* Wave SVG divider at top — smooth transition from hero (light gray) */



.emergency::before {



  content: '';



  position: absolute;



  top: -1px;



  left: 0;



  right: 0;



  height: 60px;



  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23E1E5E8' d='M0,60 C240,20 480,0 720,20 C960,40 1200,20 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;



  background-size: 100% 60px;



  pointer-events: none;



  z-index: 1;



}



.emergency .section-title { color: var(--dark); }



.emergency::after {



  content: '';



  position: absolute;



  bottom: -1px;



  left: 0;



  right: 0;



  height: 60px;



  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0 C240,40 480,60 720,40 C960,20 1200,40 1440,0 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center bottom;



  background-size: 100% 60px;



  pointer-events: none;



  z-index: 1;



}







.symptoms-grid {



  display: grid;



  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));



  gap: 16px;



  max-width: 800px;



  margin: 0 auto 40px;



}







/* ===== Symptom Cards (red alert) ===== */



.symptom-cards {



  display: grid;



  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));



  gap: 12px;



  max-width: 800px;



  margin: 0 auto 36px;



}







.symptom-card {



  display: flex;



  align-items: center;



  gap: 12px;



  padding: 14px 18px;



  background: var(--teal);



  border-radius: var(--radius-sm);



  border-left: none;



  font-size: 15px;



  font-weight: 600;



  color: #fff;



  box-shadow: 0 2px 8px rgba(103, 100, 88, 0.15);



  transition: var(--transition);



}







.symptom-card:hover {



  box-shadow: 0 4px 16px rgba(103, 100, 88, 0.3);



  transform: translateX(3px);



}







.symptom-card svg {



  flex-shrink: 0;



  color: #fff;



  opacity: 0.9;



}







/* ===== Emergency Alert Section ===== */



.emergency-alert {



  background: #fff3f3;



  padding: 60px 0;



  text-align: center;



}







.emergency-alert .section-title {



  color: #c0392b;



}







.emergency-alert .section-subtitle {



  color: #8a3a3a;



  font-size: 16px;



}







.emergency-alert .symptom-cards {



  max-width: 800px;



  margin: 0 auto 32px;



}







.emergency-alert .symptom-card {



  background: #fff;



  border-left-color: #c0392b;



}







.emergency-alert .btn-emergency {



  display: inline-flex;



  align-items: center;



  gap: 10px;



  padding: 16px 40px;



  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);



  color: #fff;



  font-weight: 700;



  font-size: 17px;



  border-radius: 14px;



  border: none;



  cursor: pointer;



  transition: var(--transition);



  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);



}







.emergency-alert .btn-emergency:hover {



  transform: translateY(-2px);



  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);



}







.symptom {



  display: flex;



  align-items: center;



  gap: 12px;



  padding: 16px 20px;



  background: rgba(225, 229, 232, 0.12);



  border-radius: var(--radius-sm);



  font-size: 15px;



  font-weight: 600;



  color: var(--dark);



}







.symptom svg { flex-shrink: 0; color: var(--teal); opacity: 0.9; }







.emergency-cta { text-align: center; }







.emergency-cta .btn {



  background: var(--teal-bg);



  color: var(--dark);



  font-weight: 700;



  padding: 18px 48px;



  font-size: 18px;



  border-radius: 14px;



}



.emergency-cta .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); }







/* ===== BENEFITS ===== */



.benefits-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



}







.benefit-card {



  background: var(--white);



  border-radius: 16px;



  padding: 32px 24px;



  text-align: center;



  box-shadow: 0 4px 20px rgba(52,58,64,0.07);



  border: 1px solid rgba(103,100,88,0.08);



  transition: var(--transition);



}







.benefit-card:hover {



  transform: translateY(-4px);



  box-shadow: var(--shadow-card-hover);



}







.benefit-icon {



  width: 64px; height: 64px;



  background: var(--teal);



  border-radius: 50%;



  display: flex;



  align-items: center;



  justify-content: center;



  margin: 0 auto 20px;



  box-shadow: 0 4px 14px rgba(103,100,88,0.25);



}







.benefit-icon svg { color: #fff; }







.benefit-card h3 {



  font-size: 18px;



  color: var(--dark);



  margin-bottom: 8px;



}







.benefit-card p {



  font-size: 14px;



  color: var(--gray-metallic);



  line-height: 1.5;



}







/* ===== SERVICES ===== */



.services-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



}







.service-card {



  background: var(--white);



  border-radius: var(--radius);



  padding: 32px 24px;



  border: 1px solid rgba(225, 229, 232, 0.12);



  box-shadow: 0 1px 3px rgba(43,76,155,0.08), 0 4px 12px rgba(43,76,155,0.06), 0 8px 24px rgba(43,76,155,0.04);



  transition: var(--transition);



  cursor: pointer;



  height: 100%;



  display: flex;



  flex-direction: column;



  position: relative;



  overflow: hidden;



}







.service-card::after {



  content: '';



  position: absolute;



  inset: 0;



  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 60%);



  opacity: 0;



  transition: opacity 0.3s ease;



  pointer-events: none;



}







.service-card:hover {



  border-color: rgba(225, 229, 232, 0.3);



  transform: translateY(-6px);



  box-shadow: var(--shadow-card-hover-layered);



}







.service-card:hover::after {



  opacity: 1;



}







.service-icon {



  width: 56px; height: 56px;



  background: var(--bg-light);



  border-radius: 12px;



  display: flex;



  align-items: center;



  justify-content: center;



  margin-bottom: 20px;



  color: var(--teal);



}







.service-card h3 {



  font-size: 18px;



  color: var(--dark);



  margin-bottom: 10px;



}







.service-card p {



  font-size: 14px;



  color: var(--gray-metallic);



  line-height: 1.5;



  margin-bottom: 16px;



}







.service-link {



  display: inline-flex;



  align-items: center;



  gap: 6px;



  color: var(--teal);



  font-size: 14px;



  font-weight: 700;



  margin-top: auto;



}







.service-link:hover { gap: 10px; color: var(--teal-light); }







/* ===== DOCTORS ===== */



.doctors-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



}







.doctor-card {



  background: var(--white);



  border-radius: var(--radius);



  padding: 28px 20px;



  text-align: center;



  box-shadow: 0 1px 3px rgba(43,76,155,0.08), 0 4px 12px rgba(43,76,155,0.06), 0 8px 24px rgba(43,76,155,0.04);



  border: 1px solid rgba(225, 229, 232, 0.12);



  transition: var(--transition);



  display: flex;



  flex-direction: column;



  align-items: center;



  flex: 1;



  min-height: 100%;



  box-sizing: border-box;



  position: relative;



  overflow: hidden;



}







.doctor-card::after {



  content: '';



  position: absolute;



  inset: 0;



  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 60%);



  opacity: 0;



  transition: opacity 0.3s ease;



  pointer-events: none;



}







.doctor-card:hover {



  border-color: rgba(225, 229, 232, 0.3);



  transform: translateY(-6px);



  box-shadow: var(--shadow-card-hover-layered);



}







.doctor-card:hover::after {



  opacity: 1;



}







/* Staff page grid — equal height cards */



.staff-grid {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));



  gap: 24px;



  align-items: stretch;



}







.staff-grid > a {



  display: flex;



  flex-direction: column;



}







.staff-grid > a > .doctor-card {



  flex: 1;



}







.staff-grid > a > .doctor-card .doctor-card-content {



  width: 100%;



}







.doctor-photo {



  width: 120px; height: 120px;



  border-radius: 50%;



  object-fit: cover;



  margin: 0 auto 16px;



  border: 4px solid var(--bg-light);



}







.doctor-name {



  font-size: 18px;



  font-weight: 700;



  color: var(--dark);



  margin-bottom: 4px;



}







.doctor-position {



  font-size: 14px;



  color: var(--teal);



  font-weight: 600;



  margin-bottom: 8px;



}







.doctor-experience {



  font-size: 13px;



  color: var(--gray-metallic);



  display: flex;



  align-items: center;



  justify-content: center;



  gap: 4px;



}







/* ===== REVIEWS ===== */



.reviews-wrapper { position: relative; overflow: hidden; }







.reviews-track {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



}







.review-card {



  background: #ffffff;



  border-radius: var(--radius);



  padding: 28px;



  box-shadow: 0 2px 6px rgba(52, 58, 64, 0.08), 0 8px 20px rgba(52, 58, 64, 0.10);



  border: 1px solid rgba(52, 58, 64, 0.10);



  transition: var(--transition);



  position: relative;



  overflow: hidden;



}







.review-card::before {



  content: '';



  position: absolute;



  top: 0;



  left: 0;



  right: 0;



  height: 4px;



  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bg) 100%);



}







.review-card:hover {



  border-color: rgba(52, 58, 64, 0.20);



  transform: translateY(-6px);



  box-shadow: 0 12px 32px rgba(52, 58, 64, 0.16), 0 4px 12px rgba(52, 58, 64, 0.10);



}







.review-card:hover::after {



  opacity: 1;



}







.review-stars { color: #E8A652; font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }







.review-text {



  font-size: 15px;



  color: var(--dark);



  line-height: 1.65;



  margin-bottom: 20px;



  font-style: italic;



}







.review-author {



  font-size: 14px;



  font-weight: 700;



  color: var(--dark);



}







/* ===== CTA FORM ===== */



.cta-section {



  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-dark) 100%);



  color: var(--dark);



  padding: 80px 0;



  position: relative;



  overflow: hidden;



}



/* Wave SVG divider at top — smooth transition from previous section */



.cta-section::before {



  content: '';



  position: absolute;



  top: -1px;



  left: 0;



  right: 0;



  height: 60px;



  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23E1E5E8' d='M0,60 C240,20 480,0 720,20 C960,40 1200,20 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;



  background-size: 100% 60px;



  pointer-events: none;



  z-index: 1;



}







.cta-inner {



  max-width: 600px;



  margin: 0 auto;



  text-align: center;



}







.cta-section .section-title { color: var(--dark); font-size: 36px; }



.cta-section .section-subtitle { color: rgba(0,0,0,0.65); font-size: 18px; }







.cta-form {



  border-radius: var(--radius);



  padding: 40px 32px;



  box-shadow: var(--shadow-card);



  max-width: 720px;



  margin: 0 auto;



  width: 100%;



}







.form-group { margin-bottom: 16px; text-align: left; }







.form-group label {



  display: block;



  font-size: 13px;



  font-weight: 700;



  color: var(--dark);



  margin-bottom: 6px;



  text-transform: uppercase;



  letter-spacing: 0.5px;



}







.form-group input,



.form-group textarea {



  width: 100%;



  padding: 14px 16px;



  border: 2px solid var(--input-border);



  border-radius: var(--radius-sm);



  font-size: 15px;



  font-family: 'Manrope', system-ui, sans-serif;



  color: var(--dark);



  transition: var(--transition);



  background: var(--bg-light);



}







.form-group input:focus,



.form-group textarea:focus {



  outline: none;



  border-color: var(--teal);



  background: var(--white);



}







.form-group textarea { resize: vertical; min-height: 100px; }







.cta-form .btn {



  width: 100%;



  background: linear-gradient(135deg, var(--white) 0%, #e6e6e6 100%);



  color: var(--dark);



  font-size: 17px;



  font-weight: 700;



  padding: 18px;



  margin-top: 8px;



}







.cta-form .btn:hover {



  transform: translateY(-2px);



  box-shadow: var(--shadow-teal);



}







.form-disclaimer {



  font-size: 12px;



  color: var(--gray-metallic);



  text-align: center;



  margin-top: 16px;



  display: flex;



  align-items: center;



  justify-content: center;



  gap: 6px;



}







/* ===== FOOTER ===== */



.footer {



  background: var(--bg-light);



  color: var(--dark);



  padding: 60px 0 30px;



  border-top: 3px solid var(--teal);



}



.footer .container {



  position: relative;



  z-index: 1;



}







.footer-grid {



  display: grid;



  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.15fr);



  gap: 40px;



  margin-bottom: 40px;



}







.footer-brand .logo { color: var(--teal); font-size: 28px; margin-bottom: 12px; }



.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; color: var(--dark); }







.footer h4 {



  color: var(--teal);



  font-size: 16px;



  font-weight: 700;



  margin-bottom: 16px;



}







.footer-links a {



  display: block;



  font-size: 14px;



  padding: 4px 0;



  color: var(--dark);



  transition: var(--transition);



}







.footer-links a:hover { color: var(--teal); }







.footer-contact-item {



  display: flex;



  align-items: center;



  gap: 10px;



  font-size: 14px;



  padding: 6px 0;



  color: var(--dark);



}







.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }







.footer-bottom {



  border-top: 1px solid rgba(225, 229, 232, 0.15);



  padding-top: 24px;



  display: flex;



  justify-content: space-between;



  align-items: center;



  flex-wrap: wrap;



  gap: 16px;



}







.footer-bottom p { font-size: 13px; color: var(--dark); }







.social-links { display: flex; flex-wrap: wrap; gap: 12px; }







.social-links a {



  display: inline-flex;



  align-items: center;



  gap: 10px;



  padding: 10px 16px;



  border-radius: var(--radius-sm);



  background: var(--teal-bg);



  transition: var(--transition);



  color: var(--dark);



  text-decoration: none;



  font-weight: 600;



  font-size: 15px;



  white-space: nowrap;



}







.social-links a svg {



  width: 20px;



  height: 20px;



  flex-shrink: 0;



}







.social-links a:hover { background: var(--teal-light); }







/* ===== RESPONSIVE ===== */



@media (max-width: 1024px) {



  .hero--bleed { min-height: 0; aspect-ratio: 3 / 2; max-height: 78vh; }



  .hero-inner { padding: 80px 20px 56px; }



  .benefits-grid, .services-grid, .doctors-grid { grid-template-columns: repeat(2, 1fr); }



  .footer-grid { grid-template-columns: 1fr 1fr; }



}







@media (max-width: 768px) {



  .nav { display: none; }



  .burger { display: flex; }



  



  .nav.active {



    display: flex;



    flex-direction: column;



    position: absolute;



    top: 100%;



    left: 0;



    right: 0;



    background: var(--white);



    box-shadow: var(--shadow-sm);



    padding: 16px;



    gap: 4px;



  }



  .nav.active a { padding: 12px 16px; }







  .header-actions .theme-toggle,



  .header-actions .header-social { display: none; }



  



  .hero--bleed { min-height: 0; aspect-ratio: 3 / 2; max-height: 72vh; }



  .hero-inner { padding: 72px 20px 48px; }



  .hero-content { text-align: left; }



  .hero-cta { flex-direction: column; align-items: stretch; }



  .hero-cta .btn { width: 100%; }







  .scenario-row {



    flex-direction: column;



    align-items: stretch;



    gap: 12px;



  }



  .scenario-btn { width: 100%; text-align: center; }



  



  .benefits-grid, .services-grid, .doctors-grid { grid-template-columns: 1fr; }



  .reviews-track { grid-template-columns: 1fr; }



  .section-title { font-size: 28px; }



  



  .symptoms-grid { grid-template-columns: 1fr; }



  



  .footer-grid { grid-template-columns: 1fr; gap: 24px; }



  .footer-bottom { flex-direction: column; text-align: center; }







  body { padding-bottom: 72px; }



}







@media (max-width: 480px) {



  .btn-large { padding: 16px 24px; font-size: 15px; }



  section { padding: 60px 0; }



  .hero-scenarios-section { padding: 40px 0; }



  .cta-form { padding: 24px 20px; }



  .scenario-title { font-size: 16px; }



  .scenario-desc { font-size: 13px; }



}











/* ===== IMPROVED BUTTON HOVER ===== */



.btn {



  transition: var(--transition-hover);



}



.btn:hover {



  transform: translateY(-2px);



  box-shadow: var(--shadow-primary);



}







/* ===== CARD HOVER LIFT ===== */



.card-hover {



  transition: var(--transition-hover);



}



.card-hover:hover {



  transform: translateY(-3px);



  box-shadow: var(--shadow-card-hover);



}



.card-hover-scale:hover {



  transform: scale(1.02);



}







/* ===== Cookie Banner ===== */



.cookie-banner {



  animation: fadeSlideIn 0.3s ease !important;



}



@keyframes fadeSlideIn {



  from { opacity: 0; transform: translateY(20px); }



  to   { opacity: 1; transform: translateY(0); }



}







/* ===== ACCORDION SMOOTH ===== */



.accordion-body {



  transition: max-height 0.35s ease, opacity 0.2s ease;



}



.accordion-item.open .accordion-body {



  opacity: 1;



}







/* ===== CHAT WIDGET ===== */



/* ===== HOVER-LIFT CARD (generic) ===== */



.hover-lift {



  transition: var(--transition);



  cursor: pointer;



}



.hover-lift:hover {



  box-shadow: var(--shadow);



  transform: translateY(-4px);



}







/* ===== ADVANTAGE CARDS (index.ejs section 4) ===== */



.advantage-card {



  background: var(--white);



  border-radius: var(--radius);



  padding: 32px;



  box-shadow: 0 1px 3px rgba(43,76,155,0.08), 0 4px 12px rgba(43,76,155,0.06), 0 8px 24px rgba(43,76,155,0.04);



  border: 1px solid rgba(225, 229, 232, 0.12);



  transition: var(--transition);



  cursor: default;



  height: 100%;



  display: flex;



  flex-direction: column;



  position: relative;



  overflow: hidden;



}







.advantage-card::after {



  content: '';



  position: absolute;



  inset: 0;



  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 60%);



  opacity: 0;



  transition: opacity 0.3s ease;



  pointer-events: none;



}







.advantage-card:hover {



  border-color: rgba(225, 229, 232, 0.3);



  transform: translateY(-6px) scale(1.01);



  box-shadow: var(--shadow-card-hover-layered);



}







.advantage-card:hover::after {



  opacity: 1;



}







/* ===== DIRECTION CARDS (index.ejs section 5) ===== */



.direction-card {



  background: var(--white);



  border-radius: var(--radius);



  padding: 28px;



  box-shadow: var(--shadow-sm);



  border-left: 4px solid var(--teal);



  transition: var(--transition);



  height: 100%;



  display: flex;



  flex-direction: column;



  position: relative;



  overflow: hidden;



}







.direction-card::after {



  content: '';



  position: absolute;



  inset: 0;



  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 60%);



  opacity: 0;



  transition: opacity 0.3s ease;



  pointer-events: none;



}







.direction-card:hover {



  border-color: rgba(225, 229, 232, 0.3);



  border-left-color: var(--teal);



  transform: translateY(-6px);



  box-shadow: var(--shadow-card-hover-layered);



}







.direction-card:hover::after {



  opacity: 1;



}







/* ===== REVIEW CARDS (index.ejs section 7) ===== */



/* (review-card fully defined above, see ~line 838) */







/* ===== REVIEW PLATFORM LINKS (index.ejs section 7b) ===== */



.review-platform-link {



  display: flex;



  align-items: center;



  gap: 14px;



  padding: 18px 22px;



  background: var(--white);



  border-radius: var(--radius);



  box-shadow: var(--shadow-sm);



  border: 1px solid rgba(225, 229, 232, 0.1);



  text-decoration: none;



  transition: var(--transition);



}



.review-platform-link:hover {



  border-color: var(--teal);



  box-shadow: var(--shadow);



}







/* ===== SOCIAL ICON LINKS (footer) ===== */



.social-icon-link {



  width: 40px;



  height: 40px;



  background: var(--teal-bg);



  border-radius: 10px;



  display: flex;



  align-items: center;



  justify-content: center;



  transition: var(--transition);



  text-decoration: none;



}



.social-icon-link:hover {



  transform: translateY(-2px);



}







.chat-btn {



  width: 56px;



  height: 56px;



  border-radius: 50%;



  display: flex;



  align-items: center;



  justify-content: center;



  box-shadow: var(--shadow-sm);



  text-decoration: none;



  transition: transform 0.2s ease, box-shadow 0.2s ease;



}



.chat-btn:hover {



  transform: scale(1.1);



  box-shadow: var(--shadow-chat);



}







/* ===== Contact hub (TG/WA/AI) — single FAB ===== */



#messengers-widget.contact-hub {



  position: fixed;



  bottom: 20px;



  right: 20px;



  z-index: 50;



  display: flex;



  flex-direction: column-reverse;



  gap: 10px;



  align-items: flex-end;



}







.contact-hub__toggle {



  display: inline-flex;



  align-items: center;



  gap: 8px;



  min-height: 52px;



  padding: 0 18px;



  border: none;



  border-radius: 999px;



  background: var(--teal);



  color: var(--teal-light);



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 700;



  font-size: 14px;



  cursor: pointer;



  box-shadow: var(--shadow-primary);



}







.contact-hub__toggle:hover { filter: brightness(1.05); }



.contact-hub.is-open .contact-hub__toggle { background: var(--dark); }







.contact-hub__panel {



  display: flex;



  flex-direction: column;



  gap: 8px;



  align-items: stretch;



  min-width: 180px;



}







.contact-hub__panel[hidden] { display: none !important; }







.contact-hub .chat-btn {



  width: auto;



  height: auto;



  min-height: 44px;



  border-radius: 12px;



  padding: 10px 14px;



  justify-content: flex-start;



  gap: 10px;



  font-size: 14px;



  font-weight: 600;



  color: #fff;



  text-decoration: none;



  border: none;



  cursor: pointer;



}







.contact-hub .chat-btn span { color: #fff; }



.chat-btn--telegram,



.chat-btn--whatsapp,



.chat-btn--ai { background: var(--teal); }



.chat-btn--telegram:hover,



.chat-btn--whatsapp:hover,



.chat-btn--ai:hover { background: var(--dark); }



.chat-btn--telegram { color: #fff; }







/* Mobile sticky call bar — corporate colors */



.mobile-cta-bar {



  display: none;



  position: fixed;



  left: 0;



  right: 0;



  bottom: 0;



  z-index: var(--z-sticky);



  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));



  background: rgba(245, 241, 234, 0.96);



  border-top: 1px solid rgba(103, 100, 88, 0.18);



  gap: 8px;



}







.mobile-cta-bar__call,



.mobile-cta-bar__msg {



  display: inline-flex;



  align-items: center;



  justify-content: center;



  gap: 8px;



  min-height: 48px;



  border-radius: 12px;



  font-family: 'Manrope', system-ui, sans-serif;



  font-weight: 700;



  font-size: 14px;



  text-decoration: none;



}







.mobile-cta-bar__call {



  flex: 1.4;



  background: var(--primary);



  color: var(--primary-ink);



  box-shadow: 0 2px 10px rgba(169, 202, 214, 0.45);



}



.mobile-cta-bar__phone {



  white-space: nowrap;



  font-size: 15px;



}







.mobile-cta-bar__msg {



  flex: 0.8;



  background: var(--teal-bg);



  color: var(--dark);



}







@media (max-width: 768px) {



  .mobile-cta-bar { display: flex; }
  .hero-scenarios-section, .home-prices-block, .section--alt { padding-bottom: 100px !important; margin-bottom: 0 !important; }
  .hero-scenarios-section .scenario-grid { margin-bottom: 80px !important; }
  .hero-content .hero-badge { max-width: 360px; font-size: 0.75rem; padding: 4px 10px; }
  .services-grid, .directions-grid { margin-bottom: 80px !important; }
  .services-section, .directions-section, .section { padding-bottom: 100px !important; }
  body { padding-bottom: 76px !important; }
  main { padding-bottom: 0; }







  /* Hidden on mobile: duplicates mobile-cta-bar (tel+WA) and overlaps CTA buttons */



  #messengers-widget.contact-hub {



    display: none !important;



  }







  .contact-hub__label { display: none; }



  .contact-hub__toggle {



    width: 52px;



    height: 52px;



    padding: 0;



    justify-content: center;



    border-radius: 50%;



  }







  .cookie-banner {



    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;



    right: 12px !important;



    left: 12px !important;



    max-width: none !important;



    padding: 14px 16px !important;



  }



}







@media (min-width: 769px) {



  .mobile-cta-bar { display: none !important; }



}







/* ===== SHARED GRID LAYOUTS ===== */



.grid-auto-300 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: stretch; }



.grid-auto-280 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }



.grid-auto-240 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; align-items: stretch; }



.grid-auto-220 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; align-items: stretch; }



/* Doctors: flexbox for centering last row */



#doctors .grid-auto-220 {



  display: flex;



  flex-wrap: wrap;



  justify-content: center;



  gap: 24px;



}



#doctors .grid-auto-220 > * {



  flex: 0 0 280px;



  max-width: 280px;



  background: #fff !important;



  border-radius: 16px;



  box-shadow: 0 4px 20px rgba(52,58,64,0.08) !important;



  transition: all .3s;



}



#doctors .grid-auto-220 > *:hover {



  transform: translateY(-6px);



  box-shadow: 0 12px 36px rgba(52,58,64,0.12) !important;



}



#doctors .grid-auto-220 > *:hover .doctor-photo-img {



  transform: scale(1.08);



}



#doctors .doctor-photo-img {



  transition: transform .3s;



}



.grid-auto-200 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; align-items: stretch; }



/* Reviews platforms: flexbox for centering last row */



.reviews-platforms-title{text-align:center;font-size:22px;font-weight:700;color:var(--dark);margin:0 0 20px}



.reviews-platforms{text-align:center}



.reviews-platforms .grid-auto-200{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}



.reviews-platforms .grid-auto-200 > *{flex:0 0 240px;max-width:240px}



.grid-auto-320 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; align-items: stretch; }



.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }



.grid-2col-stretch { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }







/* ===== SHARED FLEX LAYOUTS ===== */



.flex-gap-12 { display: flex; gap: 12px; flex-wrap: wrap; }



.flex-gap-2 { display: flex; gap: 2px; flex-wrap: wrap; }



.flex-gap-16 { display: flex; gap: 16px; flex-wrap: wrap; }



.flex-center { display: flex; align-items: center; justify-content: center; }



.flex-between { display: flex; align-items: center; justify-content: space-between; }



.flex-col { display: flex; flex-direction: column; }



.flex-col-center { display: flex; flex-direction: column; align-items: center; }







/* ===== SECTION BACKGROUNDS ===== */



.bg-light { background: var(--bg-light); }



.bg-white { background: var(--white); }



.bg-teal-gradient { background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-dark) 100%); }



.bg-dark { background: var(--dark); }







/* ===== SHARED SECTION PADDING ===== */



.section-pad { padding: 60px 0; }



.section-pad-lg { padding: 64px 0; }



.section-pad-xl { padding: 80px 0; }







/* ===== CTA SECTION (teal gradient + form) ===== */



.cta-teal {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-teal .container {
  position: relative;
  z-index: 2;
}
.cta-teal::before{display:none!important}
.cta-teal .section-title,
.cta-teal .cta-white-title,
.cta-teal h2 { color: #fff; }
.cta-teal .text-lg,
.cta-teal .cta-white-sub { color: #fff; margin-bottom: 36px; }
.cta-teal .cta-teal-disclaimer { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.8); }
.cta-teal .consent-checkbox { color: #fff; }
.cta-teal .consent-checkbox a { color: var(--teal-bg); text-decoration: underline; font-weight: 700; }
.cta-teal .consent-checkbox a:hover { opacity: 0.85; }
.cta-teal .consent-checkbox-cta { font-size: 14px; line-height: 1.5; color: #fff; text-align: left; }
.cta-teal .consent-checkbox-cta span { display: block; }
.cta-teal .consent-checkbox-cta a { color: var(--teal-bg); text-decoration: underline; font-weight: 700; }
.cta-teal .btn-cta-submit,
.cta-teal .btn-primary,
.cta-teal button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--white) 100%);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .3s;
  margin-top: 12px;
  box-shadow: 0 4px 14px rgba(52,58,64,.25);
}
.cta-teal .btn-cta-submit:hover,
.cta-teal .btn-primary:hover,
.cta-teal button[type="submit"]:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,58,64,.3);
}




.cta-input {



  width: 100%;



  padding: 16px 20px;



  border-radius: var(--radius-sm);



  border: 1px solid rgba(103,100,88,0.35);



  font-size: 16px;



  font-family: inherit;



  background: var(--white);



  color: var(--dark);



  outline: none;



}



.cta-input::placeholder { color: var(--text-secondary); }



.cta-input:focus { border-color: var(--teal-bg); box-shadow: 0 0 0 3px rgba(169,202,214,0.3); }







/* Consent checkbox */



.consent-checkbox { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; font-size: 13px; color: var(--teal); cursor: pointer; }



.consent-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }



.consent-checkbox a { color: var(--teal); text-decoration: underline; font-weight: 700; }



.consent-checkbox a:hover { opacity: 0.85; }



.cta-teal .consent-checkbox { color: var(--teal); }



.cta-teal .consent-checkbox a { color: var(--teal); }



.footer-contact-line { font-size: 14px; color: var(--dark); margin-bottom: 8px; }



.footer-contact-line strong { color: var(--teal); }



.footer-contact-line a { color: var(--teal); }



.footer-socials { display: flex; gap: 12px; }







/* ===== ICON CONTAINERS ===== */



.icon-box-teal {



  width: 48px; height: 48px;



  background: linear-gradient(135deg, var(--teal-bg), var(--teal-light));



  border-radius: 12px;



  display: flex; align-items: center; justify-content: center;



  margin-bottom: 16px;



  flex-shrink: 0;



}



.icon-box-44 {



  width: 44px; height: 44px;



  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-light) 100%);



  border-radius: 10px;



  display: flex; align-items: center; justify-content: center;



  flex-shrink: 0;



}







/* ===== SOCIAL ICON BUTTONS ===== */



.soc-icon-btn {



  width: 40px; height: 40px;



  background: var(--teal-bg);



  border-radius: 10px;



  display: flex; align-items: center; justify-content: center;



  transition: var(--transition);



  text-decoration: none;



}



.soc-icon-btn:hover { transform: translateY(-2px); }







/* ===== MISC TEXT UTILITIES ===== */



.text-white { color: var(--white); }



.text-teal { color: var(--teal); }



.text-muted { color: var(--gray-metallic); }



.text-dark { color: var(--dark); }



.text-center { text-align: center; }



.text-opacity-7 { font-size: 13px; opacity: 0.7; }



.text-lg { font-size: 18px; }



.mb-8 { margin-bottom: 8px; }



.mb-12 { margin-bottom: 12px; }



.mb-16 { margin-bottom: 16px; }



.mb-20 { margin-bottom: 20px; }



.mt-8 { margin-top: 8px; }



.mt-12 { margin-top: 12px; }



.mt-16 { margin-top: 16px; }







/* ===== STAFF PAGE ===== */



.staff-hero { padding: 60px 0; text-align: center; }



.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }



.staff-card {



  background: var(--white);



  border-radius: var(--radius);



  padding: 28px;



  text-align: center;



  box-shadow: var(--shadow-sm);



  transition: var(--transition);



  flex: 1;



  display: flex; flex-direction: column; align-items: center;



}



.staff-card:hover { box-shadow: var(--shadow); }







/* ===== STAFF SHOW PAGE — solid doctor profile ===== */



.doc-profile {



  padding: 36px 0 72px;



  background:



    linear-gradient(180deg, var(--bg-light) 0%, var(--white) 42%, var(--white) 100%);



}







.doc-profile__crumbs {



  display: flex;



  flex-wrap: wrap;



  gap: 8px;



  align-items: center;



  font-size: 13px;



  color: var(--text-secondary);



  margin-bottom: 28px;



}







.doc-profile__crumbs a { color: var(--teal); font-weight: 600; }



.doc-profile__crumbs a:hover { text-decoration: underline; }







.doc-profile__grid {



  display: grid;



  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);



  gap: 48px;



  align-items: start;



}







.doc-profile__media {



  position: sticky;



  top: 96px;



}







.doc-profile__photo {



  margin: 0 0 20px;



  border-radius: 4px;



  overflow: hidden;



  background: var(--bg-light);



  border: 1px solid rgba(103, 100, 88, 0.18);



  aspect-ratio: 4 / 5;



}







.doc-profile__photo img {



  width: 100%;



  height: 100%;



  object-fit: cover;



  object-position: center top;



  display: block;



}







.doc-profile__actions {



  display: flex;



  flex-direction: column;



  gap: 10px;



  margin-bottom: 20px;



}







.doc-profile__actions .btn { width: 100%; }







.doc-profile__facts {



  list-style: none;



  margin: 0;



  padding: 0;



  border-top: 1px solid rgba(103, 100, 88, 0.18);



}







.doc-profile__facts li {



  display: flex;



  justify-content: space-between;



  gap: 16px;



  padding: 12px 0;



  border-bottom: 1px solid rgba(103, 100, 88, 0.12);



  font-size: 14px;



}







.doc-profile__facts span { color: var(--text-secondary); }



.doc-profile__facts strong { color: var(--dark); font-weight: 700; text-align: right; }







.doc-profile__eyebrow {



  margin: 0 0 8px;



  font-size: 13px;



  font-weight: 700;



  letter-spacing: 0.06em;



  text-transform: uppercase;



  color: var(--teal);



}







.doc-profile__name {



  margin: 0 0 12px;



  font-size: clamp(32px, 4vw, 44px);



  font-weight: 900;



  letter-spacing: -0.03em;



  line-height: 1.1;



  color: var(--dark);



}







.doc-profile__lead {



  margin: 0 0 28px;



  font-size: 18px;



  line-height: 1.55;



  color: var(--text-secondary);



  max-width: 40em;



}







.doc-profile__metrics {



  display: grid;



  grid-template-columns: repeat(3, minmax(0, 1fr));



  gap: 12px;



  margin-bottom: 36px;



  padding: 18px 0;



  border-top: 1px solid rgba(103, 100, 88, 0.18);



  border-bottom: 1px solid rgba(103, 100, 88, 0.18);



}







.doc-metric {



  display: flex;



  flex-direction: column;



  gap: 4px;



}







.doc-metric strong {



  font-size: 28px;



  font-weight: 900;



  color: var(--teal);



  line-height: 1;



}







.doc-metric span {



  font-size: 12px;



  font-weight: 600;



  color: var(--text-secondary);



  line-height: 1.3;



}







.doc-block {



  margin-bottom: 28px;



  max-width: 42em;



}







.doc-block h2 {



  margin: 0 0 10px;



  font-size: 18px;



  font-weight: 800;



  color: var(--dark);



}







.doc-block p {



  margin: 0;



  font-size: 15px;



  line-height: 1.7;



  color: var(--dark);



}







.doc-cert-list {



  margin: 0;



  padding: 0;



  list-style: none;



}







.doc-cert-list li {



  position: relative;



  padding: 10px 0 10px 18px;



  border-bottom: 1px solid rgba(103, 100, 88, 0.12);



  font-size: 14px;



  line-height: 1.5;



  color: var(--dark);



}







.doc-cert-list li::before {



  content: '';



  position: absolute;



  left: 0;



  top: 17px;



  width: 7px;



  height: 7px;



  border-radius: 50%;



  background: var(--teal-bg);



  box-shadow: inset 0 0 0 1px rgba(103, 100, 88, 0.35);



}







.doc-quote {



  margin: 0;



  padding: 20px 22px;



  background: var(--bg-light);



  border-left: 3px solid var(--teal);



}







.doc-quote p {



  margin: 0 0 14px;



  font-size: 16px;



  line-height: 1.6;



  color: var(--dark);



}







.doc-quote footer {



  display: flex;



  align-items: center;



  justify-content: space-between;



  gap: 12px;



}







.doc-quote cite {



  font-style: normal;



  font-size: 13px;



  font-weight: 700;



  color: var(--teal);



}







.specialization-tags {



  display: flex;



  flex-wrap: wrap;



  gap: 8px;



}







.spec-tag {



  padding: 7px 14px;



  background: transparent;



  border: 1px solid rgba(103, 100, 88, 0.28);



  border-radius: 999px;



  font-size: 13px;



  font-weight: 600;



  color: var(--teal);



}







.doc-platforms {



  display: grid;



  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));



  gap: 12px;



  margin-top: 28px;



}







.doc-platform {



  display: flex;



  flex-direction: column;



  gap: 4px;



  padding: 16px 18px;



  border-top: 2px solid var(--teal);



  background: var(--bg-light);



  text-decoration: none;



  color: inherit;



  transition: background 0.2s ease;



}







.doc-platform:hover { background: var(--teal-bg); }



.doc-platform__name { font-size: 15px; font-weight: 700; color: var(--dark); }



.doc-platform__desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }







.btn-book { padding: 14px 32px; }



.back-link { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; display: inline-block; }







@media (max-width: 900px) {



  .doc-profile__grid {



    grid-template-columns: 1fr;



    gap: 28px;



  }



  .doc-profile__media { position: static; max-width: 420px; }



  .doc-profile__metrics { grid-template-columns: repeat(3, 1fr); }



}







@media (max-width: 560px) {



  .doc-profile { padding: 24px 0 48px; }



  .doc-profile__media { max-width: none; }



  .doc-profile__actions { flex-direction: column; }



  .doc-profile__metrics { grid-template-columns: 1fr; gap: 16px; }



  .doc-profile__lead { font-size: 16px; }



}







/* ===== ABOUT PAGE ===== */



.about-hero { background: linear-gradient(135deg, #e8edf7 0%, #dce4f0 100%); padding: 60px 0 48px; }



.about-hero-grid { display: block; max-width: 1100px; margin: 0 auto; }



.about-hero-grid > div:first-child { margin-bottom: 32px; }



.about-hero-image { width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }



.about-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }



.about-hero h1 { font-size: 42px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }



.about-hero-sub { font-size: 18px; color: var(--gray-metallic); max-width: 700px; }



@media (max-width: 800px) { .about-hero h1 { font-size: 32px; } .about-hero-image { aspect-ratio: 4 / 3; } }



.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 48px 0; text-align: center; }



.stat-item { padding: 32px 20px; background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-dark) 100%); border-radius: var(--radius); color: var(--dark); }



.stat-num { font-size: 48px; font-weight: 900; color: var(--teal); }



.stat-label { font-size: 14px; opacity: 0.85; margin-top: 4px; }



.mission-section { background: var(--white); padding: 64px 0; }



.achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }



.achievement-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); text-align: center; border-top: 4px solid var(--teal); }



.achievement-icon { font-size: 36px; margin-bottom: 12px; }



.achievement-num { font-size: 40px; font-weight: 900; color: var(--teal); }



.achievement-label { font-size: 14px; color: var(--gray-metallic); margin-top: 6px; line-height: 1.4; }



.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0; }



@media (max-width: 1100px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }



@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; } }



.about-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--teal); }



.about-card h3 { color: var(--teal); margin-bottom: 12px; }



.about-card p, .about-card li { color: var(--gray-metallic); font-size: 15px; line-height: 1.7; }



.about-card ul { padding-left: 20px; }



.about-card li { margin-bottom: 8px; }



.timeline { max-width: 700px; margin: 48px auto; }



.timeline-item { display: flex; gap: 20px; margin-bottom: 24px; }



.timeline-year { min-width: 80px; font-size: 20px; font-weight: 900; color: var(--teal); }



.timeline-desc { font-size: 15px; color: var(--gray-metallic); line-height: 1.6; }



.license-badge { display: inline-flex; align-items: center; gap: 12px; padding: 20px 28px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); }



.license-badge-icon { color: var(--teal); flex-shrink: 0; }



.license-badge-text { font-size: 15px; color: var(--dark); }



.license-badge-text strong { display: block; color: var(--teal); font-size: 13px; margin-bottom: 2px; }



.license-badges-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 32px 0 48px; }







/* ===== LICENSES PAGE ===== */



.license-summary { display: flex; align-items: center; gap: 20px; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border-left: 4px solid var(--teal); margin-bottom: 40px; }



.license-summary-icon { color: var(--teal); flex-shrink: 0; }



.license-summary-text h2 { font-size: 22px; margin-bottom: 6px; color: var(--dark); }



.license-summary-text p { color: var(--gray-metallic); margin: 0; }



.license-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }



@media (max-width: 900px) { .license-gallery { grid-template-columns: repeat(2, 1fr); } }



@media (max-width: 560px) { .license-gallery { grid-template-columns: 1fr; } }



.license-thumb { display: block; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }



.license-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }



.license-thumb img { display: block; width: 100%; height: auto; object-fit: contain; background: var(--bg-light); border-bottom: 1px solid var(--gray-light); }



.license-thumb-label { display: block; padding: 12px; text-align: center; font-size: 14px; color: var(--dark); font-weight: 600; }



.license-download { text-align: center; margin-bottom: 64px; }



.legal-info { max-width: 700px; margin: 0 auto; }



.legal-table { width: 100%; border-collapse: collapse; }



.legal-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-light); font-size: 15px; }



.legal-table td:first-child { color: var(--gray-metallic); width: 40%; }



.legal-table td:last-child { color: var(--dark); font-weight: 600; }







/* ===== TRUST BADGE ===== */



.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }



.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--dark); }















/* ===== DOCTOR CARD (index.ejs section 6) ===== */



.doctor-photo-circle {



  width: 140px; height: 140px;



  border-radius: 50%; margin: 0 auto 16px;



  overflow: hidden;



  box-shadow: var(--shadow-card);



}



.doctor-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }



.doctor-card-name { font-size: 16px; margin-bottom: 4px; }



.review-text { font-size: 14px; line-height: 1.7; color: var(--dark); font-style: italic; margin-bottom: 12px; }



.doctor-card .review-author { font-size: 13px; color: var(--dark); font-weight: 600; }



.review-card-name { font-size: 16px; margin-bottom: 4px; }



.doctor-card-position { color: var(--teal); font-size: 13px; font-weight: 600; margin-bottom: 4px; }



.doctor-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }



.doctor-bio { font-size: 12px; color: var(--gray-metallic); line-height: 1.5; margin-bottom: 12px; }



.doctor-card-hover { transition: var(--transition); }







/* ===== STAFF SHOW PAGE ===== */



.staff-hero { padding: 60px 0; }



.back-link { color: var(--gray-metallic); font-size: 14px; margin-bottom: 24px; display: inline-block; }



.staff-hero-inner { text-align: center; }



.staff-photo-large { width: 240px; height: 240px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; box-shadow: var(--shadow-avatar); }



.staff-photo-large img { width: 100%; height: 100%; object-fit: cover; display: block; }



.staff-name { font-size: 28px; font-weight: 900; margin-bottom: 4px; }



.staff-position { color: var(--teal); font-size: 16px; font-weight: 600; margin-bottom: 4px; }



.staff-exp { color: var(--gray-metallic); font-size: 14px; margin-bottom: 20px; }



.btn-book { padding: 14px 32px; }



.staff-sidebar { max-width: 560px; margin: 0 auto; }



.section-label { font-size: 22px; font-weight: 700; margin-bottom: 16px; }



.bio-text { font-size: 15px; color: var(--dark); line-height: 1.7; margin-bottom: 24px; }



.detail-label { font-size: 16px; font-weight: 700; margin-bottom: 10px; }



.detail-text { font-size: 14px; color: var(--gray-metallic); line-height: 1.6; margin-bottom: 20px; }



.cert-list { margin-bottom: 24px; }



.cert-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }



.cert-dot { width: 8px; height: 8px; background: var(--teal-bg); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }



.cert-text { font-size: 13px; color: var(--gray-metallic); line-height: 1.5; }



.specialization-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }



.spec-tag { padding: 6px 16px; background: var(--bg-light); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--teal); }



.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }



.review-item { background: var(--bg-light); border-radius: var(--radius); padding: 20px; border-left: 3px solid var(--teal); }



.review-item .review-text { font-size: 14px; color: var(--dark); line-height: 1.7; margin-bottom: 12px; font-style: italic; }



.review-footer { display: flex; justify-content: space-between; align-items: center; }



.review-item .review-author { font-size: 13px; font-weight: 600; color: var(--dark); }



.review-stars { display: flex; gap: 2px; }



.other-doctors { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }



.other-doctor-card { text-align: center; padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }



.other-doctor-card .doctor-photo-wrapper { width: 80px; height: 80px; margin: 0 auto 12px; }



.other-doctor-name { font-size: 15px; margin-bottom: 2px; }



.other-doctor-pos { font-size: 12px; color: var(--gray-metallic); }



.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 8px; }



.price-card { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(225, 229, 232, 0.1); text-decoration: none; transition: var(--transition), transform 0.2s ease, box-shadow 0.2s ease; }



.price-card:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow); border-color: var(--teal); }



.price-card-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-light) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }



.price-card-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }



.price-card-desc { font-size: 12px; color: var(--gray-metallic); }



.price-card-hover { transition: var(--transition); }



.doctor-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }







/* ===== SECTION SUBTITLE ===== */



.section-subtitle { color: var(--gray-metallic); font-size: 18px; }







/* ===== SYMPTOMS GRID ===== */



.symptoms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }



.symptom { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--dark); }







/* ===== EMERGENCY SECTION ===== */



.emergency { padding: 60px 0; }



.emergency-inner { text-align: center; }







/* ===== ADVANTAGE CARD ICON ===== */



.adv-icon-wrap {



  width: 48px; height: 48px;



  background: linear-gradient(135deg, var(--teal-bg), var(--teal-light));



  border-radius: 12px;



  display: flex; align-items: center; justify-content: center;



  margin-bottom: 16px;



}



.adv-title { font-size: 18px; margin-bottom: 8px; }



.adv-desc { color: var(--gray-metallic); font-size: 14px; line-height: 1.6; }







/* ===== DIRECTION CARD ===== */



.dir-title { font-size: 18px; margin-bottom: 8px; color: var(--teal); }



.dir-desc { color: var(--gray-metallic); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }



.dir-btn { padding: 10px 20px; font-size: 13px; }







/* ===== CTA BUTTON WHITE ===== */



.btn-white { background: #FFFFFF; color: var(--dark); font-weight: 700; }



.btn-outline-teal { border: 2px solid var(--teal); color: var(--teal); background: transparent; }



.btn-outline-teal:hover { background: var(--teal-bg); color: var(--dark); }







/* ===== CONTACTS PAGE ===== */



.contacts-cta { padding: 80px 0; }



.contacts-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }







/* ===== FAQ CTA ===== */



.faq-cta { padding: 80px 0; }







/* ===== MISSION VALUES ===== */



.mission-values { display: flex; flex-direction: column; gap: 12px; }



.mission-value { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark); }



.mission-value span { font-size: 20px; }







/* ===== SOCIAL ICON BUTTON (VK/Youtube generic) ===== */



.social-btn {



  width: 40px; height: 40px;



  background: var(--teal-bg);



  border-radius: 10px;



  display: flex; align-items: center; justify-content: center;



  transition: var(--transition);



  text-decoration: none;



}



.social-btn:hover { transform: translateY(-2px); }



.social-btn svg { color: var(--dark); }







/* ===== BREADCRUMBS ===== */



.breadcrumbs { margin-bottom: 12px; }



.breadcrumbs a { color: var(--gray-metallic); }



.breadcrumbs span { margin: 0 6px; color: var(--gray-metallic); }



.breadcrumbs-current { color: var(--dark); }







/* ===== PAGE HEADER ===== */



.page-header {



  background: var(--bg-light);



  padding: 48px 0 40px;



  border-bottom: 1px solid rgba(116, 140, 164, 0.1);



  position: relative;



  overflow: hidden;



  isolation: isolate;



}



.page-header .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }



/* page-header-bg — фоновое фото под контентом (добавлено в feat/real-clinic-photos) */



.page-header-bg {



  position: absolute;



  inset: 0;



  z-index: 0;



  margin: 0;



  pointer-events: none;



}



.page-header-bg img,



.page-header-bg source {



  width: 100%;



  height: 100%;



  object-fit: cover;



  object-position: center;



  display: block;



}



/* Затемняющий/осветляющий градиент поверх фото для читаемости текста */



.page-header::before {



  content: '';



  position: absolute;



  inset: 0;



  z-index: 1;



  background: linear-gradient(135deg, rgba(245,241,234,0.88) 0%, rgba(232,229,223,0.92) 100%);



  pointer-events: none;



}



.page-header--dark::before {



  background: linear-gradient(135deg, rgba(52,58,64,0.78) 0%, rgba(42,53,68,0.85) 100%);



}



.page-header .breadcrumbs {



  display: flex;



  align-items: center;



  gap: 8px;



  font-size: 14px;



  color: var(--gray-metallic);



  margin-bottom: 16px;



}



.page-header .breadcrumbs a { color: var(--gray-metallic); font-weight: 600; }



.page-header .breadcrumbs a:hover { color: var(--teal); }



.page-header .breadcrumbs span { color: var(--gray-metallic); }



.page-header h1 { font-size: 40px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 8px; color: var(--dark); word-break: keep-all; overflow-wrap: normal; }



.page-header h1 .accent { color: var(--teal); }



.page-header p { font-size: 18px; color: var(--gray-metallic); }







/* Page header modifiers */



.page-header--light {



  background: linear-gradient(135deg, #e8edf7 0%, #dce4f0 100%);



}



.page-header--dark {



  background: linear-gradient(135deg, var(--dark) 0%, #2a3544 100%);



  color: var(--white);



  border-bottom-color: transparent;



}



.page-header--dark .breadcrumbs,



.page-header--dark .breadcrumbs span { color: var(--gray-metallic); }



.page-header--dark .breadcrumbs a { color: var(--teal-light); }



.page-header--dark .breadcrumbs a:hover { text-decoration: underline; color: var(--white); }



.page-header--dark h1 { color: var(--white); }



.page-header--dark p { color: rgba(255, 255, 255, 0.8); }







@media (max-width: 768px) {



  .page-header h1 { font-size: 30px; }



  .page-header { padding: 36px 0 32px; }



}



@media (max-width: 480px) {



  .page-header h1 { font-size: 26px; }



}



.chat-btn--whatsapp { background: var(--teal); }







/* ===== INLINE STYLE REPLACEMENTS ===== */



.btn-sm-nav { padding: 10px 20px; font-size: 14px; }



.text-white-85 { color: rgba(255,255,255,0.85); }



.gap-20 { gap: 20px; }



.mb-12 { margin-bottom: 12px; }



.mt-8 { margin-top: 8px; }



.cta-white-title { color: #FFFFFF; }



.cta-white-sub { margin-bottom: 36px; opacity: 0.9; color: rgba(255,255,255,0.85); }







/* ===== Cookie Banner ===== */



.cookie-banner {



  position: fixed;



  bottom: 80px;



  right: 20px;



  max-width: 380px;



  background: var(--dark);



  color: white;



  padding: 20px 24px;



  z-index: var(--z-overlay);



  border-radius: 12px;



  font-size: 14px;



  line-height: 1.5;



  box-shadow: var(--shadow-toast);



  display: flex;



  flex-direction: column;



  gap: 14px;



  animation: slideUp 0.3s ease;



}



.cookie-banner .cookie-banner-text { margin: 0; }



.cookie-banner .cookie-banner-actions {



  display: flex;



  gap: 10px;



  justify-content: flex-end;



}



.cookie-banner .btn-outline {



  background: transparent;



  color: white;



  border: 1px solid rgba(255, 255, 255, 0.4);



  padding: 8px 16px;



  border-radius: 8px;



  cursor: pointer;



  font-weight: 500;



  font-size: 13px;



}



.cookie-banner 



@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }



.cookie-banner a:hover { color: var(--teal-light) !important; }



.cookie-banner[aria-hidden="true"] { display: none; }







/* ===== FORM VALIDATION ===== */



.form-group { position: relative; margin-bottom: 12px; }







.form-group input,



.form-group textarea {



  width: 100%;



  padding: 12px 14px;



  border: 2px solid var(--input-border);



  border-radius: var(--radius-sm);



  font-size: 14px;



  font-family: 'Manrope', system-ui, sans-serif;



  color: var(--dark);



  background: var(--bg-light);



  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;



}







.form-group input:focus,



.form-group textarea:focus {



  outline: none;



  border-color: var(--teal);



  background: #F5F1EA;



  box-shadow: var(--shadow-focus);



}



.form-group--error input,



.form-group--error textarea {



  border-color: #d44040;



  background: #fff5f5;



}







.form-group--error input:focus,



.form-group--error textarea:focus {



  box-shadow: var(--shadow-error);



}







.form-group--success input,



.form-group--success textarea {



  border-color: #2ecc71;



}







.form-error-msg {



  display: none;



  font-size: 12px;



  color: #d44040;



  margin-top: 4px;



  padding-left: 2px;



  font-weight: 600;



}







.form-group--error .form-error-msg { display: block; }







/* Hide reCAPTCHA v3 badge — key registered on 7300333.ru, not dev IP */



.grecaptcha-badge { display: none !important; }







/* ===== TYPOGRAPHY IMPROVEMENTS ===== */



body { line-height: 1.6; }







h1, h2, h3, h4 {



  letter-spacing: -0.3px;



}







.section-title {



  letter-spacing: -0.5px;



  line-height: 1.15;



}







.section-subtitle {



  line-height: 1.5;



}







p, li, td, th, span, a {



  line-height: 1.6;



}







.hero h1 {



  letter-spacing: -1px;



  line-height: 1.12;



}







.hero-subtitle {



  line-height: 1.55;



}







.price-name {



  line-height: 1.5;



}







.accordion-title h3 {



  letter-spacing: -0.2px;



}







.category-card h3 {



  letter-spacing: -0.2px;



}







.nav a {



  letter-spacing: 0.1px;



}







.btn {



  letter-spacing: 0.2px;



}







.footer-tagline {



  line-height: 1.6;



}







.adv-desc, .dir-desc {



  line-height: 1.6;



}







.review-text {



  line-height: 1.6;



}







/* ===== SCROLL REVEAL ANIMATION ===== */



.reveal {



  opacity: 0;



  transform: translateY(24px);



  transition: opacity 0.6s ease, transform 0.6s ease;



}



.reveal.revealed {



  opacity: 1;



  transform: translateY(0);



}



.reveal-delay-1 { transition-delay: 0.05s; }



.reveal-delay-2 { transition-delay: 0.10s; }



.reveal-delay-3 { transition-delay: 0.15s; }



.reveal-delay-4 { transition-delay: 0.20s; }



.reveal-delay-5 { transition-delay: 0.25s; }



.reveal-delay-6 { transition-delay: 0.30s; }







/* Respect reduced motion */



@media (prefers-reduced-motion: reduce) {



  .reveal {



    opacity: 1;



    transform: none;



    transition: none;



  }



}







/* ===== ENHANCED CARD HOVER EFFECTS ===== */



/* Lift + shadow */



.card-hover {



  transition: var(--transition-hover);



}



.card-hover:hover {



  transform: translateY(-4px);



  box-shadow: var(--shadow-card-hover);



}







/* Scale on hover (for doctor cards) */



.card-hover-scale {



  transition: var(--transition-hover);



}



.card-hover-scale:hover {



  transform: scale(1.03);



  box-shadow: var(--shadow-card-hover);



}











/* ===== ACCORDION ROW HOVER EFFECTS (prices page) ===== */



.price-row {



  transition: background 0.2s ease, transform 0.15s ease;



  cursor: default;



}



.price-row:hover {



  background: rgba(225, 229, 232, 0.06);



  transform: translateX(3px);



}



html[data-theme="dark"] .price-row:hover {



  background: rgba(74, 123, 197, 0.1);



}







/* ===== CTA INPUT ANIMATION ===== */



.cta-input {



  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;



}



.cta-input:focus {



  border-color: var(--teal);



  box-shadow: var(--shadow-focus);



}







/* ===== ACCORDION HEADER ACTIVE STATE ===== */



.accordion-item.open .accordion-header {



  background: rgba(225, 229, 232, 0.06);



}



html[data-theme="dark"] .accordion-item.open .accordion-header {



  background: rgba(74, 123, 197, 0.08);



}







/* ===== CATEGORY CARD ENHANCED HOVER ===== */



.category-card {



  position: relative;



  overflow: hidden;



}



.category-card::before {



  content: '';



  position: absolute;



  inset: 0;



  background: linear-gradient(135deg, rgba(225, 229, 232, 0.05) 0%, transparent 60%);



  opacity: 0;



  transition: opacity 0.3s ease;



}



.category-card:hover::before {



  opacity: 1;



}







/* ===== SCROLL PROGRESS BAR ===== */



#scroll-progress {



  position: fixed;



  top: 0;



  left: 0;



  height: 3px;



  background: linear-gradient(90deg, var(--teal-bg) 0%, var(--teal-light) 100%);



  z-index: var(--z-progress);



  width: 0%;



  transition: width 0.1s linear;



}







/* ===== BUTTON PRESS EFFECT ===== */



.btn:active {



  transform: scale(0.97) !important;



  transition: transform 0.1s ease;



}







/* ===== SERVICE CARD LIFT ON HOVER ===== */



.direction-card {



  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),



              box-shadow 0.25s ease,



              border-color 0.25s ease;



}



.direction-card:hover {



  transform: translateY(-6px);



  box-shadow: var(--shadow-card-hover-layered);



  border-color: rgba(225, 229, 232, 0.25);



}







/* ===== ACCORDION ITEM — SLIDE DOWN ANIMATION ===== */



.accordion-body {



  max-height: 0;



  overflow: hidden;



  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;



  opacity: 0;



}



.accordion-item.open .accordion-body {



  max-height: 2000px;



  opacity: 1;



}







/* ===== DIRECTION CARD SCROLL REVEAL ===== */



.direction-card {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;



}



.direction-card.revealed {



  opacity: 1;



  transform: translateY(0);



}







/* ===== ADVANTAGE CARD SCROLL REVEAL ===== */



.advantage-card {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.advantage-card.revealed {



  opacity: 1;



  transform: translateY(0);



}







/* ===== DOCTOR CARD SCROLL REVEAL ===== */



.doctor-card {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.doctor-card.revealed {



  opacity: 1;



  transform: translateY(0);



}







/* ===== REVIEW CARD SCROLL REVEAL ===== */



.review-card {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.review-card.revealed {



  opacity: 1;



  transform: translateY(0);



}







/* ===== DIRECTION CARDS GRID ANIMATION ===== */



.grid-auto-280 {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));



  gap: 24px;



}



.grid-auto-280 > * {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;



}



.grid-auto-280.revealed > * {



  opacity: 1;



  transform: translateY(0);



}



.grid-auto-280.revealed > *:nth-child(1) { transition-delay: 0.05s; }



.grid-auto-280.revealed > *:nth-child(2) { transition-delay: 0.10s; }



.grid-auto-280.revealed > *:nth-child(3) { transition-delay: 0.15s; }



.grid-auto-280.revealed > *:nth-child(4) { transition-delay: 0.20s; }



.grid-auto-280.revealed > *:nth-child(5) { transition-delay: 0.25s; }



.grid-auto-280.revealed > *:nth-child(6) { transition-delay: 0.30s; }







/* ===== ADVANTAGE CARDS GRID ANIMATION ===== */



.grid-auto-300 {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));



  gap: 24px;



}



.grid-auto-300 > * {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.grid-auto-300.revealed > * {



  opacity: 1;



  transform: translateY(0);



}



.grid-auto-300.revealed > *:nth-child(1) { transition-delay: 0.05s; }



.grid-auto-300.revealed > *:nth-child(2) { transition-delay: 0.10s; }



.grid-auto-300.revealed > *:nth-child(3) { transition-delay: 0.15s; }



.grid-auto-300.revealed > *:nth-child(4) { transition-delay: 0.20s; }



.grid-auto-300.revealed > *:nth-child(5) { transition-delay: 0.25s; }



.grid-auto-300.revealed > *:nth-child(6) { transition-delay: 0.30s; }







/* ===== DOCTORS GRID ANIMATION ===== */



.grid-auto-220 {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));



  gap: 24px;



}



.grid-auto-220 > * {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.grid-auto-220.revealed > * {



  opacity: 1;



  transform: translateY(0);



}



.grid-auto-220.revealed > *:nth-child(1) { transition-delay: 0.05s; }



.grid-auto-220.revealed > *:nth-child(2) { transition-delay: 0.10s; }



.grid-auto-220.revealed > *:nth-child(3) { transition-delay: 0.15s; }



.grid-auto-220.revealed > *:nth-child(4) { transition-delay: 0.20s; }







/* ===== REVIEWS GRID ANIMATION ===== */



.grid-auto-320 {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));



  gap: 24px;



}



.grid-auto-320 > * {



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;



}



.grid-auto-320.revealed > * {



  opacity: 1;



  transform: translateY(0);



}



.grid-auto-320.revealed > *:nth-child(1) { transition-delay: 0.05s; }



.grid-auto-320.revealed > *:nth-child(2) { transition-delay: 0.10s; }



.grid-auto-320.revealed > *:nth-child(3) { transition-delay: 0.15s; }



.grid-auto-320.revealed > *:nth-child(4) { transition-delay: 0.20s; }



.grid-auto-320.revealed > *:nth-child(5) { transition-delay: 0.25s; }



.grid-auto-320.revealed > *:nth-child(6) { transition-delay: 0.30s; }







@media (prefers-reduced-motion: reduce) {



  .grid-auto-280 > *,



  .grid-auto-300 > *,



  .grid-auto-220 > *,



  .grid-auto-320 > * {



    opacity: 1;



    transform: none;



    transition: none;



  }



}







@media (max-width: 768px) {



  .grid-auto-280,



  .grid-auto-300,



  .grid-auto-220,



  .grid-auto-320 {



    gap: 16px;



  }



}







/* ===== ACCORDION ITEM PRESS STATE ===== */



.accordion-item:active .accordion-header {



  background: rgba(225, 229, 232, 0.06);



}







/* ===== FAQ ITEM SCROLL REVEAL ===== */



.faq-item {



  opacity: 0;



  transform: translateY(16px);



  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease, border-color 0.25s ease;



}



.faq-item.revealed {



  opacity: 1;



  transform: translateY(0);



}



@media (prefers-reduced-motion: reduce) {



  .faq-item {



    opacity: 1;



    transform: none;



  }



}







/* ===== CTA SECTION INPUTS ===== */



.cta-input {



  width: 100%;



  padding: 14px 20px;



  border-radius: var(--radius-sm);



  border: 2px solid rgba(0,0,0,0.12);



  background: rgba(0,0,0,0.06);



  color: var(--dark);



  font-size: 16px;



  font-family: 'Manrope', system-ui, sans-serif;



  outline: none;



  transition: border-color 0.25s ease, background 0.25s ease;



}



.cta-input::placeholder { color: rgba(0,0,0,0.65); }



.cta-input:focus {



  border-color: rgba(0,0,0,0.3);



  background: rgba(0,0,0,0.1);



}







/* ===== CTA TEAL FORM ===== */



.cta-teal-form {



  display: flex;



  flex-direction: column;



  gap: 16px;



}



.cta-teal-form .cta-input {



  width: 100%;



  padding: 14px 20px;



  border-radius: var(--radius-sm);



  border: 2px solid rgba(0,0,0,0.15);



  background: rgba(0,0,0,0.06);



  color: var(--dark);



  font-size: 16px;



  font-family: 'Manrope', system-ui, sans-serif;



  outline: none;



  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;



}



.cta-teal-form .cta-input::placeholder { color: rgba(0,0,0,0.65); }



.cta-teal-form .cta-input:focus {



  border-color: rgba(0,0,0,0.35);



  background: rgba(0,0,0,0.1);



  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);



}







/* ===== SCROLL TO TOP BUTTON ===== */



#scroll-top-btn {



  position: fixed;



  bottom: 24px;



  right: 24px;



  width: 48px;



  height: 48px;



  border-radius: 50%;



  background: var(--teal-bg);



  color: var(--dark);



  border: none;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  opacity: 0;



  transform: translateY(20px);



  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;



  z-index: 900;



  box-shadow: var(--shadow);



  pointer-events: none;



}



#scroll-top-btn.visible {



  opacity: 1;



  transform: translateY(0);



  pointer-events: auto;



}



#scroll-top-btn:hover {



  background: var(--teal-light);



}



#scroll-top-btn svg {



  color: var(--dark);



}







/* Subtle top gradient for sections with explicit bg — creates smooth entrance from previous section */



section[class*="bg-"]::before {



  content: '';



  display: block;



  height: 48px;



  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, transparent 100%);



  pointer-events: none;



}







/* Bottom gradient for bg-light sections — smooth exit into next section */



section.bg-light::after {



  content: '';



  display: block;



  height: 48px;



  background: linear-gradient(to bottom, transparent 0%, rgba(225,229,232,0.5) 100%);



  pointer-events: none;



}







/* Wave SVG divider at bottom — smooth wave transition from bg-light into next section (white) */



section.bg-light::before {



  content: '';



  display: block;



  height: 60px;



  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23E1E5E8' d='M0,60 C240,20 480,0 720,20 C960,40 1200,20 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;



  background-size: 100% 60px;



  pointer-events: none;



  position: absolute;



  top: -1px;



  left: 0;



  right: 0;



  z-index: 1;



}







section.bg-light {



  position: relative;



  overflow: hidden;



}







/* Emergency section — subtle top gradient from hero, bottom gradient into white section */



.emergency::before {



  content: '';



  display: block;



  height: 40px;



  background: linear-gradient(to bottom, rgba(240,243,247,0.8) 0%, transparent 100%);



  pointer-events: none;



}



.emergency::after {



  content: '';



  display: block;



  height: 40px;



  background: linear-gradient(to bottom, transparent 0%, rgba(240,243,247,0.7) 100%);



  pointer-events: none;



}







/* CTA section wave dividers — ensure they sit above gradient dividers */



.cta-section::before,



.cta-teal::before {



  z-index: 2;



}







/* ===== SKO (Supervisory Authorities) Grid ===== */



.sko-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



  margin-top: 32px;



}







.sko-card {



  background: var(--white);



  border-radius: 16px;



  padding: 32px 24px;



  box-shadow: 0 2px 8px rgba(0,0,0,0.06);



  transition: transform 0.2s ease, box-shadow 0.2s ease;



  display: flex;



  flex-direction: column;



  gap: 12px;



}







.sko-card:hover {



  transform: translateY(-2px);



  box-shadow: 0 6px 20px rgba(43,76,155,0.12);



}







.sko-icon {



  width: 48px;



  height: 48px;



  border-radius: 12px;



  background: linear-gradient(135deg, var(--teal-light), var(--teal-bg));



  display: flex;



  align-items: center;



  justify-content: center;



  color: var(--dark);



  flex-shrink: 0;



}







.sko-title {



  font-size: 16px;



  font-weight: 600;



  color: var(--dark);



  line-height: 1.4;



  margin: 0;



}







.sko-desc {



  font-size: 14px;



  line-height: 1.6;



  color: var(--text-secondary);



  margin: 0;



  flex: 1;



}







.sko-contact {



  font-size: 13px;



  color: var(--teal);



  padding-top: 8px;



  border-top: 1px solid var(--bg-light);



}







.sko-contact-label {



  font-weight: 600;



  color: var(--dark);



}







@media (max-width: 900px) {



  .sko-grid {



    grid-template-columns: repeat(2, 1fr);



  }



}







@media (max-width: 600px) {



  .sko-grid {



    grid-template-columns: 1fr;



  }



}











.footer-legal p { margin: 2px 0; }



.footer-medical-disclaimer { margin-top: 8px; font-size: 11px; opacity: 0.7; line-height: 1.4; }











.header-social { display: inline-flex; align-items: center; color: var(--dark, #343A40); opacity: 0.7; transition: opacity 0.2s; }



.header-social:hover { opacity: 1; }



@media (max-width: 768px) { .header-social { display: none; } }











/* Article share buttons */



.article-share { display: flex; align-items: center; gap: 8px; padding: 16px 0; margin: 0 auto; max-width: 800px; }



.share-label { font-size: 14px; color: var(--dark, #343A40); font-weight: 600; }



.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--teal, #A9CAD6); color: var(--dark, #343A40); font-size: 13px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }



.share-btn:hover { opacity: 0.8; }







/* Article internal links */



.article-links { padding: 24px 0; }



.article-links h3 { font-size: 20px; margin-bottom: 16px; }



.article-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }



.article-link-card { display: block; padding: 16px; border: 1px solid var(--border, #e0d6c8); border-radius: 8px; text-decoration: none; color: var(--dark, #343A40); font-weight: 500; transition: border-color 0.2s, background 0.2s; }



.article-link-card:hover { border-color: var(--teal, #A9CAD6); background: var(--teal-light, #F5F1EA); }







/* Prices disclaimer */



.prices-disclaimer { font-size: 13px; color: var(--muted, #6c757d); padding: 12px 0; line-height: 1.5; }











/* ===== Liveliness enhancements ===== */



@keyframes heroFloat {



  0%, 100% { transform: translateY(0); }



  50% { transform: translateY(-10px); }



}



.hero-image picture {



  display: block;



  animation: heroFloat 6s ease-in-out infinite;



}



@keyframes softPulse {



  0%, 100% { box-shadow: 0 0 0 0 rgba(95, 138, 154, 0.25); }



  50% { box-shadow: 0 0 0 10px rgba(95, 138, 154, 0); }



}



.scenario-card:hover .scenario-icon-wrap svg {



  animation: softPulse 1.2s ease infinite;



}



.trust-carousel-item {



  transition: transform 0.3s ease, box-shadow 0.3s ease;



}



.trust-carousel-item:hover {



  transform: translateY(-4px) scale(1.01);



  box-shadow: 0 16px 40px rgba(52, 58, 64, 0.12);



}



.direction-card, .advantage-card {



  transition: transform 0.25s ease, box-shadow 0.25s ease;



}



.direction-card:hover, .advantage-card:hover {



  transform: translateY(-5px);



  box-shadow: 0 14px 34px rgba(52, 58, 64, 0.1);



}











/* Trust carousel nav arrows fixed over viewport */



.trust-carousel {



  position: relative;



}



.trust-carousel-viewport {



  position: relative;



}



.trust-carousel-nav {



  position: absolute;



  top: 50%;



  left: 0;



  right: 0;



  transform: translateY(-50%);



  display: flex;



  justify-content: space-between;



  pointer-events: none;



  padding: 0 16px;



  z-index: 10;



}



.trust-carousel-prev,



.trust-carousel-next {



  pointer-events: auto;



  width: 44px;



  height: 44px;



  border: none;



  border-radius: 50%;



  background: rgba(255, 255, 255, 0.92);



  color: #4a7c8c;



  box-shadow: 0 4px 14px rgba(52, 58, 64, 0.12);



  cursor: pointer;



  display: inline-flex;



  align-items: center;



  justify-content: center;



  transition: transform 0.2s ease, box-shadow 0.2s ease;



}



.trust-carousel-prev:hover,



.trust-carousel-next:hover {



  transform: scale(1.08);



  box-shadow: 0 6px 18px rgba(52, 58, 64, 0.18);



}



.trust-carousel-prev svg,



.trust-carousel-next svg {



  width: 22px;



  height: 22px;



}



@media (max-width: 768px) {



  .trust-carousel-nav { display: none; }



}







/* ===== CONTENT FEED (homepage articles + news) ===== */



.content-feed-grid {



  display: grid;



  grid-template-columns: repeat(2, 1fr);



  gap: 40px;



}



.content-feed-column .section-title {



  text-align: left;



  font-size: 26px;



  margin-bottom: 20px;



}



.content-feed-list {



  display: flex;



  flex-direction: column;



  gap: 16px;



}



.content-feed-card {



  display: flex;



  gap: 16px;



  align-items: flex-start;



  background: #fff;



  border-radius: 12px;



  padding: 16px;



  text-decoration: none;



  box-shadow: 0 2px 8px rgba(26,29,33,0.06);



  transition: transform 0.2s ease, box-shadow 0.2s ease;



}



.content-feed-card:hover {



  transform: translateY(-3px);



  box-shadow: 0 6px 16px rgba(26,29,33,0.10);



}



.content-feed-thumb {



  flex: 0 0 80px;



  height: 80px;



  border-radius: 8px;



  overflow: hidden;



  background: #e6e9ee;



}



.content-feed-thumb img {



  width: 100%;



  height: 100%;



  object-fit: cover;



}



.content-feed-body {



  flex: 1;



}



.content-feed-title {



  font-weight: 700;



  font-size: 17px;



  color: #1a1d21;



  margin-bottom: 6px;



}



.content-feed-desc {



  font-size: 14px;



  color: #4a5059;



  line-height: 1.45;



  margin: 0;



}



.link-more {



  display: inline-block;



  margin-top: 16px;



  font-weight: 600;



  font-size: 15px;



  color: var(--teal-bg, #676458);



  text-decoration: none;



}



.link-more:hover {



  text-decoration: underline;



}



@media (max-width: 900px) {



  .services-category-grid .service-card {



    flex: 0 0 calc((100% - 16px) / 2);



  }



}



@media (max-width: 600px) {



  .services-category-grid .service-card {



    flex: 0 0 100%;



  }



}















/* ===== SCENARIO CARDS ===== */



.hero-scenarios-section { padding: 64px 0 72px; }







.hero-scenarios-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



  margin-top: 40px;



}







.scenario-card {



  background: #fff;



  border-radius: var(--radius, 16px);



  padding: 32px 28px;



  box-shadow: 0 8px 30px rgba(52, 58, 64, 0.08);



  text-align: center;



  transition: transform 0.25s ease, box-shadow 0.25s ease;



  border: 1px solid rgba(103, 100, 88, 0.08);



}







.scenario-card:hover {



  transform: translateY(-6px);



  box-shadow: 0 16px 44px rgba(52, 58, 64, 0.12);



}



.scenario-card:hover .scenario-icon {



  transform: scale(1.1);



  transition: transform .25s;



}



.scenario-icon {



  transition: transform .25s;



}







.scenario-icon {



  width: 64px;



  height: 64px;



  border-radius: 50%;



  background: var(--primary);



  color: var(--primary-ink);



  display: inline-flex;



  align-items: center;



  justify-content: center;



  margin-bottom: 18px;



}







.scenario-card .scenario-title {



  font-size: 20px;



  margin-bottom: 10px;



}







.scenario-card .scenario-desc {



  font-size: 14px;



  color: var(--text-secondary, #6C6660);



  margin-bottom: 20px;



  line-height: 1.5;



}







.scenario-card .scenario-btn {



  padding: 14px 24px;



  border-radius: 10px;



  background: var(--teal-bg);



  color: var(--dark);



  font-weight: 700;



  font-size: 15px;



  border: none;



  cursor: pointer;



  transition: all .2s;



  white-space: nowrap;



}



.scenario-card .scenario-btn:hover {



  background: var(--dark);



  color: var(--teal-light);



  transform: translateY(-1px);



  box-shadow: 0 4px 14px rgba(52,58,64,0.24);



}







@media (max-width: 900px) {



  .hero-scenarios-grid { grid-template-columns: 1fr; }



}







/* ===== STEPS TIMELINE ===== */



.steps-timeline {



  display: flex;



  justify-content: space-between;



  gap: 20px;



  margin-top: 48px;



  position: relative;



}







.steps-timeline::before {



  content: '';



  position: absolute;



  top: 24px;



  left: 10%;



  right: 10%;



  height: 3px;



  background: linear-gradient(90deg, var(--teal-bg, #A9CAD6), var(--teal-light, #F5F1EA));



  border-radius: 3px;



}







.step-item {



  flex: 1;



  text-align: center;



  position: relative;



  z-index: 1;



}







.step-marker {



  width: 52px;



  height: 52px;



  border-radius: 50%;



  background: #fff;



  border: 3px solid var(--teal-bg, #A9CAD6);



  color: var(--dark, #343A40);



  display: inline-flex;



  align-items: center;



  justify-content: center;



  font-weight: 700;



  font-size: 15px;



  margin-bottom: 16px;



  box-shadow: 0 4px 14px rgba(52, 58, 64, 0.08);



}







.step-title {



  font-size: 17px;



  margin-bottom: 8px;



  color: var(--dark, #343A40);



}







.step-desc {



  font-size: 14px;



  color: var(--text-secondary, #6C6660);



  line-height: 1.5;



}







@media (max-width: 900px) {



  .steps-timeline { flex-direction: column; gap: 32px; }



  .steps-timeline::before { display: none; }



  .step-item { text-align: left; display: flex; gap: 16px; }



  .step-marker { flex-shrink: 0; }



}







/* ===== LICENSES ===== */



.license-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



  margin-top: 40px;



}







.license-card{background:var(--teal-light);border-radius:20px;overflow:hidden;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s;text-align:center;text-decoration:none;color:var(--dark);display:flex;flex-direction:column;min-height:320px;border:1px solid rgba(103,100,88,.08)}



.license-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px rgba(52,58,64,.08)}



.license-card img{width:100%;height:auto;max-height:400px;object-fit:contain;display:block;margin:0 auto;background:transparent}











.license-card:hover {



  transform: translateY(-5px);



  box-shadow: 0 14px 38px rgba(52, 58, 64, 0.12);



}







.license-card img {



  width: 100%;



  height: auto;



  max-height: 340px;



  object-fit: contain;



  background: var(--bg-light);



}







.license-title {



  display: block;



  padding: 16px;



  font-weight: 600;



  font-size: 14px;



  color: var(--dark, #343A40);



  text-align: center;



}







.text-center { text-align: center; }



.mt-24 { margin-top: 24px; }







.lightbox-overlay {



  position: fixed;



  inset: 0;



  background: rgba(52, 58, 64, 0.92);



  z-index: var(--z-overlay);



  display: flex;



  align-items: center;



  justify-content: center;



  padding: 20px;



  animation: fadeIn 0.25s ease;



}



.lightbox-content {



  max-width: 90vw;



  max-height: 90vh;



  position: relative;



  text-align: center;



}



.lightbox-content img {



  max-width: 100%;



  max-height: 80vh;



  border-radius: 8px;



  box-shadow: 0 20px 60px rgba(0,0,0,0.3);



}



.lightbox-close {



  position: absolute;



  top: -44px;



  right: 0;



  background: #fff;



  border: none;



  width: 36px;



  height: 36px;



  border-radius: 50%;



  font-size: 24px;



  cursor: pointer;



}



.lightbox-prev,



.lightbox-next {



  position: absolute;



  top: 50%;



  transform: translateY(-50%);



  background: rgba(255, 255, 255, 0.9);



  border: none;



  width: 44px;



  height: 44px;



  border-radius: 50%;



  font-size: 28px;



  line-height: 1;



  cursor: pointer;



  color: var(--dark);



  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);



  transition: background 0.2s;



}



.lightbox-prev:hover,



.lightbox-next:hover {



  background: #fff;



}



.lightbox-prev { left: -60px; }



.lightbox-next { right: -60px; }



.lightbox-caption {



  margin-top: 12px;



  color: #fff;



  font-size: 15px;



  font-weight: 600;



  text-align: center;



}



@media (max-width: 768px) {



  .lightbox-prev { left: -10px; }



  .lightbox-next { right: -10px; }



}







@media (max-width: 768px) {



  .license-grid { grid-template-columns: 1fr; }



}







/* ===== HOMEPAGE REDESIGN v4+ ===== */







/* BASE */



body{font-family:'Manrope',system-ui,sans-serif;background:var(--teal-light)!important}



.section{padding:80px 0}



.section--alt{background:var(--bg-light)}



.section--light{background:var(--teal-light)}



.stitle{font-size:clamp(26px,3vw,38px);font-weight:800;letter-spacing:-.025em;margin-bottom:14px;line-height:1.15}



.stitle .a{color:var(--teal)}



.ssub{font-size:18px;color:var(--text-secondary);margin-bottom:48px;max-width:640px;line-height:1.65}







/* HEADER REDESIGN */



.header{position:sticky;top:0;z-index:100;background:rgba(245,241,234,.92)!important;backdrop-filter:blur(16px);border-bottom:1px solid rgba(103,100,88,.1)}



.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 32px!important;gap:20px;max-width:1400px;margin:0 auto}



.logo{display:flex;align-items:center;gap:12px}



.logo-mark{display:none}



.header-phone{font-size:17px!important;font-weight:700!important;display:flex!important;align-items:center;gap:8px;color:var(--dark)!important}



.header-phone svg{width:18px;height:18px;color:var(--teal)}



.header-actions{display:flex;align-items:center;gap:16px}



.h-cta{background:var(--primary);color:var(--primary-ink);padding:14px 28px;border-radius:12px;font-weight:700;font-size:15px;transition:all .3s;white-space:nowrap;text-decoration:none;box-shadow:0 4px 14px rgba(169,202,214,0.45);min-height:44px}

.header-phone:focus-visible,
.h-cta:focus-visible,
.nav a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}



.h-cta:hover{background:var(--primary-hover);color:var(--primary-ink);transform:translateY(-2px);box-shadow:0 6px 20px rgba(169,202,214,0.55)}



@keyframes pulse-cta{



  0%,100%{box-shadow:0 4px 14px rgba(103,100,88,0.4),0 0 0 0 rgba(103,100,88,0.5)}



  50%{box-shadow:0 4px 24px rgba(103,100,88,0.7),0 0 0 8px rgba(103,100,88,0.08)}



}



.theme-toggle,.header-social{display:none!important}



.nav{display:flex;gap:2px;align-items:center}



.nav a{color:var(--dark-soft)!important;font-size:14px;font-weight:500;padding:10px 16px;border-radius:10px;transition:.2s}



.nav a:hover,.nav a.active{color:var(--teal)!important;background:var(--bg-light)!important}



.btn-sm-nav{display:none!important}



.hero-trustline::before{content:none}



.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 18px;background:rgba(169,202,214,.15);border:1px solid rgba(169,202,214,.3);border-radius:50px;font-size:13px;font-weight:600;color:var(--teal-bg);margin-bottom:28px;backdrop-filter:blur(8px)}



.hero-badge svg{width:16px;height:16px}







/* HERO VISUAL — фото-карточка справа */



.hero-visual{position:relative;flex-shrink:0;width:380px}



.hero-photo{width:100%;height:440px;border-radius:28px;overflow:hidden;box-shadow:0 24px 60px rgba(52,58,64,.12);position:relative;z-index:1}



.hero-photo img{width:100%;height:100%;object-fit:cover}







@media(max-width:980px){.hero-visual{width:100%;display:none}}



@media(max-width:640px){.hero{min-height:auto!important;padding:48px 0}.hero-inner{padding:48px 20px!important}}







/* SCENARIO CARDS → SERVICES */



.hero-scenarios-section{padding:64px 0!important;background:var(--teal-light)!important}



.hero-scenarios{display:grid!important;grid-template-columns:repeat(3,1fr);gap:24px;max-width:100%!important;margin:0!important}



.scenario-card{background:#fff;border-radius:20px;padding:36px 30px;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:all .35s;border:1px solid var(--border);display:flex;flex-direction:column}



.scenario-card:hover{box-shadow:0 10px 36px rgba(52,58,64,.08);transform:translateY(-6px);border-color:var(--bg-light)}



.scenario-icon{width:56px;height:56px;border-radius:14px;background:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--primary-ink)}



.scenario-icon svg{width:28px;height:28px}



.scenario-card .scenario-title{font-size:20px;font-weight:700;margin-bottom:10px}



.scenario-card .scenario-desc{font-size:15px;color:var(--text-secondary);margin-bottom:24px;line-height:1.6;flex:1}



.svc-price{font-size:14px;color:var(--teal);font-weight:600}



@media(max-width:980px){.hero-scenarios{grid-template-columns:1fr 1fr!important}}



@media(max-width:640px){.hero-scenarios{grid-template-columns:1fr!important}}







/* QUICK CALL */



.quick-call{padding:40px 0;background:var(--dark);color:#fff}



.quick-call-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;max-width:1200px;margin:0 auto;padding:0 24px}



.quick-call h2{color:#fff;font-size:26px;font-weight:700;margin-bottom:6px}



.quick-call p{color:rgba(255,255,255,.7);font-size:16px}



.quick-call-right{display:flex;gap:16px;align-items:center}



.quick-call-phone{font-size:26px;font-weight:800;color:#fff;text-decoration:none;display:flex;align-items:center;gap:10px}



.quick-call-phone svg{width:24px;height:24px;color:var(--teal-bg)}



.quick-call-btn{background:var(--teal-bg);color:var(--dark);padding:14px 28px;border-radius:14px;font-weight:700;font-size:16px;text-decoration:none;transition:.35s}



.quick-call-btn:hover{background:#94b8c4;transform:translateY(-2px)}







/* STEPS */



.steps-section{padding:80px 0;background:var(--teal-light)}



.steps-timeline{display:flex;justify-content:space-between;gap:20px;position:relative;margin-top:48px}



.steps-timeline::before{content:'';position:absolute;top:28px;left:8%;right:8%;height:2px;background:repeating-linear-gradient(90deg,var(--teal) 0 8px,transparent 8px 16px)}



.step-item{flex:1;text-align:center;position:relative;z-index:1;display:flex;flex-direction:column;align-items:center}



.step-marker{width:56px;height:56px;border-radius:50%;background:#fff;border:2px solid var(--teal);color:var(--teal);display:inline-flex;align-items:center;justify-content:center;font-weight:800;font-size:16px;margin-bottom:18px;box-shadow:0 4px 16px rgba(103,100,88,.1);transition:.35s}



.step-item:hover .step-marker{background:var(--teal);color:var(--teal-light);transform:scale(1.06)}



.step-title{font-size:17px;font-weight:700;margin-bottom:8px;color:var(--dark)}



.step-desc{font-size:14px;color:var(--text-secondary);line-height:1.55;max-width:200px;margin:0 auto;flex:1}



@media(max-width:640px){.steps-timeline{flex-direction:column;gap:36px}.steps-timeline::before{display:none}.step-item{text-align:left;display:flex;gap:16px;align-items:flex-start}.step-marker{flex-shrink:0}}







/* EMERGENCY */



.emergency-card{background:#fff;border-radius:20px;padding:40px;box-shadow:0 2px 12px rgba(52,58,64,.05)}



.symptom-cards{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px;justify-content:center}



.symptom-card{display:inline-flex;align-items:center;gap:10px;padding:12px 20px;background:var(--bg-light);border-radius:50px;font-weight:600;font-size:15px;color:var(--dark-soft)}



.symptom-card svg{width:18px;height:18px;color:var(--teal);flex-shrink:0}



.emergency-card .symptom-card{border-left:none;box-shadow:none}



.emergency-card .symptom-card svg{color:var(--teal)}







/* GALLERY */



.trust-carousel{padding:80px 0;background:var(--bg-light)!important}



.gallery-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:32px}



.gallery-item{height:240px;border-radius:20px;overflow:hidden;position:relative;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s}



.gallery-item:hover{box-shadow:0 10px 36px rgba(52,58,64,.08)}



.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s}



.gallery-item:hover img{transform:scale(1.06)}



.gallery-cap{position:absolute;bottom:0;left:0;right:0;padding:14px 18px;background:linear-gradient(transparent,rgba(52,58,64,.8));color:#fff;font-size:14px;font-weight:600}



@media(max-width:980px){.gallery-grid-4{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.gallery-grid-4{grid-template-columns:1fr}}







/* ABOUT */



.about-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}



.about-text p{font-size:17px;color:var(--dark-soft);line-height:1.75;margin-bottom:20px}



.about-quote{font-size:22px;font-weight:600;line-height:1.5;color:var(--teal);font-style:italic;padding:24px 0;border-left:4px solid var(--teal);padding-left:24px;margin:24px 0}



.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}



.stat{background:#fff;border-radius:20px;padding:32px;text-align:center;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s}



.stat:hover{transform:translateY(-4px);box-shadow:0 10px 36px rgba(52,58,64,.08)}



.stat-num{font-size:46px;font-weight:900;color:var(--teal);letter-spacing:-.03em;line-height:1}



.stat-lbl{font-size:18px;color:var(--dark);font-weight:800;margin-top:6px;line-height:1.15}



@media(max-width:980px){.about-grid{grid-template-columns:1fr}.stats-grid{grid-template-columns:1fr 1fr}}







/* DIRECTIONS */



.grid-auto-280{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}



.dir-card{background:#fff;border-radius:20px;padding:32px 28px;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s}



.dir-card:hover{transform:translateY(-6px);box-shadow:0 10px 36px rgba(52,58,64,.08)}



.adv-icon-wrap,.dir-icon{width:52px;height:52px;border-radius:14px;background:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--primary-ink)}



.adv-icon-wrap svg,.dir-icon svg{width:26px;height:26px}



@media(max-width:980px){.grid-auto-280{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.grid-auto-280{grid-template-columns:1fr}}







/* DOCTORS */



.grid-auto-220{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}



.doctor-card{text-align:center;transition:.35s;display:flex;flex-direction:column;justify-content:flex-start;height:100%}



.doctor-card:hover{transform:translateY(-4px)}



.doctor-photo-circle{width:140px;height:140px;border-radius:50%;overflow:hidden;margin:0 auto 16px;border:4px solid #fff;box-shadow:0 8px 30px rgba(52,58,64,.1)}



.doctor-photo-img{width:100%;height:100%;object-fit:cover;object-position:center top}



.doctor-card-name{font-size:18px;font-weight:700;margin-bottom:4px}



.doctor-card-position{font-size:14px;color:var(--text-secondary);margin-bottom:2px}



.doctor-card-exp{font-size:13px;color:var(--teal);font-weight:600;margin-top:auto}



@media(max-width:980px){.grid-auto-220{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.grid-auto-220{grid-template-columns:1fr}}







/* REVIEWS */



.grid-auto-320{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}



.review-card{background:#fff;border-radius:20px;padding:36px 32px;box-shadow:0 2px 12px rgba(52,58,64,.05);position:relative;transition:transform .25s ease,box-shadow .25s ease}



.review-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(52,58,64,.1)}



.review-card::before{content:'\201C';position:absolute;top:16px;right:24px;font-size:72px;color:var(--bg-light);font-family:Georgia,serif;line-height:1;font-weight:700}



.review-stars{color:var(--teal-bg)!important;margin-bottom:16px;font-size:18px;letter-spacing:3px}



.review-text{font-size:16px;line-height:1.65;margin-bottom:20px;color:var(--dark-soft);font-weight:500}



.review-author{font-size:15px;font-weight:700;color:var(--teal)}



@media(max-width:980px){.grid-auto-320{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.grid-auto-320{grid-template-columns:1fr}}







/* PLATFORMS */



.review-platform-link{display:flex;align-items:center;gap:14px;padding:22px;background:#fff;border-radius:20px;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s;text-decoration:none;color:var(--dark)}



.review-platform-link:hover{box-shadow:0 10px 36px rgba(52,58,64,.08);transform:translateY(-3px)}



.icon-box-44{width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:22px;color:#fff}



.grid-auto-200{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}



@media(max-width:980px){.grid-auto-200{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.grid-auto-200{grid-template-columns:1fr}}







/* LICENSES */



.license-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}







.license-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px rgba(52,58,64,.08)}



.license-card img{width:100%;height:auto;max-height:400px;object-fit:contain;background:var(--bg-light)}







.license-title{font-size:14px;font-weight:600;padding:16px 12px;text-align:center;margin-top:auto}



.license-title{display:block;padding:16px;font-weight:600;font-size:14px}



@media(max-width:980px){.license-grid{grid-template-columns:1fr;max-width:560px;margin-left:auto;margin-right:auto}}







/* CONTENT */



.content-feed-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}



.content-feed-card{display:flex;gap:18px;padding:22px;background:#fff;border-radius:14px;margin-bottom:14px;box-shadow:0 2px 12px rgba(52,58,64,.05);transition:.35s;text-decoration:none;color:inherit}



.content-feed-card:hover{box-shadow:0 10px 36px rgba(52,58,64,.08);transform:translateX(4px)}



@media(max-width:980px){.content-feed-grid{grid-template-columns:1fr}}









/* FOOTER */



.site-footer{background:var(--dark);color:rgba(255,255,255,.6);padding:56px 0 28px}



.footer-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(0,0.85fr) minmax(0,1fr) minmax(0,1.1fr) minmax(0,1.15fr);gap:28px 20px;margin-bottom:32px}



.footer-grid h4{color:#fff;font-size:15px;margin-bottom:18px;font-weight:700}



.footer-grid a{display:block;color:rgba(255,255,255,.55);font-size:15px;margin-bottom:10px;transition:color .2s;text-decoration:none}



.footer-grid a:hover{color:#fff}



.footer-phone{font-size:22px;font-weight:800;color:#fff;margin-bottom:10px}



@media(max-width:980px){.footer-grid{grid-template-columns:1fr 1fr}}



@media(max-width:640px){.footer-grid{grid-template-columns:1fr}}







/* ===== AUDIT R4 FIXES ===== */



.svc-actions{display:flex;gap:12px;align-items:center}



.btn-primary.svc-btn{padding:12px 24px;font-size:15px}



.emerg-note{margin-top:24px;padding:18px 22px;background:var(--teal-bg);border-radius:14px;font-size:15px;color:var(--dark);display:flex;gap:14px;align-items:flex-start}



.emerg-note svg{width:24px;height:24px;color:var(--teal);flex-shrink:0}



.dir-link{font-weight:600;font-size:15px;color:var(--teal);display:inline-flex;align-items:center;gap:6px;transition:gap .2s}



.dir-link:hover{gap:12px}



.plat-name{font-weight:700;font-size:15px}



.plat-sub{font-size:13px;color:var(--text-secondary)}



.plat-letter{font-size:22px;font-weight:800}



.ssub-tight{margin-bottom:0!important}



.hero-phone-link{color:#fff;font-weight:700;text-decoration:none}



.cta-disclaimer{font-size:13px;margin-top:16px}



.cta-privacy-link{color:inherit;text-decoration:underline}







/* A7: hero-visual image lazy + object-position */



.hero-photo img{loading:lazy}



@media(max-width:980px){.hero-photo img{display:none}}







/* A8: hero-bg object-position */



/* When max-height:90vh forces a shorter box than 3:2, keep bottom (ambulance/entrance) */
.hero-bg img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center bottom!important;display:block!important}







/* gallery section */



.gallery-section{padding:80px 0;background:var(--bg-light)}







/* ===== FIX: cascade vs section:not() gradient rule (style.css:613) ===== */



/* section:not([class*="bg-"]):not(.hero):... has specificity (0,3,1) and sets light gradient bg.



   Our new sections (quick-call, steps-section, section--alt/--light) must override it. */







section.quick-call,



.quick-call { background: var(--dark) !important; background-image: none !important; }







section.steps-section { background: var(--teal-light) !important; background-image: none !important; }







section.section--alt { background: var(--bg-light) !important; background-image: none !important; }



section.section--light { background: var(--teal-light) !important; background-image: none !important; }







section.gallery-section { background: var(--bg-light) !important; background-image: none !important; }



section.trust-carousel { background: var(--bg-light) !important; background-image: none !important; }







/* CTA already excluded in :not(), but force dark anyway */



/* Prevent the wave ::after from section:not() on our sections */



section.quick-call::after,



section.steps-section::after,



section.section--alt::after,



section.section--light::after,



section.gallery-section::after,



section.trust-carousel::after { display: none !important; }







/* ===== HEADER TOPBAR ===== */



.header-topbar{background:var(--dark);color:#fff;font-size:0.85rem;font-weight:500;padding:10px 0;letter-spacing:0.02em}



.header-topbar-inner{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:0 24px;gap:20px;flex-wrap:wrap}



.header-topbar-item{display:inline-flex;align-items:center;gap:10px;white-space:nowrap}



.header-topbar-item svg{color:var(--teal-bg);width:18px;height:18px;flex-shrink:0}



.header-topbar-phone{display:inline-flex;align-items:center;gap:6px;color:#fff;font-weight:700;text-decoration:none}



.header-topbar-phone:hover{color:var(--teal-bg)}



.header-topbar-phone svg{color:var(--teal-bg);width:14px;height:14px}



@media(max-width:900px){.header-topbar{display:none}}







/* ===== FOOTER DARK FIX ===== */



footer.footer,



.footer {



  background: var(--dark) !important;



  background-image: none !important;



  color: rgba(255,255,255,.6) !important;



  padding: 56px 0 28px !important;



}







.footer .footer-brand .logo { color: #fff !important; }



.footer .footer-brand p,



.footer .footer-desc { color: rgba(255,255,255,.55) !important; }







.footer h4 { color: #fff !important; font-size: 15px !important; margin-bottom: 18px !important; font-weight: 700 !important; }







.footer .footer-links a,



.footer .footer-nav a { color: rgba(255,255,255,.55) !important; font-size: 15px !important; margin-bottom: 10px !important; display: block !important; text-decoration: none !important; }



.footer .footer-links a:hover,



.footer .footer-nav a:hover { color: #fff !important; }







.footer .footer-phone,



.footer .footer-contact .footer-phone { color: #fff !important; font-size: 22px !important; font-weight: 800 !important; }



.footer .footer-phone a { color: #fff !important; }



.footer .footer-phone svg { color: var(--teal-bg) !important; }







.footer .footer-address,



.footer .footer-schedule,



.footer .footer-contact p { color: rgba(255,255,255,.55) !important; }







.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08) !important; padding-top: 20px !important; }



.footer .footer-bottom p { color: rgba(255,255,255,.4) !important; font-size: 13px !important; }



.footer .footer-legal { color: rgba(255,255,255,.4) !important; }



.footer .footer-legal p { color: rgba(255,255,255,.4) !important; }



.footer .footer-medical-disclaimer { color: rgba(255,255,255,.35) !important; }



.footer .footer-medical-disclaimer .disclaimer-text { color: rgba(255,255,255,.35) !important; }







/* ===== DIRECTION CARD ICON (was inline style in index.ejs) ===== */



.direction-card__icon {



  width: 48px;



  height: 48px;



  border-radius: 12px;



  display: flex;



  align-items: center;



  justify-content: center;



  margin-bottom: 16px;



  flex-shrink: 0;



}











/* ===== MOBILE HEADER FIX (2026-08-07) ===== */



/* Minified HEADER REDESIGN block overrides old mobile media queries by source order.



   This fix re-declares mobile rules AFTER all minified blocks to win the cascade. */



@media (max-width: 768px) {



  .nav { display: none !important; }



  .burger { display: flex !important; }



  .header-actions { display: none !important; }



  .header-inner { gap: 8px !important; }



}



@media (min-width: 769px) {



  .burger { display: none !important; }



}











/* ===== READABILITY FIXES (2026-08-07 visual audit) ===== */



/* CTA consent checkbox: bigger + more contrast on dark bg */



.cta-teal-form .consent-checkbox {



  font-size: 14px !important;



  color: rgba(255, 255, 255, 0.95) !important;



}



.cta-teal-form .consent-checkbox a {



  font-size: 14px !important;



  color: rgba(255, 255, 255, 1) !important;



}



.cta-teal-form .consent-checkbox input[type="checkbox"] {



  width: 16px !important;



  height: 16px !important;



  margin-top: 2px !important;



}



/* CTA disclaimer under button */



.cta-teal-disclaimer {



  font-size: 13px !important;



  color: rgba(255, 255, 255, 0.75) !important;



}



/* Footer bottom bar: more contrast */



.footer .footer-bottom p {



  color: rgba(255, 255, 255, 0.6) !important;



}



/* Footer medical disclaimer: bigger + more contrast */



.footer .footer-medical-disclaimer {



  font-size: 12px !important;



  color: rgba(255, 255, 255, 0.6) !important;



}



.footer .footer-medical-disclaimer .disclaimer-text {



  color: rgba(255, 255, 255, 0.6) !important;



}











/* ===== CTA CLEAN FIX (2026-08-07 visual audit, user report) ===== */



/* Remove minified photo-artifact: .cta-teal::before was overwritten by



   minified block (line 3659) with clinic-cta-bg-1200.jpg @ opacity .12.



   Restore clean corporate dark bg with subtle wave matching section color. */



.cta-teal::before{display:none!important}



/* ===== SCROLL-TOP vs CONTACT-HUB OVERLAP FIX ===== */



/* scroll-top btn (z:900, bottom:24, right:24) overlapped contact-hub (z:300, bottom:24, right:24). Move scroll-top above the hub. */



#scroll-top-btn {



  bottom: 88px !important;



}



@media (max-width: 768px) {



  #scroll-top-btn {



    bottom: 84px !important;



  }



}











/* ===== CONTACT HUB — closed FAB by default (MR2) ===== */



#messengers-widget.contact-hub {



  flex-direction: column-reverse;



  gap: 8px;



  align-items: flex-end;



}



#messengers-widget .contact-hub__toggle {



  display: inline-flex !important;



  align-items: center;



  justify-content: center;



  gap: 8px;



  min-width: 52px;



  min-height: 52px;



  padding: 0 18px;



  border: none;



  border-radius: 999px;



  background: var(--teal);



  color: var(--teal-light);



  font-weight: 700;



  cursor: pointer;



  box-shadow: 0 4px 16px rgba(52, 58, 64, 0.18);



}



#messengers-widget .contact-hub__panel[hidden] {



  display: none !important;



}



#messengers-widget.is-open .contact-hub__panel {



  display: flex !important;



  flex-direction: column;



  gap: 8px;



}



#scroll-top-btn {



  bottom: calc(52px + 24px + 16px) !important;



}



















/* ===== NAV DROPDOWNS (2026-08-07) ===== */



.nav-item { position: relative; }



.nav-dropdown-panel {



  display: none;



  position: absolute;



  top: 100%;



  left: 0;



  min-width: 260px;



  max-height: 70vh;



  overflow-y: auto;



  background: var(--white);



  border: 1px solid rgba(103,100,88,0.12);



  border-radius: 12px;



  box-shadow: 0 8px 30px rgba(0,0,0,0.12);



  padding: 8px;



  z-index: 300;



}



.nav-dropdown-panel a {



  display: block;



  padding: 8px 12px;



  border-radius: 8px;



  font-size: 14px;



  font-weight: 500;



  color: var(--dark);



  text-decoration: none;



  white-space: nowrap;



}



.nav-dropdown-panel a:hover {



  background: rgba(103,100,88,0.08);



  color: var(--teal);



}



.nav-dropdown:hover .nav-dropdown-panel,



.nav-dropdown:focus-within .nav-dropdown-panel {



  display: block;



}



@media (max-width: 768px) {



  .nav-dropdown-panel {



    position: static;



    box-shadow: none;



    border: none;



    padding: 0 0 0 16px;



    max-height: none;



  }



  .nav-dropdown-panel a { padding: 8px 12px; }



  .nav.active .nav-dropdown-panel { display: block; }



}











/* ===== NEWS CARDS (2026-08-07 visual fix) ===== */



.news-grid {



  display: grid;



  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));



  gap: 24px;



}



.news-card {



  background: var(--white);



  border: 1px solid rgba(103, 100, 88, 0.12);



  border-radius: 16px;



  padding: 24px;



  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;



  display: flex;



  flex-direction: column;



}



.news-card:hover {



  transform: translateY(-3px);



  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);



  border-color: rgba(103, 100, 88, 0.25);



}



.news-card-body { display: flex; flex-direction: column; gap: 10px; height: 100%; }



.news-card-title-link {



  text-decoration: none;



  display: block;



}



.news-card-title {



  font-size: 19px;



  font-weight: 700;



  line-height: 1.35;



  color: var(--dark);



  margin: 0;



  transition: color .2s ease;



}



.news-card-title-link:hover .news-card-title { color: var(--teal); }



.news-card-desc {



  font-size: 14px;



  line-height: 1.6;



  color: var(--text-secondary);



  margin: 0;



  flex-grow: 1;



}



.news-card-link {



  display: inline-flex;



  align-items: center;



  gap: 6px;



  font-size: 15px;



  font-weight: 600;



  color: var(--teal);



  text-decoration: underline;



  text-underline-offset: 3px;



  text-decoration-color: rgba(103, 100, 88, 0.35);



  transition: color .2s ease, text-decoration-color .2s ease;



  margin-top: 6px;



}



.news-card-link:hover {



  color: #555044;



  text-decoration-color: #555044;



}



.news-card-arrow { transition: transform .2s ease; }



.news-card-link:hover .news-card-arrow { transform: translateX(4px); }



@media (max-width: 768px) {



  .news-grid { grid-template-columns: 1fr; }



  .news-card { padding: 20px; }



  .news-card-title { font-size: 17px; }



}











/* ===== WAVE/divider removal (2026-08-07, user request: no SVG waves on any page) ===== */



section.quick-call::after { display: none !important; }



section.steps-section::after { display: none !important; }



section.section--alt::after { display: none !important; }



section.section--light::after { display: none !important; }



section.gallery-section::after { display: none !important; }



section.trust-carousel::after { display: none !important; }



.emergency::before { display: none !important; }



.emergency::after { display: none !important; }



.cta-section::before { display: none !important; }



.cta-section::after { display: none !important; }



.cta-teal::before { display: none !important; }



.cta-teal::after { display: none !important; }



section.bg-light::before { display: none !important; }



section.bg-light::after { display: none !important; }











/* ===== CALL DOCTOR MODAL (2026-08-07) ===== */



.call-modal {



  position: fixed;



  inset: 0;



  z-index: var(--z-overlay, 400);



  display: flex;



  align-items: center;



  justify-content: center;



  padding: 20px;



}



.call-modal[hidden] { display: none; }



.call-modal-overlay {



  position: absolute;



  inset: 0;



  background: rgba(52, 58, 64, 0.55);



  backdrop-filter: blur(3px);



}



.call-modal-content {



  position: relative;



  width: 100%;



  max-width: 420px;



  background: var(--teal-light, #F5F1EA);



  border-radius: 16px;



  box-shadow: 0 24px 64px rgba(0,0,0,.28);



  padding: 28px;



  animation: callModalIn .25s ease;



}



@keyframes callModalIn {



  from { opacity: 0; transform: translateY(14px) scale(.97); }



  to   { opacity: 1; transform: none; }



}



.call-modal-header {



  display: flex;



  align-items: center;



  justify-content: space-between;



  margin-bottom: 12px;



}



.call-modal-header h3 { font-size: 20px; color: var(--dark); margin: 0; }



.call-modal-close {



  background: none;



  border: 0;



  font-size: 26px;



  line-height: 1;



  color: var(--text-secondary, #6C6660);



  cursor: pointer;



  padding: 0 4px;



}



.call-modal-close:hover { color: var(--dark); }



.call-modal-intro { font-size: 14px; color: var(--text-secondary, #6C6660); margin: 0 0 16px; }



.call-modal-step .form-group { margin-bottom: 12px; }



.call-modal-step .cta-input {



  width: 100%;



  padding: 13px 14px;



  border-radius: 10px;



  border: 1px solid rgba(103,100,88,.25);



  background: var(--white, #fff);



  font-size: 15px;



}



.call-modal-consent { font-size: 12.5px; color: var(--text-secondary, #6C6660); display: flex; gap: 8px; align-items: flex-start; margin: 12px 0; }



.call-modal-submit { width: 100%; margin-top: 4px; }



.call-modal-alt { margin: 14px 0 0; text-align: center; }



.call-modal-channels { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.08); }



.call-modal-channels-title { display: block; text-align: center; font-size: 12px; color: var(--text-secondary, #6C6660); margin-bottom: 8px; }



.call-modal-channels-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }



.call-modal-channel {



  display: inline-flex; align-items: center; gap: 6px;



  padding: 8px 14px; border-radius: 10px;



  background: var(--teal-soft, rgba(0,150,136,0.08));



  color: var(--teal, #009688); font-size: 13px; font-weight: 600;



  text-decoration: none; transition: background 0.2s, color 0.2s;



}



.call-modal-channel:hover { background: var(--teal, #009688); color: #fff; }



.call-modal-link {



  background: none;



  border: 0;



  color: var(--teal);



  text-decoration: underline;



  font-size: 13.5px;



  cursor: pointer;



  padding: 4px;



}



.call-modal-link:hover { opacity: .8; }



.call-modal-phone {



  display: block;



  text-align: center;



  font-size: 30px;



  font-weight: 700;



  color: var(--dark);



  text-decoration: none;



  padding: 18px 0 6px;



}



.call-modal-phone:hover { color: var(--teal); }



.call-modal-hint { text-align: center; font-size: 13px; color: var(--text-secondary, #6C6660); margin: 0 0 12px; }



.call-modal-step { text-align: left; }



.call-modal-step[data-call-step="phone"] { text-align: center; }







/* Отступы между блоками внутри объединённой секции помощи */



#help .container + .container,



#help .container-1440 + .container-1440 {



  margin-top: 64px;



}



@media (max-width: 640px) {



  #help .container + .container,



  #help .container-1440 + .container-1440 {



    margin-top: 48px;



  }



}







/* The sticky mobile bar owns call/WhatsApp. Desktop uses one closed FAB. */



@media (min-width: 769px) {



  #messengers-widget.is-open .contact-hub__panel {



    min-width: 0;



    flex-direction: row;



  }



  #messengers-widget .chat-btn {



    width: 44px;



    min-width: 44px;



    height: 44px;



    min-height: 44px;



    padding: 0;



    border-radius: 50%;



    justify-content: center;



  }



  #messengers-widget .chat-btn span {



    position: absolute;



    width: 1px;



    height: 1px;



    padding: 0;



    margin: -1px;



    overflow: hidden;



    clip: rect(0, 0, 0, 0);



    white-space: nowrap;



    border: 0;



  }



}







@media (max-width: 768px) {



  #messengers-widget.contact-hub {



    bottom: calc(84px + env(safe-area-inset-bottom, 0px));



    right: 12px;



  }



  #messengers-widget .contact-hub__toggle {



    width: 52px;



    min-width: 52px;



    height: 52px;



    min-height: 52px;



    padding: 0;



    border-radius: 50%;



  }



  #messengers-widget .contact-hub__label {



    position: absolute;



    width: 1px;



    height: 1px;



    padding: 0;



    margin: -1px;



    overflow: hidden;



    clip: rect(0, 0, 0, 0);



    white-space: nowrap;



    border: 0;



  }



  #messengers-widget .contact-hub__panel {



    display: none !important;



  }



  #scroll-top-btn {



    bottom: calc(160px + env(safe-area-inset-bottom, 0px)) !important;



  }



}







/* Chat toggle above mobile CTA bar — raised above service CTA buttons */



@media (max-width: 768px) {



  .chat-toggle {



    width: 56px !important;



    height: 56px !important;



    right: 12px !important;



    bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;



    z-index: 970 !important;



  }



}







/* Cookie banner below chat widget */



.cookie-banner {



  z-index: 9990 !important;



}











.hero--bleed .hero-cta {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .hero--bleed .hero-cta { flex-direction: column; align-items: stretch; }
}



.hero--bleed .hero-cta .btn {



  padding: 14px 24px !important;



  font-size: 1rem !important;



  text-align: center !important;



}











/* ===== HERO INNER STATIC (must be last) ===== */



.hero--bleed .hero-inner {



  position: static !important;



  padding: 0 !important;



  max-width: none !important;



  margin: 0 !important;



}







.hero-bg source { display: none; }











/* Hide chat-toggle on desktop - contact-hub already present */



@media (min-width: 769px) {



  .chat-toggle {



    display: none !important;



  }



}







/* ===== AUDIT FIXES 2026-08-16 ===== */







/* Fix 2: Reduce hero→content gap */



.page-header, .news-hero, .service-hero { padding-bottom: 32px !important; }



.section-pad-lg { padding-top: 32px !important; }







/* Fix 3: News cards — flex column, button to bottom */



.news-card {



  display: flex !important;



  flex-direction: column !important;



  min-height: 200px !important;



}



.news-card-body { display: flex; flex-direction: column; flex: 1; }



.news-card-link { margin-top: auto !important; align-self: flex-start !important; }







/* Fix 4: Service/doctor cards — align-items stretch */



.staff-grid-editorial, .staff-grid {



  display: flex !important;



  flex-wrap: wrap !important;



  gap: 20px !important;



}



.staff-card-editorial {



  flex: 0 0 calc((100% - 40px) / 3) !important;



  display: flex !important;



  flex-direction: column !important;



}



.staff-card-editorial__body { margin-top: auto !important; }







/* Fix 5: Sticky footer padding-bottom */



body { padding-bottom: 70px !important; }



@media (max-width: 768px) { body { padding-bottom: 70px !important; } }







/* Fix 6: Subtitle contrast — darker */



.news-hero-sub, .page-header-sub, .service-hero .service-hero-sub {



  color: var(--dark) !important;



  opacity: 0.85 !important;



}







/* Fix 7: FAQ pagination — move below filters */



.faq-controls { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }



.faq-controls .pagination { margin-top: 8px !important; }







/* Fix 8: Service — hide duplicate back link */



.service-back-link { display: none !important; }







/* Fix 9: Article card wider on desktop */



@media (min-width: 1024px) {



  .article-body { max-width: 920px !important; }



}







/* Fix 10: Contacts — reduce gap */



.contacts-main { padding-top: 24px !important; }







/* Fix 11: News — add date styling */



.news-card-date {



  font-size: 13px;



  color: var(--text-secondary, #6C6660);



  font-weight: 500;



  margin-bottom: 8px;



}







/* Fix 12: Doctor featured card — better balance on desktop */



.staff-featured {



  display: grid !important;



  grid-template-columns: 400px 1fr !important;



  gap: 40px !important;



  align-items: start !important;



}



@media (max-width: 768px) {



  .staff-featured { grid-template-columns: 1fr !important; gap: 20px !important; }



  .staff-featured__photo { max-width: 300px; margin: 0 auto; }



}







/* Fix 13: Cards same height in grid */



.services-listing .service-card,



.doctors-grid .doctor-card {



  display: flex !important;



  flex-direction: column !important;



}



.services-listing .service-card .btn,



.doctors-grid .doctor-card .btn {



  margin-top: auto !important;



}







/* Fix news card alignment */



.news-card-desc { flex: 1 1 auto !important; }



/* AUDIT FIX: promo quick-call on light section */



.section--light .promo-quick-call{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;gap:24px;background:rgba(169,202,214,.25);border:1px solid rgba(103,100,88,.08);border-radius:18px;padding:28px 32px;max-width:1000px;margin:40px auto 0}



.section--light .promo-quick-call h2{color:var(--dark);font-size:24px;margin-bottom:6px}



.section--light .promo-quick-call p{color:var(--text-secondary)}



.section--light .promo-quick-call .quick-call-right{display:flex;align-items:center;gap:16px}



.section--light .promo-quick-call .quick-call-phone{display:inline-flex;align-items:center;gap:10px;color:var(--dark);font-size:22px;font-weight:800;text-decoration:none}



.section--light .promo-quick-call .quick-call-btn{background:var(--primary);color:var(--primary-ink);border-radius:12px;box-shadow:0 4px 14px rgba(169,202,214,0.45)}



.section--light .promo-quick-call .quick-call-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(169,202,214,0.5)}



@media(max-width:768px){.section--light .promo-quick-call{flex-direction:column;text-align:center;padding:24px}.section--light .promo-quick-call .quick-call-right{flex-direction:column;width:100%}.section--light .promo-quick-call .quick-call-phone{font-size:22px}}

/* AUDIT FIX: promo grid layout */

.promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:40px}

.promo-card{background:#fff;border:1px solid rgba(103,100,88,.08);border-radius:16px;padding:24px;box-shadow:0 2px 12px rgba(52,58,64,.05);display:flex;flex-direction:column}

.promo-deadline{display:inline-block;background:var(--teal-bg);color:var(--dark);font-size:12px;font-weight:700;padding:6px 12px;border-radius:20px;margin-bottom:12px;width:fit-content}

.promo-title{font-size:18px;font-weight:700;color:var(--dark);margin-bottom:10px;flex:1}

.promo-text{font-size:14px;line-height:1.6;color:var(--text-secondary);margin-bottom:16px}

.promo-card .quick-call-btn{margin-top:auto}

@media(max-width:980px){.promo-grid{grid-template-columns:1fr}}

/* Related services block */
.related-services-section{padding:64px 0}
.related-services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;max-width:1200px;margin:32px auto 0}
.related-service-card{background:#fff;border:1px solid rgba(103,100,88,.08);border-radius:16px;padding:24px;box-shadow:0 2px 12px rgba(52,58,64,.05);text-decoration:none;color:var(--dark);display:flex;flex-direction:column;transition:.3s}
.related-service-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(52,58,64,.08);border-color:rgba(103,100,88,.2)}
.related-service-title{font-size:18px;font-weight:700;margin:0 0 10px;color:var(--dark)}
.related-service-desc{font-size:14px;line-height:1.6;color:var(--text-secondary);margin:0 0 16px;flex:1}
.related-service-btn{margin-top:auto;width:100%;justify-content:center;background:var(--primary);color:var(--primary-ink);border:none;box-shadow:0 2px 10px rgba(169,202,214,.35)}
.related-service-btn:hover{background:var(--primary-hover);color:var(--primary-ink)}
@media(max-width:768px){.related-services-grid{grid-template-columns:1fr}}

@media (max-width: 1024px) {
  .hero-badge, .hero-content .hero-badge { max-width: 420px; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: .3s;
}
.btn-secondary:hover {
  background: #2a3036;
  color: var(--white);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline-light:focus-visible,
.h-cta:focus-visible,
.scenario-btn:focus-visible,
.quick-call-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
/* Header search (global — magnifier link on every page) */
.header-search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--dark, #343A40);
  transition: background .2s ease, color .2s ease;
}
.header-search-link:hover {
  background: rgba(103, 100, 88, .08);
  color: var(--teal, #676458);
}
@media (max-width: 768px) {
  .header-search-link { display: none; }
}
}
