/* ============================================================
   components.css — section styles
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .5s var(--ease), backdrop-filter .5s, box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(8, 20, 40, 0.85);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--navy-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__brandtxt { display: flex; flex-direction: column; line-height: 1.12; }
.nav__brandtxt b { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.nav__brandtxt em { font-style: normal; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.nav--ondark .nav__brandtxt b { color: #fff; }
.nav--ondark .nav__brandtxt em { color: var(--on-navy-soft); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav--ondark .nav__links a { color: var(--on-navy-soft); }
.nav--ondark .nav__links a:hover { color: #fff; }

.nav__right { display: flex; align-items: center; gap: 14px; }
.langtog {
  display: flex; align-items: center; gap: 7px; padding: 7px 12px;
  border-radius: 5px; border: 1px solid var(--hair-strong);
  background: var(--card); font-size: 12.5px; font-weight: 600; color: var(--ink-faint);
  transition: border-color .3s, background .3s, color .3s;
}
.langtog i { width: 1px; height: 12px; background: currentColor; opacity: .3; }
.langtog .on { color: var(--ink); }
.langtog:hover { border-color: var(--accent); }
.nav--ondark .langtog { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: var(--on-navy-soft); }
.nav--ondark .langtog .on { color: #fff; }
.nav__burger { display: none; background: none; border: 0; color: inherit; padding: 4px; }
.nav--ondark .nav__burger { color: #fff; }

.mobnav { position: fixed; inset: 0; z-index: 1000; background: rgba(8,20,40,.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.mobnav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: #ffffff; color: var(--ink); padding: 84px 30px 30px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-lg); animation: slideIn .4s var(--ease-out);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.mobnav__panel a { padding: 14px 0; font-size: 19px; font-family: var(--serif); border-bottom: 1px solid var(--hair); color: var(--ink) !important; transition: color .2s; }
.mobnav__panel a:hover { color: var(--accent-deep) !important; }
.mobnav__close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: var(--ink); }

/* ---------------- HERO ---------------- */
.hero {
  position: relative; background: var(--navy); color: var(--on-navy);
  min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  padding-top: 96px; padding-bottom: 132px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-glow--a { width: 660px; height: 660px; top: -220px; right: -140px;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%); opacity: .32; }
.hero-glow--b { width: 520px; height: 520px; bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(40,80,150,.22), transparent 68%); }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
  animation: gridScroll 16s linear infinite;
}
@keyframes gridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 72px 72px;
  }
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(6,12,26,.6));
}

.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-inner--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-copy--center { max-width: 940px; }
.hero-title { margin: 16px 0 0; font-size: clamp(38px, 5.4vw, 78px); }
.hero-title span { display: inline; }
.hero-sub { margin: 22px auto 0; max-width: 600px; color: var(--on-navy-soft); }
.hero-copy--left .hero-sub { margin-left: 0; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-inner--center .hero-cta { justify-content: center; }

.hero-stats {
  display: flex; gap: 0; margin-top: 40px; border-top: 1px solid var(--navy-line);
  padding-top: 24px; position: relative; z-index: 4;
}
.hero-inner--center .hero-stats { justify-content: center; }
.hero-stat { padding: 0 32px; position: relative; text-align: left; }
.hero-stat + .hero-stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--navy-line); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat b { display: block; font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 500; color: #fff; line-height: 1; }
.hero-stat span { display: block; margin-top: 8px; font-size: 13px; color: var(--on-navy-soft); max-width: 18ch; }

.hero-ecg { position: absolute; left: 0; width: 100%; height: 120px; z-index: 1; pointer-events: none; }
.hero-ecg--center { bottom: 64px; opacity: .42; }
.hero-ecg--bottom { bottom: 0; opacity: .55; }
.hero--cinematic .hero-ecg--center { bottom: 56px; height: 150px; opacity: .4; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--on-navy-soft);
}
.hero-scroll i { width: 1px; height: 38px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; top: -10px; left: 0; width: 1px; height: 10px; background: #fff; animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -10px; } 60%,100% { top: 38px; } }

/* editorial split */
.hero-inner--split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-left { text-align: left; }
.hero-copy--left { max-width: 560px; }
.hero-right { position: relative; }
.hero-portrait { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-navy); }
.hero-portrait__frame { position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--accent); border-radius: var(--r-lg); z-index: -1; opacity: .5; }
/* editorial media cluster */
.hero-media { position: relative; width: 100%; max-width: 470px; margin-left: auto; }
.hero-media__main { position: relative; }
.hero-portrait__shade { position: absolute; inset: auto 0 0 0; height: 46%; border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: linear-gradient(180deg, transparent, rgba(6,12,26,.55)); pointer-events: none; }

.hero-status {
  position: absolute; top: 16px; left: 16px; z-index: 4; display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px 9px 13px; border-radius: 999px; background: rgba(8,20,40,.52);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18);
  font-size: 12px; font-weight: 600; letter-spacing: .03em; color: #fff;
}
.hero-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: heroPulse 2.2s infinite; }
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 8px rgba(27,182,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,182,214,0); }
}

