@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --bg-white: #ffffff;
  --bg-off-white: #f8f9fc;
  --bg-light-blue: #f0f4ff;
  
  --accent-teal: #00b4d8;
  --accent-emerald: #2dc653;
  --accent-orange: #ff6b35;
  --accent-coral: #ff3366;
  --accent-light-blue: #90e0ef;
  
  --text-dark: #0a2463;
  --text-muted: #4a5568;
  --text-light: #ffffff;
  
  --gradient-hope: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
  --gradient-cta: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
  --gradient-hero: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  --gradient-dark: linear-gradient(135deg, #0a2463, #1e3a5f);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(10, 36, 99, 0.05);
  --shadow-md: 0 12px 32px rgba(10, 36, 99, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 36, 99, 0.12);
  --shadow-cta: 0 8px 24px rgba(255, 107, 53, 0.3);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --container-width: 1200px;
  --section-padding-y: clamp(4rem, 8vw, 7rem);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-muted); background-color: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.1; margin-bottom: 1rem; }
h1 { display: flex; flex-wrap: wrap; gap: 0.5em; align-items: center; line-height: 0.2; }
h1 img { max-width: 100%; height: auto; display: block; }
h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.2rem, 2vw, 2.1rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.0rem, 1.8vw, 1.75rem); font-weight: 600; }
h4 { font-size: .9rem; font-weight: 600; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ==========================================================================
   Utility Classes & Effects
   ========================================================================== */
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.section-padding { padding: var(--section-padding-y) 0; }
.text-center { text-align: center; }

.text-gradient-teal {
  background: var(--gradient-hope);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent-teal);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  background: var(--gradient-cta);
  color: var(--text-light) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: visible !important;
  animation: pulse-shadow 2.5s infinite;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5); }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Backgrounds & Glows */
.bg-abstract {
  position: absolute; inset: 0; opacity: 0.03; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.glow-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; z-index: 0; pointer-events: none; animation: blobFloat 12s infinite alternate ease-in-out; }
.blob-1 { width: 400px; height: 400px; background: var(--accent-light-blue); top: -10%; left: -10%; }
.blob-2 { width: 350px; height: 350px; background: var(--accent-mint); bottom: 10%; right: -5%; animation-delay: -5s; }

/* Interactive Backgrounds */
.relative-section { position: relative; overflow: hidden; }
.relative-content { position: relative; z-index: 3; }
.interactive-bg {
    position: absolute; top: -5%; left: -5%; width: 110%; height: 110%;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    z-index: 0; pointer-events: none; transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.bg-overlay-light {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.95) 100%);
    z-index: 1; pointer-events: none;
}

/* ==========================================================================
   Header & Mobile Nav
   ========================================================================== */
.main-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 0; transition: all 0.3s ease; background: transparent;
}
.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { display: flex; align-items: center; gap: 0.75rem; z-index: 1001; }
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--text-dark); line-height: 1; }
.header-right { display: flex; align-items: center; gap: 1.5rem; z-index: 1001; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent-teal); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1002; }
.mobile-menu-btn span { width: 26px; height: 2px; background: var(--text-dark); transition: 0.3s; transform-origin: left center; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 991px) {
  .mobile-menu-btn { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-white); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2rem; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; margin-bottom: 1.5rem; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--bg-off-white); padding-top: 6rem; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; z-index: 0; pointer-events: none;
  background-image: url('../img/bg-hero.jpg');
  background-size: cover; background-position: center; opacity: 0.12;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 20%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 20%, black 100%);
}
@media (min-width: 992px) {
  .hero-section::before { opacity: 0.25; width: 60%; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%); mask-image: linear-gradient(to right, transparent 0%, black 50%); }
}

.hero-ribbon-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
  background-image: url('../img/bg_hero ribbon.png');
  background-size: cover; background-position: center;
  opacity: 0.15; pointer-events: none; mix-blend-mode: multiply;
}
.hero-particles-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; }
.hero-text { position: relative; z-index: 2; max-width: 900px; }
.hero-badge-clc {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-white);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; color: var(--text-muted);
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-desc { font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; }

