/* ============================================================
   THE PIMPLE POST CLINIC
   Brand   : Acne Support Camp poster identity
   Primary : Teal     #38B7B3
   Accent  : Peach    #F6C5B1
   Bg-tint : #EAF8F7
   Font    : Poppins
   Style   : Friendly · Youthful · Modern · Supportive
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* ── Core brand colours ── */
  --teal:         #38B7B3;
  --teal-dark:    #2A9490;
  --teal-darker:  #1E7370;
  --teal-light:   #EAF8F7;
  --teal-faint:   #F2FBFA;
  --teal-mid:     #5BC8C4;

  --peach:        #F6C5B1;
  --peach-dark:   #EFA086;
  --peach-light:  #FDE8DF;
  --peach-faint:  #FFF5F1;

  --white:        #FFFFFF;
  --bg:           #FAFFFE;   /* near-white with faint teal warmth */
  --bg2:          #EAF8F7;   /* light teal section bg */
  --bg3:          #D6F2F1;   /* deeper teal tint */

  /* ── Legacy aliases (keep HTML working) ── */
  --cream:        var(--bg);
  --cream2:       var(--teal-light);
  --cream3:       var(--bg3);
  --terra:        var(--teal);
  --terra-light:  var(--teal-light);
  --terra-mid:    var(--teal-mid);
  --off-white:    var(--bg);
  --off-white2:   var(--teal-light);
  --off-white3:   var(--bg3);
  --gold:         var(--peach);
  --gold-light:   var(--peach-light);
  --gold-dark:    var(--peach-dark);

  /* ── Text ── */
  --ink:          #1A3C3B;   /* deep teal-black */
  --ink2:         #3D6B6A;   /* medium teal-grey */
  --ink3:         #6B9E9D;   /* light teal-grey */
  --border:       rgba(56,183,179,0.18);
  --border-light: rgba(56,183,179,0.10);

  /* ── Typography ── */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-sans:    'Poppins', system-ui, sans-serif;
  --font-serif:   'Poppins', Georgia, sans-serif; /* legacy alias */

  /* ── Layout ── */
  --nav-h:        64px;
  --max:          1160px;
  --radius:       20px;      /* poster-style rounded cards */
  --radius-sm:    12px;
  --radius-lg:    28px;
  --radius-xl:    36px;
  --ease:         cubic-bezier(.4, 0, .2, 1);

  /* ── Shadows (soft, teal-tinted) ── */
  --shadow-sm:    0 4px 16px rgba(56,183,179,0.10);
  --shadow-md:    0 8px 32px rgba(56,183,179,0.14);
  --shadow-lg:    0 20px 60px rgba(56,183,179,0.16);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Organic circles in background — like the poster */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 5%,  rgba(56,183,179,0.08)  0%, transparent 45%),
    radial-gradient(circle at 92% 85%, rgba(246,197,177,0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(56,183,179,0.03)  0%, transparent 60%);
  z-index: 0;
}

main { flex: 1; position: relative; z-index: 1; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: var(--max);
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(56, 183, 179, 0.18);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 0 2rem;
  transition: all 0.3s var(--ease);
}

.nav-brand { display: flex; align-items: center; z-index: 1001; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
@media (min-width: 1025px) {
  .nav-links { position: absolute; left: 50%; transform: translateX(-50%); }
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink2);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--teal-dark);
  background: var(--teal-light);
}
.nav-link.active {
  color: var(--teal-dark);
  background: var(--teal-light);
  font-weight: 600;
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.62rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.83rem !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 4px 16px rgba(56,183,179,0.30) !important;
  transition: all 0.25s var(--ease) !important;
  margin-left: 0.5rem !important;
  border: none !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  box-shadow: 0 6px 24px rgba(56,183,179,0.40) !important;
  transform: translateY(-1px) !important;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}
.nav-menu-btn:hover { background: var(--teal-light); }