.hero-cred {
  position: absolute; left: -28px; bottom: 72px; z-index: 5; display: flex; align-items: center; gap: 13px;
  padding: 15px 19px; border-radius: var(--r-md); color: #fff; box-shadow: var(--shadow-navy);
}
.hero-cred span { display: flex; flex-direction: column; font-size: 14px; font-weight: 600; line-height: 1.25; }
.hero-cred em { font-style: normal; font-weight: 400; font-size: 11.5px; color: var(--on-navy-soft); margin-top: 2px; }
.hero-cred svg { color: var(--accent); flex-shrink: 0; }

.hero-congress {
  position: absolute; right: -30px; bottom: -28px; width: 236px; margin: 0; z-index: 6;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-navy);
  border: 1px solid var(--navy-3); background: var(--navy-2);
}
.hero-congress__img { aspect-ratio: 16/10; }
.hero-congress__cap { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.hero-congress__cap b { display: block; font-size: 12.5px; color: #fff; font-weight: 600; line-height: 1.2; }
.hero-congress__cap em { display: block; font-style: normal; font-size: 10.5px; color: var(--on-navy-soft); margin-top: 2px; }
.hero-congress__cap svg { color: var(--accent); flex-shrink: 0; }

/* structural rings */
.hero-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-54%); width: min(120vh, 1000px); height: min(120vh, 1000px); opacity: .9; z-index: 1; }
.hero-rings__spin { animation: spin 60s linear infinite; }
.hero-rings__spin2 { animation: spin 90s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero--structural .hero-grid-lines { opacity: .5; }

/* ---------------- SECTION HEADS ---------------- */
.sec-head { margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head--row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; }
.sec-head--row .lede { padding-bottom: 6px; }

/* ---------------- AFFILIATIONS ---------------- */
.affil { background: var(--card); border-bottom: 1px solid var(--hair); padding-block: 26px; }
.affil-inner { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.affil-label { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); flex-shrink: 0; max-width: 15ch; line-height: 1.5; }
.affil-list { display: flex; align-items: center; flex-wrap: wrap; flex: 1; row-gap: 8px; }
.affil-item { font-family: var(--serif); font-size: 16.5px; letter-spacing: .005em; color: var(--ink-soft); padding: 2px 24px; position: relative; white-space: nowrap; transition: color .3s; }
.affil-list .affil-item:first-child { padding-left: 0; }
.affil-item + .affil-item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 15px; background: var(--hair-strong); }
.affil-item:hover { color: var(--ink); }
@media (max-width: 720px) {
  .affil-inner { gap: 16px; }
  .affil-item { font-size: 15px; padding: 2px 16px; }
}

/* ---------------- TRUST ---------------- */
.trust { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  position: relative; background: var(--card); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 32px 28px 30px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.trust-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card__ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent-soft), #fff); color: var(--accent-deep);
  border: 1px solid var(--hair); margin-bottom: 22px;
}
.trust-card__t { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.25; margin: 0 0 10px; }
.trust-card__d { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.trust-card__no { position: absolute; top: 22px; right: 24px; font-family: var(--serif); font-size: 14px; color: var(--ink-faint); opacity: .5; }

/* ---------------- ABOUT ---------------- */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-portrait { aspect-ratio: 3/4; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; right: -26px; bottom: 38px; background: var(--card); border: 1px solid var(--hair);
  border-radius: var(--r-md); padding: 16px 20px 16px 16px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md); z-index: 10;
}
.about-badge__ring { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--accent); }
.about-badge b { display: block; font-size: 15px; font-weight: 600; }
.about-badge span { display: block; font-size: 11.5px; color: var(--ink-faint); max-width: 16ch; line-height: 1.3; }
.about-body .h2 { margin: 16px 0 0; max-width: 18ch; }
.about-text { margin-top: 26px; }
.about-text p { margin: 0 0 16px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.72; max-width: 56ch; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: var(--r-md); overflow: hidden; margin-top: 30px; }
.about-fact { background: var(--card); padding: 16px 20px; }
.about-fact span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 5px; }
.about-fact b { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.about-sign { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.about-sign span { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-soft); }

/* ---------------- TREATMENTS ---------------- */
.treat { overflow: hidden; }
.treat-glow { top: -260px; left: 30%; opacity: .4; }
.treat .sec-head { position: relative; z-index: 2; }
.treat-sub { color: var(--on-navy-soft); }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.treat-card {
  position: relative; padding: 30px 30px 28px; border-radius: var(--r-lg);
  background: linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--navy-line); overflow: hidden; cursor: pointer;
  transition: transform .5s var(--ease), border-color .5s, background .5s;
}
.treat-card:hover, .treat-card:focus-visible {
  transform: translateY(-4px); border-color: rgba(27,182,214,.5);
  background: linear-gradient(170deg, rgba(27,182,214,.12), rgba(255,255,255,.02));
  outline: none;
}
.treat-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.treat-card__ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(27,182,214,.10); border: 1px solid rgba(27,182,214,.25); color: var(--accent);
  transition: transform .5s var(--ease); }