/* Price Block (Hero) */
.hero-price-action {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem;
  background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border); max-width: 400px;
}
.price-display { display: flex; align-items: baseline; gap: 1rem; }
.price-old { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; opacity: 0.7; }
.price-new { font-size: 2.5rem; font-weight: 800; color: var(--accent-coral); line-height: 1; }
.hero-price-action .btn-cta { width: 100%; }

/* Stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.hero-stat-card {
  display: flex; align-items: center; gap: 1rem; background: var(--bg-white); padding: 1rem 1.5rem;
  border-radius: var(--radius-md); border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--shadow-sm); flex: 1; min-width: 220px; max-width: 300px;
}
.hero-stat-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(0, 180, 216, 0.1); color: var(--accent-teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.hero-stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text-dark); line-height: 1; display: inline-block; }
.hero-stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ==========================================================================
   Marquee Ticker (Рядок, що біжить)
   ========================================================================== */
.marquee-wrapper {
  background: var(--gradient-hope);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  transform: rotate(-2deg) scale(1.05);
  margin-top: 0;
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.marquee-content {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollMarquee 28s linear infinite;
}

.marquee-content img {
  height: 20px;               /* высота картинок */
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 1.8rem;           /* расстояние вокруг картинок */
}

.marquee-content i {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Адаптив */
@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 20s;
  }
  .marquee-content img {
    height: 32px;
    margin: 0 1.3rem;
  }
}