/* ── DROPDOWN MENU ─────────────────────────────────────────── */
.nav-item-dropdown { position: relative; display: inline-block; }

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 270px;
  z-index: 1000;
  padding: 0.6rem 0.4rem;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  pointer-events: none;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
  background: transparent;
}
.nav-item-dropdown:hover .dropdown-menu {
  visibility: visible; opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-item {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--ink2);
  text-decoration: none;
  font-size: 0.83rem;
  transition: all 0.2s var(--ease);
  font-family: var(--font-sans);
  border-radius: var(--radius-sm);
}
.dropdown-item:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding-left: 1.4rem;
}

/* ── PAGE SHELL ─────────────────────────────────────────────── */
.page { min-height: 100vh; padding-top: 7.5rem; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-premium { position: relative; }

/* Hero copy panel */
.hero-copy-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
/* Decorative peach circle */
.hero-copy-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--peach-light);
  opacity: 0.7;
  pointer-events: none;
}

.hero-copy-badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.hero-copy-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-copy-badge.muted {
  background: var(--peach-light);
  color: var(--peach-dark);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(56,183,179,0.1));
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--ink2);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: all 0.25s var(--ease);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(56,183,179,0.28);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(56,183,179,0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--teal-dark);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--teal);
  font-family: var(--font-sans);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--peach) !important;
  color: var(--ink) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 22px rgba(246,197,177,0.40) !important;
  font-weight: 700 !important;
}
.btn-gold:hover {
  background: var(--peach-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(246,197,177,0.55) !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #31CF6E, #25D366) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.28) !important;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1FAA52, #1EA84B) !important;
  transform: translateY(-2px);
}

/* ── HERO STATS ─────────────────────────────────────────────── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-stat-card {
  background: var(--teal-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: all 0.22s var(--ease);
}
.hero-stat-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.64rem;
  color: var(--ink3);
  line-height: 1.4;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ── HERO VISUAL FRAME ──────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-visual-frame {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--peach-light) 100%);
  border: 2px solid rgba(56,183,179,0.20);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual-glow {
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 12px);
  background: radial-gradient(circle at 60% 30%, rgba(56,183,179,0.15), transparent 60%);
  filter: blur(16px);
  pointer-events: none;
}
.hero-image-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 16px);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--peach-faint) 100%);
}
.hero-image-shell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating badge cards */
.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  animation: floatY 4s ease-in-out infinite;
  font-family: var(--font-sans);
}
.hero-floating-card .hero-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-style: normal;
}
.hero-floating-top    { left: 0.75rem; top: 0.75rem; animation-delay: 0s; }
.hero-floating-bottom { right: 0.75rem; bottom: 0.75rem; animation-delay: 2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hero-visual-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 580px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  box-shadow: var(--shadow-sm);
}
.hero-summary-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-summary-copy { font-size: 0.73rem; color: var(--ink2); font-weight: 500; }