.treat-card:hover .treat-card__ic { transform: scale(1.04); }
.treat-card__no { font-family: var(--serif); font-size: 15px; color: var(--on-navy-soft); opacity: .6; }
.treat-card__t { font-family: var(--serif); font-size: 25px; font-weight: 500; color: #fff; margin: 0; line-height: 1.1; }
.treat-card__s { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 8px 0 14px; }
.treat-card__d { font-size: 14.5px; color: var(--on-navy-soft); line-height: 1.6; margin: 0 0 22px; }
.treat-card__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; position: relative; z-index: 2; }
.treat-card__cta:hover { color: var(--accent); }
.treat-card__hit { position: absolute; inset: 0; z-index: 1; }
.treat-card__sheen { display: none; }

/* ---------------- CREDENTIALS ---------------- */
.creds { background: var(--paper); }
.creds-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.creds-intro { position: sticky; top: 104px; }
.creds-intro .h2 { margin: 16px 0 0; }
.creds-sub { margin-top: 18px; max-width: 40ch; }
.creds-seal { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 12px 18px 12px 14px;
  border-radius: 999px; border: 1px solid var(--hair); background: var(--card); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink-soft); }
.creds-seal__ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--accent); }

.creds-ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair); counter-reset: cred; }
.cred-row { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: start;
  padding: 26px 6px 26px 0; border-bottom: 1px solid var(--hair); transition: background .35s var(--ease), padding .35s var(--ease); }
.cred-row:hover { background: var(--card); padding-left: 18px; padding-right: 18px; box-shadow: var(--shadow-sm); border-radius: var(--r-md); border-color: transparent; }
.cred-row__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(150deg, var(--accent-soft), #fff); color: var(--accent-deep); border: 1px solid var(--hair); }
.cred-row__desig { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 7px; }
.cred-row__t { font-family: var(--serif); font-size: clamp(21px, 2.1vw, 26px); font-weight: 500; line-height: 1.12; margin: 0 0 8px; letter-spacing: -.01em; }
.cred-row__d { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; max-width: 48ch; }
.cred-row__no { font-family: var(--serif); font-size: 15px; color: var(--ink-faint); opacity: .5; padding-top: 4px; }

/* ---------------- ACTIVITY TIMELINE ---------------- */
.activity { overflow: hidden; }
.activity-glow { top: -200px; right: -120px; opacity: .4; }
.activity .sec-head, .activity .wrap > * { position: relative; z-index: 2; }
.activity-head { margin-bottom: 30px; align-items: start; }
.activity-sub { margin-top: 16px; color: var(--on-navy-soft); max-width: 48ch; }
.activity-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.activity-live { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .16em; color: var(--accent); }
.activity-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: heroPulse 2.2s infinite; }
.activity-stats { display: flex; flex-direction: column; gap: 14px; text-align: right; border-right: 2px solid var(--navy-line); padding-right: 18px; }
.activity-stat b { display: block; font-family: var(--serif); font-size: 24px; font-weight: 500; color: #fff; line-height: 1; }
.activity-stat span { display: block; font-size: 12px; color: var(--on-navy-soft); margin-top: 4px; }

.activity-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.activity-cat { padding: 9px 17px; border-radius: 999px; border: 1px solid var(--navy-line); background: rgba(255,255,255,.04);
  font-size: 13px; font-weight: 600; color: var(--on-navy-soft); transition: all .3s; }
.activity-cat:hover { border-color: rgba(255,255,255,.32); color: #fff; }
.activity-cat.on { background: var(--accent); color: #042530; border-color: var(--accent); }

.timeline { list-style: none; margin: 0; padding: 0; }
.tl-item { display: grid; grid-template-columns: 168px 1fr; gap: 0; position: relative; }
.tl-rail { position: relative; padding: 0 32px 36px 0; text-align: right; }
.tl-rail::after { content: ""; position: absolute; top: 8px; bottom: -8px; right: 0; width: 1px; background: var(--navy-line); }
.tl-item:last-child .tl-rail::after { display: none; }
.tl-date { display: block; font-family: var(--mono, ui-monospace, 'SF Mono', Menlo, monospace); font-size: 12px; letter-spacing: .03em; color: var(--on-navy-soft); padding-top: 6px; }
.tl-node { position: absolute; top: 4px; right: -16px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-2); border: 1px solid rgba(27,182,214,.4); color: var(--accent); z-index: 2; box-shadow: 0 0 0 5px var(--navy); }
.tl-card { display: grid; grid-template-columns: 168px 1fr; gap: 24px; align-items: stretch; margin: 0 0 28px 32px;
  background: linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); border: 1px solid var(--navy-line);
  border-radius: var(--r-lg); overflow: hidden; transition: transform .5s var(--ease), border-color .5s, background .5s; }
.tl-item:hover .tl-card { transform: translateX(5px); border-color: rgba(27,182,214,.4); background: linear-gradient(170deg, rgba(27,182,214,.10), rgba(255,255,255,.015)); }
.tl-thumb { margin: 0; min-height: 132px; }
.tl-body { padding: 22px 24px 22px 4px; display: flex; flex-direction: column; justify-content: center; }
.tl-type { display: inline-block; align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); padding: 5px 11px; border: 1px solid rgba(27,182,214,.3); border-radius: 999px; margin-bottom: 12px; }
.tl-title { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); font-weight: 500; color: #fff; line-height: 1.2; margin: 0 0 10px; }
.tl-place { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--on-navy-soft); }
.tl-place svg { color: var(--accent); }
.tl-desc { font-size: 14px; line-height: 1.55; color: var(--on-navy-soft); margin-top: 10px; margin-bottom: 0; }
.activity-note { display: inline-flex; align-items: center; gap: 9px; margin: 14px 0 0; font-size: 12.5px; color: var(--on-navy-faint); font-style: italic; }
.activity-note svg { color: var(--on-navy-soft); }

