/*
Theme Name: Sehat
Theme URI: https://sehatalks.com
Author: Shahab Baig
Author URI: https://sehatalks.com
Description: SehatTalks — Dr. Sulaiman Ahmed | CKM Medicine & SehaBeat. A modern medical personal brand theme for CKM specialists.
Version: 1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: sehatalks
*/

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --teal-deep:   #0A3D36;
  --teal-mid:    #1D9E75;
  --teal-light:  #E1F5EE;
  --amber:       #E8961F;
  --amber-light: #FEF3DC;
  --amber-dark:  #7A4D08;
  --ink:         #0F1A17;
  --cream:       #F7F5F0;
  --warm-white:  #FDFCFA;
  --muted:       #5A6B65;
  --border:      rgba(10,61,54,.12);
  --border-mid:  rgba(10,61,54,.2);
  --ff-display:  'Fraunces', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --ff-mono:     'JetBrains Mono', monospace;
  --r:           6px;
  --r-lg:        14px;
  --r-xl:        22px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(10,61,54,.97);
  backdrop-filter: blur(14px);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px; width: 52px;
  max-width: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex; flex-direction: column; gap: .05rem;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.nav-logo span { color: var(--amber); }
.nav-tagline {
  font-size: .65rem; font-weight: 300;
  color: rgba(255,255,255,.5);
  letter-spacing: .01em;
  line-height: 1.2;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: .82rem; font-weight: 400;
  color: rgba(255,255,255,.68);
  text-decoration: none; letter-spacing: .01em;
  transition: color .18s;
}
.nav-links a:hover { color: rgba(255,255,255,.95); }
.nav-cta {
  background: var(--amber);
  color: var(--ink) !important;
  font-weight: 500 !important;
  padding: .38rem 1.1rem;
  border-radius: var(--r);
  color: var(--amber-dark) !important;
}
.nav-cta:hover { background: #f4a830 !important; }

/* ── SUBMENU DROPDOWN ── */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: ' ▾';
  font-size: .6rem;
  opacity: .6;
  vertical-align: middle;
}
.submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,61,54,.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: .5rem;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 300;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-submenu:hover .submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.submenu li a {
  display: block;
  padding: .6rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75) !important;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background .15s, color .15s !important;
}
.submenu li a:hover {
  background: rgba(255,255,255,.08);
  color: #fff !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--teal-deep);
  padding: 100px clamp(1.5rem, 7vw, 6rem) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-blob {
  position: absolute;
  top: -20%; right: -10%;
  width: 55vw; height: 55vw;
  border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%;
  background: radial-gradient(circle at 40% 40%, rgba(29,158,117,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-mono);
  font-size: .68rem; font-weight: 500;
  color: var(--teal-mid);
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 1.5rem;
  padding: .35rem .9rem;
  background: rgba(29,158,117,.12);
  border: 1px solid rgba(29,158,117,.25);
  border-radius: 999px;
}
.hero-kicker::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal-mid);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero-tagline-wrap {
  margin: .25rem 0 1.75rem;
  position: relative;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,.92);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
.hero-tagline em {
  font-style: normal;
  color: #fff;
  font-weight: 400;
}
.tagline-highlight {
  background: linear-gradient(90deg, var(--amber), #f9c95e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
  display: inline-block;
  will-change: transform;
  -webkit-text-size-adjust: none;
}
.tagline-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 999px;
  animation: shimmer-line 2.5s ease-in-out infinite;
}
@keyframes shimmer-line {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: .5; transform: scaleX(.85); }
}
.tagline-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(232,150,31,.2));
  border-radius: 999px;
  margin-bottom: .25rem;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: .75rem;
}
.hero-creds {
  font-family: var(--ff-mono);
  font-size: .80rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
  line-height: 2;
}
.hero-creds strong {
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.hero-actions { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem 1.6rem;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: .875rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .14s, opacity .14s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-amber { background: var(--amber); color: var(--amber-dark); }
.btn-amber:hover { background: #f4a830; }
.btn-ghost {
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.cred-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.cred-badge {
  font-family: var(--ff-mono);
  font-size: .6rem; font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: .2rem .65rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── HERO RIGHT — VITALS DASHBOARD ── */
.hero-right { position: relative; z-index: 2; }
.vitals-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.vitals-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem;
}
.vitals-title {
  font-family: var(--ff-mono);
  font-size: 1.2rem; font-weight: 500;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .13em;
}
.vitals-live {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--ff-mono);
  font-size: .6rem; color: var(--teal-mid);
  text-transform: uppercase; letter-spacing: .1em;
}
.vitals-live::before {
  content: '';
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal-mid);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.vitals-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vital-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}
.vital-stat.amber { border-color: rgba(232,150,31,.25); background: rgba(232,150,31,.08); }
.vital-stat.teal  { border-color: rgba(29,158,117,.25); background: rgba(29,158,117,.06); }
.vital-num {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}
.vital-stat.amber .vital-num { color: var(--amber); }
.vital-stat.teal  .vital-num { color: var(--teal-mid); }
.vital-num sup { font-size: 1rem; font-weight: 300; vertical-align: super; }
.vital-label {
  font-family: var(--ff-mono);
  font-size: .6rem; font-weight: 400;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .1em;
  line-height: 1.4;
}

/* ECG strip */
.ecg-strip {
  height: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
}
.ecg-strip svg { width: 200%; height: 100%; }
.ecg-path {
  stroke: var(--teal-mid); stroke-width: 1.5;
  fill: none; opacity: .6;
  animation: ecg-scroll 4s linear infinite;
}
@keyframes ecg-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ECOSYSTEM HUB ── */
.ecosystem {
  padding: 6rem clamp(1.5rem, 7vw, 6rem);
  background: var(--warm-white);
}
.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: .90rem; font-weight: 500;
  color: var(--teal-mid);
  text-transform: uppercase; letter-spacing: .16em;
  margin-bottom: .9rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--teal-deep);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; }