/* Legacy hero card */
.hero-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.hero-card-tag { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 1.2rem; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.stat-box { background: var(--teal-light); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.stat-label { font-size: .72rem; color: var(--ink3); margin-top: .3rem; line-height: 1.4; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-light);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  font-size: 0.76rem;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.trust-pill-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ── CREDENTIAL STRIP ───────────────────────────────────────── */
.hero-credential-strip {
  background: var(--bg2);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}
.credential-strip-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding: 1.25rem 2rem;
}
.cred {
  font-size: 0.8rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.cred::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { max-width: var(--max); margin: 0 auto; padding: 5.5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.section-title em { font-style: normal; color: var(--teal); }

.section-sub {
  font-size: 0.97rem;
  color: var(--ink2);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 3rem;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

/* ── FAIL CARDS ─────────────────────────────────────────────── */
.fail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.fail-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
  transition: all 0.24s var(--ease);
  box-shadow: var(--shadow-sm);
}
.fail-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.fail-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.fail-title { font-size: 0.97rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.fail-desc { font-size: 0.85rem; color: var(--ink2); line-height: 1.68; }

.vs-block {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.vs-head { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.vs-head.bad  { color: #FFAEAE; }
.vs-head.good { color: #A8F0DC; }
.vs-list { list-style: none; }
.vs-list li {
  font-size: 0.86rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.vs-list li::before { flex-shrink: 0; margin-top: 0.18rem; font-size: 0.82rem; }
.vs-list.bad  li::before { content: '✗'; color: #FFAEAE; }
.vs-list.good li::before { content: '✓'; color: #A8F0DC; }
.vs-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  transition: all 0.26s var(--ease);
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
/* Peach circle decoration per card */
.service-card::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--peach-light);
  opacity: 0.6;
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { background: var(--teal-light); opacity: 1; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  transition: background 0.22s, transform 0.22s;
  position: relative; z-index: 1;
}
.service-card:hover .service-icon { background: var(--teal); transform: scale(1.08); }
.service-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  position: relative; z-index: 1;
}
.service-desc { font-size: 0.81rem; color: var(--ink3); line-height: 1.68; position: relative; z-index: 1; }

/* ── APPROACH STEPS ─────────────────────────────────────────── */
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1.5px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
}
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.88rem; color: var(--ink2); line-height: 1.78; }

/* ── RESULTS / BEFORE-AFTER ─────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.result-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.26s var(--ease);
}
.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.result-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.result-img-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink3); font-weight: 600; }
.result-before-after { display: grid; grid-template-columns: 1fr 1fr; height: 100%; position: relative; }
.before-half {
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem; padding: 1.5rem;
}
.after-half {
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem; padding: 1.5rem;
}
.ba-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.before-label { color: var(--ink3); }
.after-label  { color: var(--teal-dark); }
.divider-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--white); z-index: 2; }
.result-body { padding: 1.3rem 1.5rem; }
.result-case { font-size: 0.81rem; color: var(--ink2); margin-bottom: 0.4rem; line-height: 1.55; }
.result-disclaimer { font-size: 0.7rem; color: var(--ink3); line-height: 1.5; font-style: italic; }
.results-note {
  text-align: center;
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  margin-top: 2rem;
}
.results-note p { font-size: 0.84rem; color: var(--ink2); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* ── WHO FOR ────────────────────────────────────────────────── */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.for-card { border-radius: var(--radius); padding: 2.5rem; border: 1.5px solid; }
.for-card.yes { background: var(--teal-light); border-color: rgba(56,183,179,0.25); }
.for-card.no  { background: var(--peach-faint); border-color: rgba(246,197,177,0.35); }
.for-head { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 800; }
.for-head.yes { color: var(--teal-dark); }
.for-head.no  { color: var(--ink3); }
.for-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.for-list li { font-size: 0.92rem; color: var(--ink); display: flex; gap: 0.75rem; align-items: flex-start; line-height: 1.55; }
.for-list li .icon { flex-shrink: 0; margin-top: 0.1rem; font-size: 0.88rem; font-weight: 700; }
.for-list.yes li .icon { color: var(--teal); }
.for-list.no  li .icon { color: var(--peach-dark); }
.for-closer {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--teal);
  border-radius: var(--radius);
  text-align: center;
}
.for-closer p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1.5px solid var(--border); padding: 1.3rem 0; cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q span { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink3);
  font-size: 1.05rem;
  transition: all 0.22s var(--ease);
  background: none;
  cursor: pointer;
}
.faq-a {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.82;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s var(--ease), padding 0.2s;
}
.faq-item.open .faq-a    { max-height: 260px; padding-top: 0.75rem; }
.faq-item.open .faq-toggle { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ── CONSULTATION FORM ──────────────────────────────────────── */
.consult-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.78rem; color: var(--ink2); margin-bottom: 0.5rem; font-weight: 700; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.78rem 1.05rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--bg);
  transition: all 0.22s var(--ease);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(56,183,179,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.22s var(--ease);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--teal-dark); box-shadow: 0 8px 24px rgba(56,183,179,0.28); }
.form-note { font-size: 0.73rem; color: var(--ink3); text-align: center; margin-top: 0.75rem; line-height: 1.5; }

.consult-info { padding-top: 1rem; }
.info-block { margin-bottom: 2rem; }
.info-label { font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.6rem; font-weight: 800; }
.info-text { font-size: 0.92rem; color: var(--ink2); line-height: 1.75; }
.whatsapp-block {
  background: var(--teal-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.whatsapp-block p { font-size: 0.86rem; color: var(--ink2); margin-bottom: 1rem; line-height: 1.65; }

/* ── ABOUT & DOCTOR ─────────────────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.doctor-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  box-shadow: var(--shadow-md);
}
.doctor-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 3rem;
}
.doctor-initial {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
}
.doctor-placeholder-text { font-size: 0.75rem; color: var(--ink3); letter-spacing: 0.06em; text-align: center; }
.doctor-info { padding: 1.5rem; }
.doctor-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.doctor-degree { font-size: 0.8rem; color: var(--ink3); margin-top: 0.25rem; }
.doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  color: var(--teal-dark);
  margin-top: 0.75rem;
  font-weight: 700;
}

.about-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1.5px solid var(--border); }
.about-section:last-child { border-bottom: none; }
.about-section-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 0.75rem; }
.about-p { font-size: 0.92rem; color: var(--ink2); line-height: 1.88; margin-bottom: 0.75rem; }
.about-p:last-child { margin-bottom: 0; }
.focus-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.chip {
  background: var(--teal-light);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--teal-dark);
  white-space: nowrap;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.chip:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--teal-darker);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}
/* Decorative circles */
footer::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(56,183,179,0.15);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-mid), var(--peach), var(--teal-mid));
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  position: relative; z-index: 1;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.96);
  margin-bottom: 0.4rem;
  font-weight: 800;
}
.footer-brand-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.1rem;
  font-weight: 800;
}
.footer-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  padding: 0.32rem 0;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  text-decoration: none;
}
.footer-link:hover { color: rgba(255,255,255,0.92); padding-left: 0.3rem; }
.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; z-index: 1;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.footer-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.18); max-width: 440px; line-height: 1.6; text-align: right; }