/* ---------------- FEED ---------------- */
.feed { background: var(--paper); }
.feed-head { margin-bottom: 34px; }
.feed-sub { margin-top: 16px; max-width: 46ch; }
.feed-follow { display: inline-flex; align-items: center; gap: 16px; padding: 14px 22px 14px 14px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--hair); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; align-self: end; }
.feed-follow:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feed-follow__ic { width: 46px; height: 46px; border-radius: 9px; display: grid; place-items: center; color: var(--on-navy);
  background: var(--navy); border: 1px solid var(--navy-3); }
.feed-follow__ic svg { color: var(--accent); }
.feed-follow__txt { display: flex; flex-direction: column; line-height: 1.3; }
.feed-follow__txt em { font-style: normal; font-size: 13px; color: var(--ink-faint); }
.feed-follow__txt b { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; }

.feed-cats { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.feed-cat { padding: 9px 18px; border-radius: 5px; border: 1px solid var(--hair-strong); background: var(--card);
  font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all .3s; }
.feed-cat:hover { border-color: var(--ink-faint); }
.feed-cat.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.feed-live { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--ink-faint); }
.feed-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-deep); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(224,36,94,.5); } 70% { box-shadow: 0 0 0 9px rgba(224,36,94,0); } 100% { box-shadow: 0 0 0 0 rgba(224,36,94,0); } }

.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.feed-tile { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.feed-tile--big { grid-column: span 2; grid-row: span 2; }
.feed-tile--tall { grid-row: span 2; }
.feed-tile--wide { grid-column: span 2; }
.feed-tile__img { position: absolute; inset: 0; }
.feed-tile__img.ph { align-items: stretch; }
.feed-tile__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,40,0) 38%, rgba(8,20,40,.82)); opacity: .85; transition: opacity .4s; }
.feed-tile__meta { position: absolute; inset: auto 0 0 0; padding: 18px; z-index: 2; transform: translateY(8px); opacity: 0; transition: transform .45s var(--ease), opacity .45s; }
.feed-tile:hover .feed-tile__meta { transform: none; opacity: 1; }
.feed-tile:hover .feed-tile__grad { opacity: 1; }
.feed-tile__tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.feed-tile__cap { margin: 0; font-size: 13.5px; color: #fff; line-height: 1.4; font-weight: 500; }
.feed-tile__ig { position: absolute; top: 14px; right: 14px; z-index: 2; color: #fff; opacity: .85; transition: transform .4s var(--ease); }
.feed-tile:hover .feed-tile__ig { transform: scale(1.08); }
.feed-tile::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); border-radius: inherit; z-index: 3; pointer-events: none; }
.feed-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s; }

