/* ─────────────────────────────────────────
   style.css  –  Dr. Jayanti Thumsi Profile
   ───────────────────────────────────────── */

:root {
  --rose:       #c0635a;
  --rose-light: #f5e8e7;
  --rose-dark:  #8b3a33;
  --teal:       #3d7d7a;
  --teal-light: #e6f2f1;
  --cream:      #fdf8f5;
  --ink:        #1a1412;
  --muted:      #7a6b66;
  --border:     #e8ddd9;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(26,20,18,0.10);
  --radius:     14px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #0b2340 0%, #0e3460 45%, #145a6e 100%);
  position: relative;
  overflow: hidden;
}

/* animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 340px; height: 340px;
  background: #1a9eb5;
  top: -80px; right: -60px;
  animation-delay: 0s;
}
.blob-2 {
  width: 260px; height: 260px;
  background: #4fc3c3;
  bottom: 60px; left: -80px;
  animation-delay: 2.5s;
}
.blob-3 {
  width: 180px; height: 180px;
  background: #c0635a;
  top: 40%; right: 30%;
  animation-delay: 5s;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -20px) scale(1.08); }
}

/* top bar */
.hero-topbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}
.topbar-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.topbar-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
}

/* hero inner layout */
.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 24px 36px;
}

/* ── PHOTO ── */
.hero-photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 200px;
  animation: heroPhotoIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(0.82) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.photo-ring {
  position: absolute;
  border-radius: 18px;
  border: 2px solid rgba(79,195,195,0.5);
}
.ring-outer {
  inset: -14px;
  animation: ringRotate 12s linear infinite;
  border-style: dashed;
}
.ring-inner {
  inset: -6px;
  border-color: rgba(255,255,255,0.15);
  animation: ringRotate 8s linear infinite reverse;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.photo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: rgba(79,195,195,0.15);
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 0; }
}

.hero-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 3px solid rgba(255,255,255,0.22);
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(79,195,195,0.35), 0 16px 48px rgba(0,0,0,0.4);
}

.verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4fc3c3, #1a9eb5);
  border: 2.5px solid #0e3460;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 12px rgba(79,195,195,0.5);
}

/* ── HERO TEXT ── */
.hero-text {
  flex: 1;
  min-width: 0;
  animation: heroTextIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-speciality-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(79,195,195,0.15);
  border: 1px solid rgba(79,195,195,0.35);
  color: #7ee8e8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4fc3c3;
  animation: tagPulse 1.8s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,100% { opacity:1; } 50% { opacity:0.35; }
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-divider {
  width: 115px;
  height: 2px;
  background: linear-gradient(90deg, #63fbfb, transparent);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ── STATS ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 0;
  overflow: hidden;
  width: fit-content;
}

.stat {
  padding: 0 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: 1.4rem;
  color: #4fc3c3;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  margin-left: 1px;
}

.stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── CTA BUTTONS ── */
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: heroTextIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

.cta-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #4fc3c3, #1a9eb5);
  color: #fff;
  box-shadow: 0 4px 18px rgba(79,195,195,0.4);
}
.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,195,195,0.5);
}

.cta-btn.secondary {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.2);
}
.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* ── TAB BAR ── */
.tab-bar {
  position: relative;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-bar-inner {
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
  min-width: max-content;
}

.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn svg { opacity: 0.7; transition: opacity var(--transition); }

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2.5px;
  background: #4fc3c3;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.tab-btn:hover { color: rgba(255,255,255,0.85); }
.tab-btn:hover svg { opacity: 1; }

.tab-btn.active {
  color: #fff;
  font-weight: 600;
}
.tab-btn.active svg { opacity: 1; }
.tab-btn.active::after { transform: scaleX(1); }

/* ── CONTENT WRAP ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* ── TAB PANELS ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.45s ease both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

/* ── LEAD TEXT ── */
.section-intro { margin-bottom: 28px; }

.lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  border-left: 3px solid var(--rose);
  padding-left: 16px;
}

/* ── BIO INTRO ── */
.bio-intro {
  margin-bottom: 24px;
}

.bio-lead {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
}

.bio-lead strong { color: var(--teal); }

/* ── PIONEER CARD ── */
.pioneer-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, #0e3460, #145a6e);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 28px rgba(14,52,96,0.22);
}

.pioneer-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(79,195,195,0.2);
  border: 1.5px solid rgba(79,195,195,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fc3c3;
}