/* ── STICKY FLOATING ACTIONS ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  background: #25D366;
  border-radius: 50px;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.78rem 1.3rem 0.78rem 0.95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.38);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.48); }
.wa-float-icon  { font-size: 1.3rem; line-height: 1; }
.wa-float-text  { font-size: 0.83rem; font-weight: 700; color: var(--white); white-space: nowrap; }

.phone-float {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  z-index: 200;
  background: var(--teal);
  border-radius: 50px;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.78rem 1.3rem 0.78rem 0.95rem;
  box-shadow: 0 6px 24px rgba(56,183,179,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.phone-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(56,183,179,0.48); background: var(--teal-dark); }
.phone-float-icon { font-size: 1.1rem; line-height: 1; }
.phone-float-text { font-size: 0.83rem; font-weight: 700; color: var(--white); white-space: nowrap; }

/* ── SECTION DIVIDER ────────────────────────────────────────── */
.section-divider { border: none; border-top: 1.5px solid var(--border); margin: 0; }

/* ── MOBILE NAV (up to 1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    width: 95%;
    padding: 0 1rem 0 1.25rem;
    height: 60px;
    top: 0.75rem;
    border-radius: 40px;
  }
  .nav-brand { transform: scale(0.9); transform-origin: left center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; animation: navSlideDown 0.25s var(--ease); }
  .nav-link { font-size: 0.9rem; padding: 0.65rem 1.2rem; width: 100%; border-radius: 12px; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem !important; text-align: center !important; padding: 0.78rem 1.3rem !important; width: 100% !important; }
  .nav-menu-btn { display: flex; }
  .nav-item-dropdown { width: 100%; }
  .nav-item-dropdown .nav-link { justify-content: space-between; }
  .dropdown-menu {
    position: static; visibility: visible; opacity: 1; transform: none;
    box-shadow: none;
    background: rgba(56,183,179,0.05);
    border: none; border-radius: 10px;
    padding: 0.25rem 0 0.25rem 0.5rem;
    min-width: 0; pointer-events: auto;
    display: none; margin-top: 0.25rem;
  }
  .nav-item-dropdown:hover .dropdown-menu { transform: none; visibility: visible; opacity: 1; }
  .dropdown-item { font-size: 0.84rem; padding: 0.5rem 1rem; border-radius: 8px; }
  .dropdown-item:hover { padding-left: 1.25rem; }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-h1 { font-size: 2.55rem; }
  .hero-visual { order: -1; }
  .fail-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .consult-wrap { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .doctor-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vs-block { grid-template-columns: 1fr; gap: 1rem; }
  .vs-divider { display: none; }
  .section, .section-sm { padding: 3.5rem 1.5rem; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.1rem; }
  .wa-float    { bottom: 1.25rem; right: 1.25rem; }
  .phone-float { bottom: 4.75rem; right: 1.25rem; }
}

/* ── LOGOS ──────────────────────────────────────────────────── */
.logo-img { height: 54px; width: auto; object-fit: contain; display: block; }
.lp-logo  { height: 52px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img, .lp-logo { height: 44px; } }

