/* =============================================
   GLOWMD SKIN CLINIC — Premium CSS
   Aesthetic: Luxury medical / refined editorial
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================= */

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

:root {
  --cream: #faf8f5;
  --beige: #f2ede7;
  --beige-mid: #e8e0d6;
  --gold: #b8965a;
  --gold-light: #d4af7a;
  --gold-dark: #8c6e3f;
  --charcoal: #1c1a18;
  --text: #2e2b27;
  --text-muted: #7a7168;
  --white: #ffffff;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

em { font-style: italic; color: var(--gold); }

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

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover { background: var(--text-muted); border-color: var(--text-muted); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,90,0.4); }

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.logo span { font-weight: 300; }
.nav.scrolled .logo { color: var(--charcoal); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,24,0.82) 0%, rgba(28,26,24,0.55) 60%, rgba(28,26,24,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  margin-left: max(24px, calc((100vw - 1160px)/2));
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.stars { color: #ffd700; letter-spacing: 2px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); line-height: 1; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollPulse 1.8s ease-in-out infinite;
  margin: 0 auto;
}

/* ============ PROBLEMS ============ */
.problems { padding: 100px 0; background: var(--cream); }
.problems h2 { margin-bottom: 56px; max-width: 600px; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.problem-icon { font-size: 2.4rem; margin-bottom: 16px; }
.problem-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.problem-card p { color: var(--text-muted); font-size: 0.9rem; }

.solution-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.solution-text {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.solution-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.solution-text h3 { color: var(--white); }
.solution-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.solution-image { aspect-ratio: 1; overflow: hidden; min-height: 360px; }
.solution-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.solution-image:hover img { transform: scale(1.04); }

/* ============ DOCTOR ============ */
.doctor { padding: 100px 0; background: var(--beige); }
.doctor-card {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.doctor-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.doctor-info { display: flex; flex-direction: column; gap: 24px; }
.doctor-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.doctor-stars { color: #ffc107; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.doctor-stars span { color: var(--text-muted); font-size: 0.85rem; font-family: 'DM Sans', sans-serif; }
.doctor-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; }
.meta-item strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); }
.meta-item span { font-size: 0.78rem; color: var(--text-muted); }
.doctor-info blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

/* ============ TREATMENTS ============ */
.treatments { padding: 100px 0; background: var(--cream); }
.treatments h2 { margin-bottom: 56px; }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--beige-mid);
}
.treatment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.treatment-img { aspect-ratio: 4/3; overflow: hidden; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover .treatment-img img { transform: scale(1.06); }
.treatment-body { padding: 28px 24px; }
.treatment-icon { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 10px; }
.treatment-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.treatment-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }
.treatment-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.treatment-link:hover { color: var(--gold-dark); letter-spacing: 0.06em; }

/* ============ RESULTS ============ */
.results { padding: 100px 0; background: var(--beige); }
.results h2 { margin-bottom: 12px; }
.section-sub { color: var(--text-muted); margin-bottom: 56px; font-size: 0.95rem; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--beige-mid);
}
.ba-images {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ba-side {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.ba-side img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ba-label {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.ba-before { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.9); }
.ba-after { background: var(--gold); color: var(--white); }
.ba-arrow { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.ba-caption { font-size: 0.85rem; color: var(--text-muted); text-align: center; font-weight: 500; }
.results-cta { text-align: center; }
.results-cta p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }

/* ============ WHY US ============ */
.why { padding: 100px 0; background: var(--cream); }
.why h2 { margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--beige-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card {
  background: var(--white);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: var(--beige); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige-mid);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-num { color: var(--gold-light); }
.why-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--charcoal); }
.testimonials .section-label { color: var(--gold-light); }
.testimonials h2 { color: var(--white); margin-bottom: 56px; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testi-featured {
  background: rgba(184,150,90,0.12);
  border-color: rgba(184,150,90,0.3);
  padding: 44px 36px;
}
.testi-stars { color: #ffd700; letter-spacing: 4px; margin-bottom: 20px; font-size: 0.9rem; }
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testi-featured blockquote { font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-author span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,90,0.88) 0%, rgba(28,26,24,0.9) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.urgency-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 40px; font-size: 1.05rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: var(--cream); }
.faq h2 { margin-bottom: 56px; max-width: 500px; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--beige-mid);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-cta { margin-top: 56px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }

/* ============ FOOTER ============ */
.footer { background: var(--charcoal); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { font-weight: 300; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 1.3rem;
  opacity: 0.6;
  transition: var(--transition);
}
.footer-social a:hover { opacity: 1; transform: scale(1.15); }
.footer h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.fi-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-detail p, .footer-detail a { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }
.footer-detail a:hover { color: var(--gold-light); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ============ STICKY BUTTONS ============ */
.sticky-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.sticky-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.sticky-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: ripple 2.5s ease-in-out infinite;
}
.sticky-wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.sticky-wa:hover .sticky-wa-tooltip { opacity: 1; }

.sticky-call {
  position: fixed;
  bottom: 98px; right: 28px;
  z-index: 900;
  width: 50px; height: 50px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.1);
}
.sticky-call:hover { background: var(--gold); transform: scale(1.1); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes ripple {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .doctor-card { grid-template-columns: 1fr; max-width: 600px; gap: 48px; }
  .doctor-img-wrap { aspect-ratio: 4/3; }
  .solution-banner { grid-template-columns: 1fr; }
  .solution-image { min-height: 280px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-ctas .btn-sm:first-child { display: none; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .solution-text { padding: 40px 32px; }
  .treatments-grid { grid-template-columns: 1fr; max-width: 420px; }
  .ba-grid { grid-template-columns: 1fr; max-width: 420px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .problems-grid { grid-template-columns: 1fr; }
  .why-card { padding: 36px 24px; }
  .doctor-card { padding: 0; }
  .hero-stats .stat:last-child, .stat-divider:last-of-type { display: none; }
}