.pioneer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 7px;
}

.pioneer-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.pioneer-card strong { color: #7ee8e8; }

/* ── IMPACT STATS ROW ── */
.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.impact-item {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--teal);
  transition: transform var(--transition);
}

.impact-item:hover { transform: translateY(-3px); }

.impact-num {
  font-size: 1.6rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.impact-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── BIO BLOCKS ── */
.bio-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.bio-block {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bio-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,20,18,0.12);
}

.bio-block-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-block-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.bio-block-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

.bio-block-content strong { color: var(--ink); font-weight: 600; }

/* ── AWARDS ── */
.awards-section {
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title svg { color: var(--teal); flex-shrink: 0; }

.awards-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.award-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.award-item:last-child { border-bottom: none; }
.award-item:hover { background: #f8f4f2; }

.award-year {
  flex-shrink: 0;
  width: 64px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  border-right: 2px solid var(--teal);
  padding: 14px 8px;
}

.award-item.award-more .award-year {
  background: var(--rose-light);
  color: var(--rose);
  border-right-color: var(--rose);
  font-size: 1.4rem;
}

.award-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.award-body strong {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}

.award-body span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,20,18,0.14);
}

.info-card.accent-rose { border-top-color: var(--rose); }
.info-card.accent-teal { border-top-color: var(--teal); }

.card-icon { font-size: 1.5rem; margin-bottom: 10px; }

.info-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── EXPERTISE ── */
.expertise-section { margin-bottom: 32px; }

.expertise-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}

.tag:hover {
  background: var(--rose);
  color: #fff;
}

/* ── QUOTE ── */
.quote-block {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 10px;
  position: relative;
}

.quote-block cite {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  font-weight: 500;
}

/* ── ACCORDION (Q&A) ── */
.accordion { display: flex; flex-direction: column; gap: 10px; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--rose-light); }

.q-num {
  flex-shrink: 0;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 6px;
}

.acc-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--rose);
  font-weight: 300;
  transition: transform var(--transition);
  line-height: 1;
}

.accordion-item.open .acc-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

.accordion-body p {
  padding: 0 18px 18px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── MYTH CARDS ── */
.myth-list { display: flex; flex-direction: column; gap: 14px; }

.myth-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.myth-header {
  background: #fdf1f0;
  border-left: 4px solid var(--rose);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.myth-label {
  flex-shrink: 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

.fact-label {
  flex-shrink: 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

.myth-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.fact-body {
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fact-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition);
}

.contact-card:hover { transform: translateY(-3px); }

.contact-icon { font-size: 1.8rem; margin-bottom: 10px; }

.contact-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.screening-reminder {
  background: linear-gradient(135deg, var(--teal-light), #d8eeec);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reminder-icon { font-size: 2rem; flex-shrink: 0; }

.screening-reminder h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

.screening-reminder p {
  font-size: 13px;
  color: #2e5f5d;
  line-height: 1.6;
}

.screening-reminder strong { color: var(--teal); }

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer p {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-note {
  margin-top: 4px;
  font-size: 10.5px;
  color: #b0a09a;
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 28px 16px 28px;
  }

  .hero-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .hero-photo {
    width: 140px;
    height: 140px;
  }

  .hero-name { font-size: 2rem; }

  .hero-speciality-tag { margin: 0 auto 12px; }

  .hero-divider { margin: 0 auto 18px; }

  .hero-stats {
    width: 100%;
    justify-content: center;
  }

  .hero-cta { justify-content: center; }

  .tab-btn { padding: 13px 14px; font-size: 12px; gap: 4px; }
  .tab-btn::after { left: 14px; right: 14px; }

  .content-wrap { padding: 24px 16px 40px; }

  .impact-row { grid-template-columns: repeat(2, 1fr); }

  .pioneer-card { flex-direction: column; gap: 12px; }

  .bio-block { flex-direction: column; gap: 10px; }

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

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

  .quote-block { padding: 22px 20px 20px; }

  .accordion-trigger { font-size: 13px; }

  .screening-reminder { flex-direction: column; gap: 10px; }

  .blob-1 { width: 200px; height: 200px; }
  .blob-2 { width: 160px; height: 160px; }
}

@media (max-width: 380px) {
  .hero-name { font-size: 1.7rem; }
  .stat-num  { font-size: 1.4rem; }
  .tab-btn   { padding: 12px 10px; font-size: 11.5px; }
  .tab-btn svg { display: none; }
}