/* ── DOCTOR BIO CARD ─────────────────────────────────────────── */
.doctor-bio-details {
  padding: 2.2rem 1.8rem;
  background: var(--white);
  border-top: 1.5px solid var(--border);
}
.bio-eyebrow {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.bio-name {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 0.35rem;
}
.bio-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 0.25rem;
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
  border-top: 1.5px dashed var(--border);
  border-bottom: 1.5px dashed var(--border);
  padding: 1.2rem 0;
}
.bio-stat-item { text-align: left; }
.bio-stat-num {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.2;
}
.bio-stat-label { font-size: 0.68rem; color: var(--ink3); line-height: 1.3; margin-top: 0.15rem; font-weight: 500; }
.bio-features { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.75rem 0; }
.bio-feature-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.bio-feature-icon { flex-shrink: 0; color: var(--teal); display: flex; align-items: center; justify-content: center; margin-top: 0.15rem; }
.bio-feature-text { font-size: 0.86rem; color: var(--ink2); line-height: 1.55; }
.bio-quote-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(56,183,179,0.22);
  position: relative;
  overflow: hidden;
}
.bio-quote-box::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.bio-quote-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.96);
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  position: relative; z-index: 1;
}

/* ── FOOTER BOTTOM LINKS ────────────────────────────────────── */
.footer-link-bottom {
  color: rgba(255,255,255,0.38) !important;
  text-decoration: none !important;
  font-size: 0.72rem;
  transition: color 0.18s var(--ease);
}
.footer-link-bottom:hover { color: rgba(255,255,255,0.88) !important; }

/* ── QUIZ ───────────────────────────────────────────────────── */
.quiz-container {
  max-width: 820px;
  margin: 2rem auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
/* Decorative blob */
.quiz-container::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--peach-light);
  opacity: 0.5;
  pointer-events: none;
}
.quiz-step-panel { display: none; animation: quizFadeIn 0.38s var(--ease); }
.quiz-step-panel.active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress Tracker */
.quiz-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
.quiz-tracker::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}
.quiz-progress-bar {
  position: absolute;
  top: 50%; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.3s var(--ease);
  width: 0%;
}
.quiz-tracker-step {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink3);
  position: relative; z-index: 3;
  transition: all 0.3s var(--ease);
}
.quiz-tracker-step.active {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal-dark);
  box-shadow: 0 0 0 5px rgba(56,183,179,0.15);
}
.quiz-tracker-step.completed {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Question */
.quiz-question-header { margin-bottom: 2rem; }
.quiz-question-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.quiz-question-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--ink);
}

/* Choice Cards */
.quiz-choices-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin-bottom: 2.5rem; }
.quiz-option-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.24s var(--ease);
}
.quiz-option-card:hover {
  border-color: var(--teal-mid);
  background: var(--teal-faint);
  transform: translateY(-1px);
}
.quiz-option-card.selected {
  border-color: var(--teal);
  background: var(--teal-light);
  box-shadow: 0 4px 16px rgba(56,183,179,0.15);
}
.quiz-option-text { font-size: 0.95rem; font-weight: 500; color: var(--ink2); line-height: 1.45; }
.quiz-option-card.selected .quiz-option-text { color: var(--ink); font-weight: 700; }
.quiz-option-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.quiz-option-card:hover .quiz-option-radio   { border-color: var(--teal-mid); }
.quiz-option-card.selected .quiz-option-radio { border-color: var(--teal); background: var(--teal); }
.quiz-option-card.selected .quiz-option-radio::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
}