@media (max-width: 480px) {
  .marquee-content img {
    height: 26px;
    margin: 0 1rem;
  }
  .marquee-content i {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Comparison Section (Підхід)
   ========================================================================== */
.comparison-section { background: var(--bg-white); position: relative; }
.comparison-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .comparison-grid { grid-template-columns: 1fr 1fr; } }
.comp-box { padding: 3rem 2.5rem; border-radius: var(--radius-xl); border: 1px solid var(--glass-border); }
.comp-box-danger { background: #fff5f5; border-color: #ffe3e3; }
.comp-box-success { background: #f0fdf4; border-color: #dcfce7; }
.comp-icon-wrap { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
.comp-icon-danger { background: #ffe3e3; color: #e71d36; }
.comp-icon-success { background: #dcfce7; color: #2dc653; }
.comp-title { font-size: 1.8rem; margin-bottom: 0.5rem; }
.comp-subtitle { font-weight: 500; margin-bottom: 2rem; opacity: 0.8; }
.comp-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.comp-list i { margin-top: 0.2rem; font-size: 1.2rem; }
.comp-box-danger .comp-list i { color: #e71d36; }
.comp-box-success .comp-list i { color: #2dc653; }

/* ==========================================================================
   Program Timeline
   ========================================================================== */
.program-section { background: var(--bg-light-blue); position: relative; }
.timeline-wrapper { position: relative; max-width: 750px; margin: 0 auto; padding: 2rem 0; }
.timeline-line { position: absolute; left: 24px; top: 0; bottom: 0; width: 4px; background: rgba(0, 180, 216, 0.2); border-radius: 4px; }
.timeline-item { position: relative; padding-left: 70px; margin-bottom: 3rem; }
.timeline-marker { position: absolute; left: 0; top: 0; width: 52px; height: 52px; background: var(--bg-white); border: 4px solid var(--accent-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-teal); font-size: 1.2rem; box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.1); z-index: 2; }
.timeline-days { display: inline-block; padding: 0.3rem 1rem; background: var(--gradient-hope); color: white; border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 1rem; }
.timeline-item h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.timeline-item p { font-size: 0.95rem; margin-bottom: 0; }
@media (min-width: 768px) {
  .timeline-line { left: 50%; transform: translateX(-50%); }
  .timeline-item { width: 50%; padding-left: 0; margin-bottom: 4rem; }
  .timeline-left { padding-right: 50px; text-align: right; }
  .timeline-right { left: 50%; padding-left: 50px; }
  .timeline-marker { left: auto; right: -26px; }
  .timeline-right .timeline-marker { left: -26px; right: auto; }
}

.program-cta { text-align: center; margin-top: 3.5rem; }
.program-cta .btn-cta { padding: 1rem 2.4rem; font-size: 1.05rem; box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35); }
.program-cta .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255, 107, 53, 0.5); }

/* ==========================================================================
   Relatives (Родичі)
   ========================================================================== */
.relatives-section { background: linear-gradient(135deg, var(--bg-white) 0%, rgba(255, 107, 53, 0.05) 100%); position: relative; }
.relatives-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .relatives-grid { grid-template-columns: 1fr 1fr; } }
.guide-steps { margin-top: 2.5rem; }
.guide-step-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.guide-step-num { width: 48px; height: 48px; flex-shrink: 0; background: var(--accent-teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.codep-icon { font-size: 3rem; color: var(--accent-orange); margin-bottom: 1.5rem; }
.codep-stats { margin: 2rem 0; padding: 1.5rem; background: var(--bg-off-white); border-radius: 12px; border-left: 4px solid var(--accent-orange); }

/* ==========================================================================
   Speakers (Спікери / Досьє лікаря)
   ========================================================================== */
.speakers-section { background: var(--bg-off-white); position: relative; }
.dc-dossier { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; max-width: 1000px; margin: 0 auto; padding: 2.5rem; }
@media (min-width: 768px) { .dc-dossier { grid-template-columns: 280px 1fr; gap: 3rem; padding: 3rem; } }
.dc-photo-wrap { position: relative; text-align: center; }
.dc-photo { width: 100%; max-width: 280px; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 4px solid rgba(0, 180, 216, 0.15); margin: 0 auto; }
.dc-name { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.5rem; }
.doctor-role { color: var(--accent-teal); font-weight: 600; font-size: 1rem; margin-bottom: 1.25rem; }
.doctor-bio { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.doctor-focus { font-size: 0.95rem; color: var(--text-muted); margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); }
.doctor-regalia { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.regalia-tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; background: rgba(0, 180, 216, 0.08); color: var(--text-dark); border-radius: 50px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(0, 180, 216, 0.15); }
.regalia-tag i { color: var(--accent-teal); font-size: 0.9rem; }

/* ==========================================================================
   Clc Block
   ========================================================================== */
.clc-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .clc-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.clc-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.clc-photo { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.5s ease; }
.clc-photo-wrap:hover .clc-photo { transform: scale(1.03); }

/* Конференция */
.clc-conference { margin-top: 4.5rem; padding-top: 3rem; border-top: 1px solid rgba(0, 0, 0, 0.06); }
.conference-header { text-align: center; max-width: 780px; margin: 0 auto 2.5rem; }
.conference-header h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 1rem; }
.conference-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.65; }
.conference-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .conference-gallery { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (max-width: 576px) { .conference-gallery { grid-template-columns: 1fr 1fr; } }
.conf-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.conf-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.conf-photo:hover img { transform: scale(1.05); }

/* ==========================================================================
   Mid CTA Section (Блок бронирования по центру)
   ========================================================================== */
.mid-cta-section { position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: center; }
.dark-cta { background-color: #0a2463; }
.cta-video-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/bg-cta.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  animation: ctaBgPulse 8s ease-in-out infinite alternate;
}
@keyframes ctaBgPulse { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.cta-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 180, 216, 0.88) 0%, rgba(10, 36, 99, 0.92) 100%); z-index: 1; }
.cta-spotlight { position: absolute; inset: 0; background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.15), transparent 80%); z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
.dark-cta:hover .cta-spotlight { opacity: 1; }
.cta-shine { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%); background-size: 200% 200%; animation: shineMove 8s ease-in-out infinite; }
@keyframes shineMove { 0% { background-position: -100% -100%; } 100% { background-position: 200% 200%; } }

