





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

body {
  background: var(--stone);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(11,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  transition: padding .3s;
}
.header.scrolled {
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--neon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  letter-spacing: .01em;
}
.header-nav a:hover,
.header-nav a.active {
  color: #fff;
}
.header-nav a.active {
  color: var(--neon);
}
@media (max-width: 860px) { .header-nav { display: none } }
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  letter-spacing: .01em;
}
.header-phone:hover { color: #fff }
@media (max-width: 600px) { .header-phone { display: none } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-neon {
  background: var(--neon);
  color: #fff;
  padding: 12px 28px;
  border-radius: 60px;
}
.btn-neon:hover {
  background: var(--neon-hover);
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 11px 26px;
  border-radius: 60px;
}
.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.btn-lg { padding: 16px 36px; font-size: 16px }
.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,.1);
}
.btn-dark:hover { border-color: var(--neon) }

/* ===== PHOTO PLACEHOLDER ===== */
.ph-img {
  position: relative;
  background: var(--ph-bg);
  border: 1.5px dashed var(--ph-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.ph-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(61,107,229,.06), transparent 70%);
}
.ph-img-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(91,106,255,.6);
  line-height: 1.5;
}
.ph-img-label strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--neon);
  margin-bottom: 6px;
  opacity: .7;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0 }
@media (max-width: 600px) { section { padding: 56px 0 } }
section.dark {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
section.dark h2, section.dark h3, section.dark strong { color: #fff }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
section.dark h2.section-title { color: #fff }
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
section.dark .section-desc { color: rgba(255,255,255,.45) }

/* ===== NEON DIVIDER ===== */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: .25;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(61,107,229,.06) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,107,229,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,107,229,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero > .container { position: relative; z-index: 2 }
.breadcrumb {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--neon) }
.breadcrumb span { margin: 0 8px; opacity: .4 }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 600px;
}

/* ===== INTRO ===== */
.intro-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.intro-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--neon);
  border-radius: 4px 0 0 4px;
}
@media (max-width: 600px) {
  .intro-block { padding: 24px 20px }
}

/* ===== DOCTOR CARDS ===== */
.doctor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s;
  margin-bottom: 32px;
  position: relative;
}
.doctor-card:hover {
  box-shadow: var(--shadow-lg);
}
.doctor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--neon);
  border-radius: var(--radius) 0 0 var(--radius);
  z-index: 2;
}
.doctor-card.founder::before {
  width: 5px;
  background: linear-gradient(180deg, var(--neon), var(--cyan));
}
.doctor-card-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}
@media (max-width: 860px) {
  .doctor-card-inner { grid-template-columns: 1fr }
}
.doctor-photo {
  aspect-ratio: 3/4;
  min-height: 360px;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--line);
}
@media (max-width: 860px) {
  .doctor-photo {
    aspect-ratio: 16/9;
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
.doctor-info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .doctor-info { padding: 24px 20px }
}
.doctor-header {
  margin-bottom: 20px;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,107,229,.1);
  border: 1px solid rgba(61,107,229,.2);
  padding: 4px 14px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.doctor-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.doctor-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}
.doctor-title .sep {
  margin: 0 4px;
  opacity: .5;
}
.doctor-experience {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--neon);
  margin-top: 8px;
}
.doctor-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
  flex-grow: 1;
}
.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.doctor-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--neon-dim);
  border: 1px solid rgba(61,107,229,.12);
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--neon);
  letter-spacing: .01em;
}
.doctor-quote {
  background: var(--neon-dim);
  border-left: 3px solid var(--neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: var(--body);
}
.doctor-quote::before {
  content: '\ab\2009';
  color: var(--neon);
  font-weight: 700;
  font-style: normal;
}
.doctor-quote::after {
  content: '\2009\bb';
  color: var(--neon);
  font-weight: 700;
  font-style: normal;
}
.doctor-cta {
  margin-top: auto;
}

/* ===== WHY-DOCTOR SECTION ===== */
.why-doctor {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 600px) {
  .why-doctor { padding: 28px 20px }
}
.why-doctor h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.why-doctor p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(61,107,229,.06), transparent 70%);
}
.cta-section > * { position: relative; z-index: 1 }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 12px;
  letter-spacing: -.015em;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.35);
}
.cta-contacts a { color: rgba(255,255,255,.6); transition: color .2s }
.cta-contacts a:hover { color: var(--neon) }

/* ===== FOOTER ===== */
.footer {
  background: #070e1a;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr } }

.footer-about .logo { margin-bottom: 14px; font-size: 18px }
.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 300px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer ul { list-style: none }
.footer ul li { margin-bottom: 10px }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer ul a:hover { color: var(--neon) }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  color: rgba(255,255,255,.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(11,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-bar-inner { display: flex; gap: 10px }
.mobile-bar .btn { flex: 1; text-align: center; font-size: 14px; padding: 12px 16px }
@media (max-width: 760px) {
  .mobile-bar { display: block }
  body { padding-bottom: 72px }
}