/* ---------------- TESTIMONIALS ---------------- */
.testi { overflow: hidden; }
.testi-glow { top: 20%; right: -120px; opacity: .35; }
.testi-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.testi-head .h2 { margin-top: 16px; max-width: 14ch; }
.testi-stage { position: relative; }
.testi-quoteic { color: var(--accent); opacity: .25; margin-bottom: -10px; }
.testi-track { position: relative; min-height: 250px; }
.testi-card { position: absolute; inset: 0; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.testi-card.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi-stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 18px; }
.testi-q { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 28px); line-height: 1.45; color: #fff; margin: 0 0 26px; font-weight: 400; letter-spacing: -.01em; }
.testi-cap { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent), var(--accent-deep)); color: #042530; font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.testi-cap b { display: block; color: #fff; font-size: 15.5px; }
.testi-cap em { font-style: normal; color: var(--on-navy-soft); font-size: 13px; }
.testi-ctrl { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.testi-ctrl button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--navy-line); background: rgba(255,255,255,.04); color: #fff; display: grid; place-items: center; transition: all .3s; }
.testi-ctrl button:hover { background: var(--accent); color: #042530; border-color: var(--accent); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: rgba(255,255,255,.2); border: 0; transition: all .3s; }
.testi-dots button.on { background: var(--accent); width: 24px; border-radius: 6px; }

/* ---------------- BLOG ---------------- */
.blog { background: var(--paper); }
.blog-sub { margin-top: 16px; max-width: 42ch; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { grid-column: span 1; background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card--lead { grid-column: span 1; grid-row: span 2; }
.blog-card__img { aspect-ratio: 16/10; }
.blog-card--lead .blog-card__img { aspect-ratio: 4/5; }
.blog-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.blog-card__t { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.25; margin: 0; flex: 1; }
.blog-card--lead .blog-card__t { font-size: 27px; }
.blog-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--hair); font-size: 13px; }
.blog-card__read { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }

/* ---------------- CONTACT ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .h2 { margin: 16px 0 0; }
.contact-info .lede { margin-top: 14px; max-width: 40ch; }
.contact-rows { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 15px 16px; border-radius: var(--r-md); transition: background .3s; }
a.contact-row:hover { background: var(--card); }
.contact-row__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--card); border: 1px solid var(--hair); color: var(--accent-deep); flex-shrink: 0; }
.contact-row__txt { display: flex; flex-direction: column; line-height: 1.35; }
.contact-row__txt em { font-style: normal; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.contact-row__txt b { font-size: 15.5px; font-weight: 600; }
.contact-hours { display: flex; align-items: center; gap: 14px; margin-top: 14px; padding: 15px 16px; color: var(--ink-soft); }
.contact-hours svg { color: var(--accent-deep); }
.contact-hours em { font-style: normal; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); display: block; }
.contact-hours b { font-size: 15px; }
.contact-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.contact-map { margin-top: 26px; height: 200px; border-radius: var(--r-lg); border: 1px solid var(--hair); position: relative; }
.contact-map__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--accent-deep); }
.contact-map__pin::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); width: 34px; height: 10px; border-radius: 50%; background: rgba(12,23,38,.12); filter: blur(2px); }

.contact-card { background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-xl); padding: 38px 36px; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.cform { display: flex; flex-direction: column; gap: 16px; }
.cform__title { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 6px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 12.5px; font-weight: 600; letter-spacing: .03em; color: var(--ink-soft); }
.field input, .field textarea, .selectwrap select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--hair-strong);
  background: var(--paper); transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.field input:focus, .field textarea:focus, .selectwrap select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: #fff;
}
.selectwrap { position: relative; }
.selectwrap select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.selectchev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg); pointer-events: none; color: var(--ink-faint); }
.cform__send { justify-content: center; margin-top: 8px; }
.cform__fine { font-size: 11.5px; color: var(--ink-faint); text-align: center; margin: 4px 0 0; line-height: 1.5; }
.cform-done { text-align: center; padding: 40px 10px; }
.cform-done__ic { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: var(--accent-soft); color: var(--accent-deep); }

/* ---------------- STICKY ---------------- */
.sticky { position: fixed; right: 22px; bottom: 22px; z-index: 55; display: grid; grid-template-columns: auto; gap: 12px; justify-items: stretch;
  opacity: 0; transform: translateY(20px) scale(.95); pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.sticky--in { opacity: 1; transform: none; pointer-events: auto; }
.sticky__wa, .sticky__bk, .sticky__top, .sticky__break { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 6px; font-size: 14.5px; font-weight: 600; box-shadow: var(--shadow-lg); transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.sticky__wa { background: #1f9d52; color: #fff; }
.sticky__bk { background: var(--ink); color: #fff; }
.sticky__top { background: var(--navy); color: var(--accent); border: 1px solid rgba(27, 182, 214, 0.25); text-decoration: none; justify-self: end; }
.sticky__break { background: #d97706; color: #fff; text-decoration: none; }
.sticky__wa:hover, .sticky__bk:hover, .sticky__top:hover, .sticky__break:hover { transform: translateY(-2px); }
.sticky__top:hover { background: var(--accent); color: #042733; }
.sticky__break:hover { background: #b45309; }



/* ---------------- FOOTER ---------------- */
.footer { padding-block: 70px 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand b { display: block; font-size: 17px; color: #fff; }
.footer-brand em { font-style: normal; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-soft); margin-top: 4px; display: block; max-width: 24ch; }
.footer-nav, .footer-contact, .footer-social { display: flex; flex-direction: column; gap: 11px; }
.footer-nav__h { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.footer-nav a, .footer-contact a, .footer-contact span { font-size: 14px; color: var(--on-navy-soft); transition: color .25s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-social__row { display: flex; gap: 10px; }
.footer-soc { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--navy-line); color: var(--on-navy-soft); transition: all .3s; }
.footer-soc:hover { background: var(--accent); color: #042530; border-color: var(--accent); transform: translateY(-3px); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; font-size: 12.5px; color: var(--on-navy-soft); }
.footer-disc { max-width: 50ch; text-align: right; opacity: .8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__book { display: none; }
  .hero-inner--split { grid-template-columns: 1fr; gap: 64px; }
  .hero-inner--split .hero-media { order: -1; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .hero-congress { right: -14px; }
  .hero-cred { left: -14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-body .h2 { max-width: none; }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-head--row { grid-template-columns: 1fr; gap: 18px; }
  .creds-grid { grid-template-columns: 1fr; gap: 36px; }
  .creds-intro { position: static; }
  .creds-sub { max-width: none; }
  .activity-head { display: grid; grid-template-columns: 1fr; }
  .activity-aside { flex-direction: row; align-items: center; justify-content: space-between; }
  .activity-stats { flex-direction: row; gap: 22px; border-right: 0; padding-right: 0; text-align: left; }
  .activity-stat span { max-width: 14ch; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .feed-tile--big { grid-column: span 2; }
  .feed-tile--wide { grid-column: span 2; }
  .feed-tile--tall { grid-row: span 1; }
  .testi-wrap { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--lead { grid-row: span 1; }
  .blog-card--lead .blog-card__img { aspect-ratio: 16/10; }
  .blog-card--lead .blog-card__t { font-size: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-badge { right: 12px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .hero-stats { flex-wrap: wrap; gap: 20px 0; }
  .hero-portrait__frame { display: none; }
  .hero-media__main { display: flex; flex-direction: column; }
  .hero-cred, .hero-congress { position: static; left: auto; right: auto; bottom: auto; }
  .hero-cred { margin-top: 16px; align-self: flex-start; }
  .hero-congress { width: 100%; margin-top: 16px; }
  .hero-stat { padding: 0 20px 0 0; }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-inner--center .hero-stats { justify-content: flex-start; }
  .trust-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .cred-row { grid-template-columns: auto 1fr; }
  .cred-row__no { display: none; }
  .activity-aside { flex-direction: column; align-items: flex-start; gap: 14px; }
  .activity-stats { flex-wrap: wrap; gap: 16px 22px; }
  .tl-item { grid-template-columns: 96px 1fr; }
  .tl-rail { padding-right: 22px; }
  .tl-node { right: -16px; }
  .tl-card { grid-template-columns: 1fr; margin-left: 22px; }
  .tl-thumb { min-height: auto; aspect-ratio: 16/9; }
  .tl-body { padding: 20px 22px; }
  .tl-date { font-size: 11px; }
  .feed-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .feed-tile--big, .feed-tile--wide { grid-column: span 1; grid-row: span 1; }
  .feed-head { display: block; }
  .feed-follow { margin-top: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .footer-disc { text-align: left; }
  .contact-card { padding: 28px 22px; }
  .sticky { right: 14px; bottom: 14px; }
  .sticky__wa span, .sticky__bk span, .sticky__top span, .sticky__break span { display: none; }
  .sticky__wa, .sticky__bk, .sticky__top, .sticky__break { padding: 15px; justify-self: stretch; }
  .about-badge {
    right: 12px;
    bottom: 24px;
    padding: 12px 16px;
  }
  .about-badge__ring {
    width: 38px;
    height: 38px;
  }
  .about-badge b {
    font-size: 13.5px;
  }
  .about-badge span {
    font-size: 11px;
    max-width: 14ch;
  }
}

/* ---------------- DROPDOWN & MOBNAV SUBMENU ---------------- */
.nav__dropdown {
  position: relative;
  display: inline-block;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--card);
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 100;
}
.nav__dropdown-menu a {
  display: block !important;
  padding: 11px 22px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  text-decoration: none !important;
  transition: background .2s, color .2s !important;
  border-bottom: none !important;
}
.nav__dropdown-menu a::after {
  display: none !important;
}
.nav__dropdown-menu a:hover {
  background: var(--paper) !important;
  color: var(--accent-deep) !important;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}
.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* For nav on navy backdrop (nav--ondark) */
.nav--ondark .nav__dropdown-menu {
  background: var(--navy-2);
  border-color: var(--navy-line);
  box-shadow: var(--shadow-navy);
}
.nav--ondark .nav__dropdown-menu a {
  color: var(--on-navy-soft) !important;
}
.nav--ondark .nav__dropdown-menu a:hover {
  background: var(--navy-3) !important;
  color: #fff !important;
}

/* Mobile sublinks */
.mobnav__subheading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-faint);
  margin-top: 16px;
  padding-left: 12px;
  padding-bottom: 6px;
  font-weight: 600;
}
.mobnav__sublinks {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--hair-strong);
  margin-left: 12px;
  margin-bottom: 12px;
}
.mobnav__sublinks a {
  font-size: 14.5px !important;
  padding: 8px 12px !important;
  border-bottom: none !important;
  font-family: inherit !important;
  font-weight: 500 !important;
  color: var(--ink-soft);
}
.mobnav__sublinks a:hover {
  color: var(--accent-deep);
}

.mobnav__social .footer-soc {
  background: var(--paper-2);
  border-color: var(--hair-strong);
  color: var(--ink-soft);
}
.mobnav__social .footer-soc:hover {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}
.mobnav__lang-btn {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--ink-faint) !important;
  border: 1px solid transparent;
  transition: all .2s;
}
.mobnav__lang-btn.active {
  background: var(--paper-2);
  color: var(--accent-deep) !important;
  border-color: var(--hair-strong);
}
.mobnav__lang-btn:hover {
  color: var(--accent-deep) !important;
}


/* FAQ Accordion Component */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; padding: 22px 4px; text-align: left; font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); cursor: pointer; }
.faq-ic { display: grid; place-items: center; color: var(--accent-deep); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(90deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p { overflow: hidden; margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 64ch;
  padding-right: 30px; opacity: 0; transition: opacity .4s var(--ease) .05s; }
.faq-item.open .faq-a > p { opacity: 1; padding-bottom: 22px; }

/* ---------------- CENTRALIZED MODALS (WHATSAPP & APPOINTMENT) ---------------- */
.cmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999; /* Above nav and mobile menus */
  background: rgba(8, 20, 40, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 20px;
}
.cmodal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cmodal-card {
  background: var(--card);
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: 90vh;
}
.cmodal-overlay.open .cmodal-card {
  transform: scale(1) translateY(0);
}
.cmodal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 0;
  color: var(--ink-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  z-index: 10;
}
.cmodal-close:hover {
  background: var(--paper-2);
  color: var(--ink);
}
.cmodal-header {
  padding: 32px 36px 16px;
}
.cmodal-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.cmodal-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.cmodal-body {
  padding: 16px 36px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cmodal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cmodal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .cmodal-grid {
    grid-template-columns: 1fr;
  }
  .cmodal-header {
    padding: 24px 24px 12px;
  }
  .cmodal-body {
    padding: 12px 24px 24px;
  }
}
.cmodal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cmodal-field span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.cmodal-field span em {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-faint);
  margin-left: 4px;
}
.cmodal-field input,
.cmodal-field textarea,
.cmodal-selectwrap select {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hair-strong);
  background: var(--paper);
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.cmodal-field input:focus,
.cmodal-field textarea:focus,
.cmodal-selectwrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: #fff;
}
.cmodal-selectwrap {
  position: relative;
}
.cmodal-selectwrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}
.cmodal-selectchev {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
  color: var(--ink-faint);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmodal-submit {
  margin-top: 10px;
  justify-content: center;
  width: 100%;
}
.cmodal-fine {
  font-size: 11.5px;
  color: var(--ink-faint);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* ---------------- ACADEMIC PROFILE & PUBLICATIONS ---------------- */
.academic-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  margin-top: 44px;
  align-items: start;
}
.academic-card {
  background: var(--card);
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.academic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--hair-strong);
}
.academic-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 14px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric-val {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--accent-deep);
  line-height: 1;
}
.metric-lbl {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.academic-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ac-link {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: all 0.3s var(--ease);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.ac-link:hover {
  border-color: var(--accent);
  background: var(--card);
  color: var(--accent-deep);
}
.ac-link b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.ac-link:hover b {
  color: var(--accent-deep);
}
.ac-link span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.ac-link svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  color: var(--ink-soft);
}
.ac-link:hover svg {
  transform: translateY(-50%) translateX(3px);
  opacity: 1;
  color: var(--accent-deep);
}
.ac-timeline {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0 0 28px;
  border-left: 2px solid var(--hair-strong);
}
.ac-timeline li {
  position: relative;
  margin-bottom: 24px;
}
.ac-timeline li::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--card);
}
.ac-timeline__date {
  display: block;
  font-family: var(--mono, ui-monospace, 'SF Mono', Menlo, monospace);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 4px;
}
.ac-timeline b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.ac-timeline span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.ac-section-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 28px 0 16px;
}
.ac-experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ac-exp-item {
  position: relative;
  padding-left: 14px;
  border-left: 1px solid var(--hair-strong);
}
.ac-exp-item b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.ac-exp-item span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.ac-pubs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ac-pubs li {
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--hair);
}
.ac-pubs li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ac-pub__meta {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ac-pubs b {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  display: block;
}
.cv-extra-card {
  margin-bottom: 0;
}
.cv-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.ac-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.ac-list li {
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}
.ac-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .academic-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 680px) {
  .cv-extra-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .academic-card {
    padding: 28px 20px;
  }
}

/* ---------------- ECG DIVIDER ---------------- */
.ecg-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 40px;
  pointer-events: none;
  opacity: 0.65;
}
.ecg-divider svg {
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

/* ---------------- SHORT BREAK MODAL & CARD ---------------- */
.break-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.break-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.break-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 26, 0.85);
  backdrop-filter: blur(8px);
}
.break-modal-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s var(--ease);
}
.break-modal--open .break-modal-container {
  transform: scale(1) translateY(0);
}
.break-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.break-modal-close:hover {
  opacity: 1;
  color: var(--accent);
}

.short-break-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s var(--ease);
}
.short-break-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
.short-break-slides-wrapper {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}
.short-break-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}
.short-break-slide--text-only {
  grid-template-columns: 1fr;
}
.short-break-slide--text-only .short-break-content {
  align-items: center;
  text-align: center;
}
.short-break-content {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}
.short-break-tag {
  color: var(--accent);
  margin-bottom: 6px;
}
.short-break-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-navy-soft);
  margin-bottom: 8px;
  display: block;
}
.short-break-title {
  margin-block: 0 12px;
  font-size: 23px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}