.section-body {
  font-size: .97rem; font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.hub-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.4rem;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--teal-mid));
  border-radius: 2px 2px 0 0;
}
.hub-card:hover {
  border-color: var(--card-accent, var(--teal-mid));
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10,61,54,.09);
}
.hub-card.amber { --card-accent: var(--amber); }
.hub-card.coral { --card-accent: #D85A30; }
.hub-card.purple { --card-accent: #7F77DD; }
.hub-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--icon-bg, var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.hub-card.amber .hub-icon { background: var(--amber-light); }
.hub-card.coral .hub-icon { background: #FAECE7; }
.hub-card.purple .hub-icon { background: #EEEDFE; }
.hub-label {
  font-family: var(--ff-mono);
  font-size: .6rem; font-weight: 500;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .4rem;
}
.hub-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.hub-desc {
  font-size: .78rem; font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.hub-arrow {
  font-family: var(--ff-mono);
  font-size: .65rem; color: var(--card-accent, var(--teal-mid));
  font-weight: 500;
}

/* ── ACADEMY LOGOS ── */
.academy-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.academy-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.academy-logo-img {
  width: 140px;
  height: 140px;
  max-width: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(232,150,31,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  flex-shrink: 0;
}


/* ── SEHABEAT ACADEMY FEATURE ── */
.academy-feature {
  background: var(--teal-deep);
  padding: 6rem clamp(1.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.academy-feature::before {
  content: 'YES';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(12rem, 20vw, 18rem);
  font-weight: 600;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.05em;
}
.academy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}
.academy-left .section-eyebrow { color: var(--amber); }
.academy-left .section-title { color: #fff; }
.academy-left .section-body { color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.yes-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.yes-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.yes-letter-badge {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(232,150,31,.15);
  border: 1px solid rgba(232,150,31,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--amber);
  font-style: italic;
}
.yes-step-content h4 { font-size: .9rem; font-weight: 500; color: #fff; margin-bottom: .2rem; }
.yes-step-content p { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.55; }
.academy-right-hero-img {
  width: 140px;
  height: 140px;
  max-width: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 0 1.5rem;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  flex-shrink: 0;
}

.academy-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: left;
}
.price-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .65rem; font-weight: 500;
  color: var(--teal-mid);
  background: rgba(29,158,117,.12);
  border: 1px solid rgba(29,158,117,.25);
  padding: .3rem .8rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.price-number {
  font-family: var(--ff-display);
  font-size: 4rem; font-weight: 300;
  color: #fff; line-height: 1;
  margin-bottom: .3rem;
}
.price-number sup { font-size: 1.6rem; vertical-align: super; }
.price-number sub { font-size: 1rem; color: rgba(255,255,255,.5); }
.price-desc { font-size: .83rem; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 2rem; line-height: 1.6; }
.perks-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2rem;
}
.perks-list li {
  font-size: .83rem; font-weight: 300;
  color: rgba(255,255,255,.7);
  display: flex; align-items: flex-start; gap: .6rem;
}
.perks-list li::before { content: '✓'; color: var(--teal-mid); flex-shrink: 0; font-weight: 500; }
.btn-amber-solid {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--amber);
  color: var(--amber-dark);
  border-radius: var(--r);
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  transition: background .15s, transform .14s;
  width: 100%; justify-content: center;
}
.btn-amber-solid:hover { background: #f4a830; transform: translateY(-1px); }

/* ── YOUTUBE SECTION ── */
.youtube-section {
  padding: 6rem clamp(1.5rem, 7vw, 6rem);
  background: var(--cream);
}
.yt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.yt-right { display: flex; flex-direction: column; gap: .75rem; }

/* Social pill buttons */
.yt-social-pills {
  display: flex; flex-wrap: nowrap; gap: .6rem;
  margin-top: 1.5rem;
  overflow-x: auto;
}
.social-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 500;
  text-decoration: none;
  transition: opacity .15s, transform .14s;
  color: #fff;
}
.social-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-pill:hover { opacity: .88; transform: translateY(-1px); }
.pill-yt  { background: #FF0000; }
.pill-tt  { background: #010101; }
.pill-ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.pill-fb  { background: #1877F2; }
.pill-x   { background: #000; }

/* Intro video */
.yt-intro-video {
  margin-bottom: 2rem;
}
.yt-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-mono);
  font-size: .65rem;
  font-weight: 500;
  color: var(--teal-mid);
  background: rgba(29,158,117,.10);
  border: 1px solid rgba(29,158,117,.22);
  padding: .3rem .85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.yt-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 8px 28px rgba(10,61,54,.13);
  border: 1px solid var(--border-mid);
}
.yt-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cards */
.yt-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex; gap: 1rem; align-items: center;
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.yt-card:hover { transform: translateX(4px); }

/* Thumbnail — platform-branded background */
.yt-thumb {
  width: 56px; height: 56px;
  border-radius: var(--r);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.yt-platform-icon { width: 26px; height: 26px; color: #fff; }
.yt-thumb-yt { background: #FF0000; }
.yt-thumb-tt { background: #010101; }
.yt-thumb-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.yt-thumb-fb { background: #1877F2; }
.yt-thumb-x  { background: #000; }

/* Hover border matches platform color */
.yt-card:has(.yt-thumb-yt):hover { border-color: #FF0000; }
.yt-card:has(.yt-thumb-tt):hover { border-color: #69C9D0; }
.yt-card:has(.yt-thumb-ig):hover { border-color: #dc2743; }
.yt-card:has(.yt-thumb-fb):hover { border-color: #1877F2; }
.yt-card:has(.yt-thumb-x):hover  { border-color: #000; }

.yt-info h4 { font-size: .875rem; font-weight: 500; color: var(--teal-deep); margin-bottom: .2rem; line-height: 1.3; }
.yt-info span { font-family: var(--ff-mono); font-size: .62rem; color: var(--muted); }

/* ── STEPS CHALLENGE ── */
.steps-section {
  padding: 5rem clamp(1.5rem, 7vw, 6rem);
  background: var(--amber-light);
  border-top: 1px solid rgba(232,150,31,.2);
  border-bottom: 1px solid rgba(232,150,31,.2);
}
.steps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.steps-right {
  background: #fff;
  border: 1px solid rgba(232,150,31,.25);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.steps-meter { margin-bottom: 1.5rem; }
.steps-meter-label {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: .65rem; color: var(--muted);
  margin-bottom: .6rem;
}
.steps-bar { height: 10px; background: var(--amber-light); border-radius: 999px; overflow: hidden; }
.steps-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--amber), #f4a830);
  border-radius: 999px;
  position: relative;
}
.steps-fill::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--amber);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,150,31,.2);
}
.steps-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.step-stat { text-align: center; padding: .75rem; background: var(--amber-light); border-radius: var(--r); }
.step-stat-num { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--amber-dark); line-height: 1; margin-bottom: .2rem; }
.step-stat-label { font-family: var(--ff-mono); font-size: .55rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.steps-section .section-title { color: var(--amber-dark); }
.steps-section .section-eyebrow { color: var(--amber); }
.steps-section .section-body { color: var(--amber-dark); opacity: .75; }

/* ── PROGRAMS ── */
.programs { padding: 6rem clamp(1.5rem, 7vw, 6rem); background: var(--warm-white); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.program-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  background: var(--teal-light);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.program-card.featured { background: var(--teal-deep); border-color: transparent; }
.program-card:hover { transform: translateY(-2px); border-color: var(--teal-mid); }
.program-card.featured:hover { border-color: var(--amber); }
.program-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .90rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.badge-teal { background: var(--teal-light); color: var(--teal-mid); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }
.program-card.featured .badge-teal { background: rgba(29,158,117,.15); color: var(--teal-mid); }
.program-title {
  font-family: var(--ff-display);
  font-size: 1.55rem; font-weight: 300;
  color: var(--teal-deep);
  margin-bottom: .5rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.program-card.featured .program-title { color: #fff; }
.program-subtitle { font-size: .85rem; font-weight: 300; color: var(--teal-deep); margin-bottom: 1.75rem; line-height: 1.6; opacity: .75; }
.program-card.featured .program-subtitle { color: rgba(255,255,255,.55); }
.program-features {
  list-style: none;
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 2rem;
}
.program-features li { font-size: .82rem; font-weight: 300; color: var(--muted); display: flex; gap: .6rem; }
.program-card.featured .program-features li { color: rgba(255,255,255,.65); }
.program-features li::before { content: '→'; color: var(--teal-mid); flex-shrink: 0; }
.btn-teal {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  background: var(--teal-mid);
  color: #fff;
  border-radius: var(--r);
  font-size: .875rem; font-weight: 500;
  text-decoration: none;
  transition: background .15s, transform .14s;
}
.btn-teal:hover { background: #18876a; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r);
  font-size: .875rem; font-weight: 500;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }

/* ── TELEMEDICINE ── */
.telemedicine { background: var(--cream); padding: 6rem clamp(1.5rem, 7vw, 6rem); }
.tele-clinic-logo {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tele-clinic-logo-img {
  width: 140px; height: 140px;
  max-width: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  box-shadow: 0 2px 10px rgba(10,61,54,.1);
  flex-shrink: 0;
}
.tele-clinic-logo-label {
  font-family: var(--ff-mono);
  font-size: .65rem; font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase; letter-spacing: .12em;
}
.tele-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.tele-left {
  background-image: url('images/saliaman.png');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 2.5rem 2rem 2.5rem 2rem;
  border-radius: var(--r-xl);
  position: relative;
  min-height: 400px;
}
.tele-left::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(247,245,240,.98) 38%, rgba(247,245,240,.45) 65%, transparent 100%);
  border-radius: var(--r-xl);
  pointer-events: none;
}
.tele-left > * { position: relative; z-index: 1; }
.tele-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.tele-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.dr-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--teal-deep) url('images/saliaman.png') center/cover no-repeat;
  flex-shrink: 0;
}
.dr-info h4 { font-size: .95rem; font-weight: 500; color: var(--teal-deep); }
.dr-info p { font-size: .78rem; color: var(--muted); font-weight: 300; }
.online-badge {
  margin-left: auto;
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--ff-mono);
  font-size: .6rem; color: #1D9E75;
  background: #E1F5EE;
  padding: .25rem .65rem; border-radius: 999px;
  letter-spacing: .08em;
}
.online-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: #1D9E75; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.tele-consult-options { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.75rem; }
.consult-opt {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .83rem; font-weight: 300; color: var(--teal-deep);
}
.consult-opt-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.tele-contact { display: flex; gap: .75rem; }
.tele-contact a {
  flex: 1; text-align: center;
  padding: .7rem 1rem;
  border-radius: var(--r);
  font-size: .82rem; font-weight: 500;
  text-decoration: none;
  transition: transform .14s, opacity .14s;
}
.tele-contact a:hover { transform: translateY(-1px); }
.wa-btn { background: #25D366; color: #fff; }
.book-btn { background: var(--teal-deep); color: #fff; }

/* ── PODCAST ── */
.podcast-section {
  background: var(--ink);
  padding: 6rem clamp(1.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.podcast-logo-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.75rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  width: fit-content;
}
.podcast-logo-img {
  width: 140px;
  height: 140px;
  max-width: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  flex-shrink: 0;
  display: block;
}

.podcast-logo-title {
  font-family: var(--ff-display);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.podcast-logo-handle {
  font-family: var(--ff-mono);
  font-size: .6rem;
  font-weight: 400;
  color: var(--teal-mid);
  letter-spacing: .06em;
}
.podcast-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(29,158,117,.03) 0px, rgba(29,158,117,.03) 1px,
    transparent 1px, transparent 60px
  );
  pointer-events: none;
}
.podcast-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.podcast-section .section-title { color: #fff; }
.podcast-section .section-eyebrow { color: var(--teal-mid); }
.podcast-section .section-body { color: rgba(255,255,255,.5); }
.podcast-ep-list { display: flex; flex-direction: column; gap: .875rem; }
.podcast-ep {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  display: flex; gap: 1rem; align-items: center;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}
.podcast-ep:hover { border-color: var(--teal-mid); background: rgba(29,158,117,.06); }
.ep-num-badge {
  font-family: var(--ff-mono);
  font-size: .6rem; font-weight: 500;
  color: var(--teal-mid);
  background: rgba(29,158,117,.12);
  padding: .2rem .5rem; border-radius: 3px;
  flex-shrink: 0;
  letter-spacing: .06em;
}
.ep-details { flex: 1; }
.ep-details h4 { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: .15rem; line-height: 1.35; }
.ep-details span { font-family: var(--ff-mono); font-size: .6rem; color: rgba(255,255,255,.35); }
.ep-duration { font-family: var(--ff-mono); font-size: .62rem; color: rgba(255,255,255,.3); flex-shrink: 0; }
.podcast-platforms { display: flex; gap: .75rem; margin-top: 1.5rem; }
.plat-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1rem;
  border-radius: var(--r);
  font-size: .82rem; font-weight: 500;
  text-decoration: none;
  transition: opacity .15s;
}
.plat-btn:hover { opacity: .88; }
.plat-yt { background: #FF0000; color: #fff; }
.plat-sp { background: #1DB954; color: #fff; }

/* ── WHATSAPP COMMUNITY ── */
.community-strip {
  background: var(--teal-mid);
  padding: 3rem clamp(1.5rem, 7vw, 6rem);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  text-align: center;
  flex-direction: row;
}
.community-strip-logo {
  width: 155px;
  height: 155px;
  max-width: 155px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.community-strip h3 { font-family: var(--ff-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; color: #fff; letter-spacing: -.02em; }
.community-strip h3 em { font-style: italic; }
.community-strip p { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.75); margin-top: .3rem; }
.wa-join-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem;
  background: #fff;
  color: var(--teal-deep);
  border-radius: var(--r);
  font-size: .9rem; font-weight: 500;
  text-decoration: none; flex-shrink: 0;
  transition: transform .14s;
}
.wa-join-btn:hover { transform: translateY(-1px); }

/* ── CREDENTIALS BAR ── */
.creds-bar {
  background: var(--cream);
  padding: 2.5rem clamp(1.5rem, 7vw, 6rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
}
.cred-item { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.cred-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-mid); }
.cred-text { font-family: var(--ff-mono); font-size: 1rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.cred-sep { width: 1px; height: 20px; background: var(--border-mid); }

/* ── FOOTER ── */
footer {
  background: var(--teal-deep);
  padding: 3.5rem clamp(1.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  overflow: hidden;
}
.footer-brand-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 300; color: #fff; margin-bottom: .5rem; letter-spacing: -.02em; }
.footer-brand-name span { color: var(--amber); font-style: italic; }
.footer-tagline { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-disc {
  font-size: .7rem; font-weight: 300;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  padding: .75rem;
  background: rgba(0,0,0,.15);
  border-radius: var(--r);
  border-left: 2px solid rgba(232,150,31,.3);
}
.footer-col { word-break: break-word; }
.footer-col h4 { font-family: var(--ff-mono); font-size: .62rem; font-weight: 500; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .13em; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-social-link { display: flex; align-items: center; gap: .55rem; line-height: 1; }
.footer-social-icon { width: 16px; height: 16px; flex-shrink: 0; opacity: .75; transition: opacity .15s; }
.footer-social-link:hover .footer-social-icon { opacity: 1; }
.footer-bottom {
  background: var(--teal-deep);
  padding: 1rem clamp(1.5rem, 7vw, 6rem);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: var(--ff-mono); font-size: .6rem; color: rgba(255,255,255,.3); letter-spacing: .05em; }

/* ── HAMBURGER ── */
.nav-close-row { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-inner, .yt-inner, .steps-inner,
  .tele-inner, .podcast-inner { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,61,54,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.5rem clamp(1.5rem,5vw,4rem) 2rem;
    gap: .25rem;
    z-index: 199;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.nav-open { display: flex; }
  .nav-close-row { display: flex; justify-content: flex-end; }
  .nav-links li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: .75rem 0;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links li:last-child > a { border-bottom: none; }
  .nav-cta {
    display: inline-flex;
    margin-top: .75rem;
    width: auto;
  }
  /* submenu on mobile */
  .has-submenu .submenu {
    position: static;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: rgba(255,255,255,.04);
    border-radius: var(--r);
    padding: 0 0 0 .75rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    transition: opacity .2s, max-height .25s, visibility .2s;
  }
  .has-submenu.submenu-open .submenu {
    visibility: visible;
    opacity: 1;
    max-height: 200px;
    padding: .25rem 0 .25rem .75rem;
    margin-top: .25rem;
    pointer-events: auto;
  }
  .tele-left {
    background-position: center top;
    background-size: 220px auto;
    padding-top: 16rem;
    min-height: auto;
  }
  .tele-left::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(247,245,240,.55) 35%, rgba(247,245,240,.98) 58%);
  }
}
@media (max-width: 480px) {
  .tele-left {
    background-size: 170px auto;
    padding-top: 13rem;
  }
}
@media (max-width: 600px) {
  .hub-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .creds-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cred-sep { display: none; }
  .yt-social-pills { gap: .5rem; overflow-x: auto; }
  .social-pill { font-size: .75rem; padding: .4rem .85rem; flex-shrink: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}


