:root {
  --bg: #0f0b13;
  --bg-elevated: #161221;
  --bg-card: #1c1628;
  --bg-card-hover: #231c30;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.065);
  --text: #f4efe9;
  --text-secondary: rgba(244, 239, 233, 0.62);
  --text-tertiary: rgba(244, 239, 233, 0.38);
  --accent: #d4919e;
  --accent-light: #e8b4be;
  --accent-glow: rgba(212, 145, 158, 0.12);
  --accent-glow-strong: rgba(212, 145, 158, 0.22);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(212, 145, 158, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 32px rgba(212, 145, 158, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  z-index: 1000;
  color: var(--text);
}
.skip:focus { left: 12px; }

/* ───── ANIMATIONS ───── */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim[data-anim="fade-left"] { transform: translateX(40px); }
.anim[data-anim="scale"] { transform: scale(0.85); }
.anim.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ───── TOPBAR ───── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(15, 11, 19, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.topbar.scrolled { background: rgba(15, 11, 19, 0.92); }

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0f0b13;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.brand__mark--sm { width: 36px; height: 36px; font-size: 11px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 700; font-size: 15px; letter-spacing: -0.2px; }
.brand__sub { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1px; }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: var(--surface-hover); }

.topbar__cta { display: flex; gap: 10px; align-items: center; }
.medsfolioTag{
  font-size: 12px;
  font-weight: 700;
  color: var(--text-tertiary);
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.medsfolioTag:hover{
  color: var(--accent-light);
  border-color: var(--border-accent);
  background: var(--accent-glow);
  transform: translateY(-1px);
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0f0b13;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 145, 158, 0.25);
}
.btn--outline {
  border-color: var(--border-accent);
  color: var(--accent-light);
}
.btn--outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}
.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius); }
.btn--full { width: 100%; }

/* ───── HAMBURGER ───── */
.menuBtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 12px 10px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menuBtn span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobileNav {
  display: none;
  border-top: 1px solid var(--border);
}
.mobileNav__inner {
  padding: 16px 0 20px;
  display: grid;
  gap: 8px;
}
.mobileNav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.mobileNav a:hover { color: var(--text); background: var(--surface-hover); }

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: var(--accent);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  top: 50%;
  right: -150px;
  background: #a78bfa;
  opacity: 0.07;
  animation: float 25s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 30%;
  background: #e8b4be;
  opacity: 0.06;
  animation: float 22s ease-in-out infinite 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05); }
}

.hero h1 {
  margin: 24px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--text);
}
.hero__accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light), #f0c6d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero__stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Image */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__img-wrap {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  border: 2px solid var(--border-accent);
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__img-ring {
  position: absolute;
  inset: -20px;
  border-radius: 220px 220px 60px 60px;
  border: 1px solid var(--accent-glow);
  pointer-events: none;
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(22, 18, 33, 0.9);
  backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.hero__badge-icon {
  color: var(--accent);
  font-size: 16px;
}
.hero__badge--1 { top: 60px; left: -30px; }
.hero__badge--2 { bottom: 80px; right: -20px; }

/* ───── SECTIONS ───── */
.section {
  padding: 100px 0;
  position: relative;
}
.section--dark {
  background: var(--bg-elevated);
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section__title--center { text-align: center; }
.text-accent {
  color: var(--accent);
  font-style: italic;
}
.section__subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 56ch;
  line-height: 1.7;
}
.section__title--center + .section__subtitle,
.section__subtitle:only-of-type { text-align: center; margin: 0 auto 48px; }

/* ───── ABOUT ───── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about__text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.about__highlights {
  display: grid;
  gap: 16px;
}
.highlight-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.highlight-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.highlight-card__icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}
.highlight-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.highlight-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ───── SERVICES ───── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.svc {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.svc:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.svc:hover::before { opacity: 1; }

.svc__icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.svc p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc__tags li {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-glow-strong);
  background: var(--accent-glow);
}

.services-cta {
  text-align: center;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
  background:
    radial-gradient(600px 200px at 30% 50%, var(--accent-glow), transparent),
    var(--bg-card);
}
.services-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

/* ───── RESULTS ───── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.ba-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.ba-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-card__images--single { grid-template-columns: 1fr; }
.ba-card__fig {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.ba-card__fig img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ba-card:hover .ba-card__fig img { transform: scale(1.05); }
.ba-card__images--single .ba-card__fig img { aspect-ratio: 16 / 10; }

.ba-card__label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 11, 19, 0.8);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}
.ba-card__label--after { color: var(--accent); }

.ba-card__body {
  padding: 20px;
}
.ba-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ba-card__body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Videos */
.results-videos {
  margin-top: 16px;
}
.results-videos__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.results-videos__subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 32px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vid-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.vid-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.vid-card__media video {
  width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}
.vid-card__body { padding: 14px 16px; }
.vid-card__body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vid-card__body p {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ───── CREDENTIALS ───── */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.cred-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cred-heading--center { text-align: center; }

.timeline {
  position: relative;
}
.timeline__item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline__item:last-child::before { display: none; }

.timeline__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-elevated);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.timeline__content { flex: 1; }
.timeline__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline__content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0;
}
.timeline__content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Skills Cloud */
.skills-section {
  margin-bottom: 40px;
}
.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.skill-tag {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease);
  cursor: default;
}
.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

/* Certifications */
.cert-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
  background: var(--accent-glow);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
}
.cert-badge__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

/* ───── CONTACT ───── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-glow);
  color: var(--accent);
  margin-bottom: 20px;
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-card .btn { margin-bottom: 12px; }
.contact-card__detail {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ───── FOOTER ───── */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__name { font-weight: 700; font-size: 15px; }
.footer__role { font-size: 12px; color: var(--text-tertiary); }
.footer__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}
.footer__links a:hover { color: var(--text); background: var(--surface-hover); }

.footer__bottom {
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.footer__bottom a{
  color: rgba(244, 239, 233, 0.72);
  border-bottom: 1px solid rgba(212, 145, 158, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__bottom a:hover{
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

/* ───── FAB ───── */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0f0b13;
  box-shadow: 0 8px 32px rgba(212, 145, 158, 0.3);
  z-index: 120;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}
.fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 145, 158, 0.35);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__lead { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-items: center; }
  .hero__visual { order: -1; }
  .hero__img-wrap { width: 280px; height: 340px; }
  .hero__badge--1 { left: calc(50% - 200px); }
  .hero__badge--2 { right: calc(50% - 200px); }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .cred-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 840px) {
  .nav, .topbar__cta { display: none; }
  .menuBtn { display: flex; }
  .mobileNav { display: block; }
  .mobileNav[aria-hidden="true"] { display: none; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .hero__grid { gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero__stats { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .hero__img-wrap { width: 220px; height: 280px; }
  .hero__badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .section__title { font-size: 26px; }
  .cert-row { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim { opacity: 1; transform: none; transition: none; }
  .hero__orb { animation: none; }
  .pill__dot { animation: none; }
  .hero__img-ring { animation: none; }
  .btn:hover, .svc:hover, .ba-card:hover,
  .contact-card:hover, .fab:hover { transform: none; }
}