.short-break-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-navy-soft);
  margin-block: 0 26px;
}
.short-break-actions {
  display: flex;
  gap: 12px;
}
.short-break-btn {
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
}
.short-break-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #042733;
}
.short-break-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Slider Controls */
.sb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(4, 12, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.sb-arrow:hover {
  background: var(--accent);
  color: #042733;
  border-color: var(--accent);
}
.sb-arrow--prev {
  left: 16px;
}
.sb-arrow--next {
  right: 16px;
}
.sb-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.sb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.sb-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .break-modal-close {
    top: 10px;
    right: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
  }
  .break-modal-container {
    width: 95%;
  }
  .short-break-card {
    max-height: 90vh;
    overflow-y: auto;
  }
  .short-break-slide {
    grid-template-columns: 1fr;
  }
  .short-break-media {
    height: 250px;
    min-height: 250px;
    order: -1;
  }
  .short-break-content {
    padding: 30px 20px 48px;
    align-items: center;
    text-align: center;
  }
  .short-break-desc {
    margin-block: 0 18px;
  }
  .short-break-actions {
    justify-content: center;
  }
  .sb-arrow {
    width: 32px;
    height: 32px;
    top: 125px; /* Centered in the 250px high media area */
  }
  .sb-arrow--prev {
    left: 8px;
  }
  .sb-arrow--next {
    right: 8px;
  }
  .sb-dots {
    bottom: auto;
    top: 226px; /* Near bottom of the 250px media area */
  }
}