.cta-countdown-wrapper { margin-bottom: 2.5rem; }
.cta-countdown { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.countdown-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 1rem 1.5rem; min-width: 80px; text-align: center; }
.countdown-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: #ffffff; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.countdown-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; margin-top: 0.3rem; }
.cta-heading { color: #ffffff !important; margin-bottom: 1.5rem; text-shadow: 0 4px 12px rgba(0,0,0,0.3); font-size: clamp(1.8rem, 4vw, 3.5rem); }
.cta-sub { color: rgba(255,255,255,0.9) !important; font-size: 1.15rem; max-width: 550px; margin: 0 auto 2rem; }

/* Кнопка CTA */
.btn-cta-light { background: #ffffff !important; color: var(--accent-teal) !important; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important; padding: 1.1rem 2.8rem; animation: ctaPulse 2.5s infinite; }
.btn-cta-light:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 48px rgba(0, 180, 216, 0.5) !important; background: #f0f4ff !important; }
.btn-badge { position: absolute; top: -16px; right: 20px; background-color: #ff2a5f; color: #ffffff; font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; box-shadow: 0 4px 12px rgba(255, 42, 95, 0.4); white-space: nowrap; z-index: 5; line-height: 1.2; animation: badge-pulse 2s infinite; }
@keyframes badge-pulse { 0% { transform: scale(1); box-shadow: 0 4px 12px rgba(255, 42, 95, 0.4), 0 0 0 0 rgba(255, 42, 95, 0.7); } 70% { transform: scale(1.05); box-shadow: 0 4px 12px rgba(255, 42, 95, 0.4), 0 0 0 10px rgba(255, 42, 95, 0); } 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(255, 42, 95, 0.4), 0 0 0 0 rgba(255, 42, 95, 0); } }

/* Блок цены внутри CTA */
.cta-price-block { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.cta-price-display { position: relative; display: inline-flex; align-items: baseline; gap: 1.1rem; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 0.95rem 1.9rem 0.95rem 1.7rem; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); }
.cta-price-old { font-size: 1.35rem; color: rgba(255, 255, 255, 0.55); text-decoration: line-through; font-weight: 500; letter-spacing: 0.02em; }
.cta-price-new { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: #ffffff; line-height: 1; text-shadow: 0 0 24px rgba(255, 107, 53, 0.7), 0 2px 8px rgba(0,0,0,0.3); position: relative; }
.cta-price-new::after { content: ''; position: absolute; left: -6px; right: -6px; bottom: -4px; height: 4px; background: linear-gradient(90deg, #ff6b35, #ff3366); border-radius: 4px; opacity: 0.85; }
.cta-price-badge { position: absolute; top: -12px; right: -8px; background: linear-gradient(135deg, #ff6b35, #ff3366); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 0.32rem 0.85rem; border-radius: 50px; letter-spacing: 0.02em; box-shadow: 0 4px 14px rgba(255, 107, 53, 0.5); white-space: nowrap; animation: priceBadgePulse 2.2s ease-in-out infinite; z-index: 2; }
@keyframes priceBadgePulse { 0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(255, 107, 53, 0.5); } 50% { transform: scale(1.06); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.7); } }

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer { background: var(--gradient-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.main-footer h4 { color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-logo .logo-text { color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-contact-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: center; }
.footer-contact-item i { color: var(--accent-teal); font-size: 1.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.9); }
.footer-contact-item a:hover { color: var(--accent-teal); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse-shadow { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); } }
@keyframes blobFloat { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 30px) scale(1.1); } 100% { transform: translate(-30px, 60px) scale(0.9); } }

/* ==========================================================================
   Mobile Optimizations
   ========================================================================== */
@media (max-width: 768px) {
    .interactive-bg { top: 0; left: 0; width: 100%; height: 100%; transform: none !important; transition: none; }
    .cta-spotlight { background: radial-gradient(circle 400px at 50% 50%, rgba(255, 255, 255, 0.12), transparent 80%); opacity: 1; }
    .dc-dossier { padding: 1.75rem; text-align: center; }
    .doctor-regalia { justify-content: center; }
    .dc-photo { max-width: 220px; }
}

@media (max-width: 576px) {
    .cta-price-display { padding: 0.8rem 1.4rem 0.8rem 1.2rem; gap: 0.75rem; }
    .cta-price-old { font-size: 1.15rem; }
    .cta-price-new { font-size: 2.15rem; }
    .cta-price-badge { font-size: 0.72rem; padding: 0.28rem 0.7rem; top: -11px; right: -6px; }
}

@media (max-width: 480px) {
    .btn-badge { right: 10px; top: -14px; font-size: 0.7rem; padding: 4px 10px; }
}