/* Quiz Nav */
.quiz-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Quiz Form */
.quiz-form-group { margin-bottom: 1.5rem; text-align: left; }
.quiz-form-label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink2); margin-bottom: 0.5rem; }
.quiz-form-input {
  width: 100%;
  padding: 0.88rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  background: var(--bg);
  outline: none;
  transition: all 0.24s var(--ease);
}
.quiz-form-input:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(56,183,179,0.12);
}

/* Loading */
.quiz-loading-state {
  text-align: center;
  padding: 4rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.quiz-spinner {
  width: 60px; height: 60px;
  border: 3px solid var(--border);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s infinite linear;
}
.quiz-loading-text { font-size: 1.1rem; font-weight: 600; color: var(--ink2); animation: pulse 1.5s infinite ease-in-out; }

/* Skin Report */
.skin-report-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
  border-left: 6px solid var(--teal);
  box-shadow: var(--shadow-md);
}
.skin-report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1.5px dashed var(--border);
  padding-bottom: 1.5rem;
}
.skin-report-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink3); margin-bottom: 0.25rem; font-weight: 600; }
.skin-report-patient-name { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.skin-report-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.skin-report-section { margin-bottom: 1.5rem; }
.skin-report-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.skin-report-text { font-size: 0.92rem; color: var(--ink2); line-height: 1.68; }
.skin-report-bullet-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.skin-report-bullet-list li { font-size: 0.88rem; color: var(--ink2); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.55; }
.skin-report-bullet-list li::before { content: '✦'; color: var(--teal); font-weight: bold; }

@keyframes spin  { 0%       { transform: rotate(0deg); }   100% { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%  { opacity: 0.5; }              50%  { opacity: 1; } }

/* Quiz Mobile */
@media (max-width: 900px) {
  .quiz-container { padding: 2rem 1.5rem; margin: 1rem auto; border-radius: var(--radius); }
  .quiz-question-title { font-size: 1.7rem; }
  .quiz-tracker { margin-bottom: 2rem; }
  .quiz-tracker-step { width: 32px; height: 32px; font-size: 0.75rem; }
  .skin-report-box { padding: 1.75rem 1.25rem; }
  .skin-report-patient-name { font-size: 1.5rem; }
}

/* ── SOCIAL ICONS ───────────────────────────────────────────── */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; align-items: center; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 0.26s var(--ease);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  position: relative; overflow: hidden;
}
.social-icon::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  opacity: 0;
  transition: opacity 0.26s ease;
}
.social-icon:hover::before { opacity: 1; }
.social-icon:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 22px rgba(0,0,0,0.28); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.26s ease; z-index: 2; }
.social-icon:hover svg { transform: scale(1.12); }

.social-icon.facebook  { background: #1877F2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.youtube   { background: #FF0000; }
.social-icon.linkedin  { background: #0A66C2; }
.social-icon.justdial  { background: #FF6A00; }
.social-icon.practo    { background: #13B1A8; }

.social-icon.youtube.upcoming {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.32);
  cursor: not-allowed;
  box-shadow: none;
}
.social-icon.youtube.upcoming:hover { transform: none; box-shadow: none; }
.social-icon.youtube.upcoming::before { display: none; }
.social-upcoming-text { font-size: 0.68rem; color: rgba(255,255,255,0.42); letter-spacing: 0.05em; margin-left: 0.25rem; }

/* ── UTILITY: PEACH ACCENT DIVIDER ─────────────────────────── */
.gold-divider {
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--peach), var(--peach-dark));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ── HIGHLIGHT / CTA BANNER ─────────────────────────────────── */
.highlight-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.highlight-banner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: rgba(246,197,177,0.18);
  border-radius: 50%;
}
.highlight-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -20px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* ── POSTER BADGE (reusable) ────────────────────────────────── */
.poster-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--peach);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── TEAL BG SECTION WRAPPER ────────────────────────────────── */
.bg-teal-section {
  background: var(--bg2);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}