/* Short Break Blog CTA Section */
.short-break-blog-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(27, 182, 214, 0.08); /* 8% accent soft tint */
  border-top: 1px solid rgba(27, 182, 214, 0.15);
  padding: 16px 48px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.short-break-blog-cta:hover {
  background: rgba(27, 182, 214, 0.14);
  border-top-color: rgba(27, 182, 214, 0.3);
}
.sb-blog-cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.sb-blog-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(27, 182, 214, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.sb-blog-cta-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.sb-blog-cta-text {
  font-size: 13px;
  color: var(--on-navy-soft);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50ch;
}
.sb-blog-cta-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  margin-left: 20px;
}
.short-break-blog-cta:hover .sb-blog-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .short-break-blog-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }
  .sb-blog-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sb-blog-cta-text {
    white-space: normal;
    max-width: 100%;
  }
  .sb-blog-cta-arrow {
    margin-left: 0;
    align-self: flex-end;
  }
}

/* -----------------------------------------------------------
   WHATSAPP & APPOINTMENT MODALS (PREMIUM)
   ----------------------------------------------------------- */

/* --- Common Modal Sizing --- */
.wa-modal .break-modal-container {
  max-width: 420px;
}
.book-modal .break-modal-container {
  max-width: 480px;
}

/* --- WhatsApp Chat Card Styles --- */
.wa-chat-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-navy);
  display: flex;
  flex-direction: column;
}
.wa-chat-header {
  background: var(--navy-3);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wa-chat-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27, 182, 214, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  border: 1px solid rgba(27, 182, 214, 0.3);
}
.wa-chat-doctor-svg {
  width: 24px;
  height: 24px;
}
.wa-chat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.wa-chat-name {
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  margin: 0;
}
.wa-chat-status {
  color: var(--on-navy-soft);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.wa-chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: heroPulse 2s infinite;
}
.wa-chat-body {
  padding: 24px 20px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 16px 16px;
  background-color: var(--navy);
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.wa-chat-bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.wa-chat-bubble--in {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--on-navy);
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.wa-chat-bubble-text {
  margin-bottom: 4px;
}
.wa-chat-bubble-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: var(--on-navy-faint);
}
.wa-chat-footer {
  background: var(--navy-3);
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
  align-items: center;
}
.wa-chat-footer textarea {
  flex: 1;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14.5px;
  outline: none;
  resize: none;
  font-family: inherit;
  transition: border-color 0.2s, background-color 0.2s;
  height: 42px;
  line-height: 1.4;
}
.wa-chat-footer textarea:focus {
  border-color: #25d366;
  background: var(--navy-2);
}
.wa-chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  flex-shrink: 0;
}
.wa-chat-send-btn:hover {
  background: #1f9d52;
  transform: scale(1.05);
}

/* --- Appointment Card Styles --- */
.book-modal-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: var(--shadow-navy);
  display: flex;
  flex-direction: column;
}
.book-modal-header {
  margin-bottom: 24px;
}
.book-modal-title {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}
.book-modal-subtitle {
  font-size: 13.5px;
  color: var(--on-navy-soft);
  margin: 0;
  line-height: 1.5;
}
.book-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-navy-soft);
}
.modal-field input[type="text"],
.modal-field input[type="tel"],
.modal-field select,
.modal-field textarea {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14.5px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, background-color 0.2s;
}
.modal-field input[type="text"]:focus,
.modal-field input[type="tel"]:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--accent);
  background: var(--navy-3);
}
.modal-selectwrap {
  position: relative;
}
.modal-selectwrap select {
  width: 100%;
  appearance: none;
  padding-right: 36px;
  background: var(--navy);
}
.modal-selectchev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
  color: var(--on-navy-soft);
}
.modal-form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 8px;
  font-size: 15px;
}
.book-modal-success {
  text-align: center;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(27, 182, 214, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.book-success-title {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px;
}
.book-success-text {
  font-size: 14.5px;
  color: var(--on-navy-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}

@media (max-width: 500px) {
  .book-modal-card {
    padding: 24px 20px;
  }
  .book-modal-title {
    font-size: 21px;
  }
}


