:root {
  --teal: #087f78;
  --teal-2: #0aa397;
  --teal-3: #d8f3ee;
  --deep: #073d3f;
  --deep-2: #0d292c;
  --ink: #173436;
  --muted: #617476;
  --coral: #ff7a66;
  --coral-soft: #ffe4de;
  --cream: #f7f4ed;
  --paper: #fffdf9;
  --line: rgba(16, 70, 72, .13);
  --shadow: 0 24px 70px rgba(15, 67, 68, .12);
  --shadow-soft: 0 15px 40px rgba(15, 67, 68, .08);
  --display: "Noto Kufi Arabic", "Alexandria", sans-serif;
  --body: "Alexandria", system-ui, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.8; }
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 10000; top: 8px; right: 8px; padding: .6rem 1rem; border-radius: 10px; color: #fff; background: var(--deep); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(255, 122, 102, .42); outline-offset: 3px; }

.demo-bar { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 1.4rem; padding: .35rem 1rem; color: #e6f7f4; background: var(--deep-2); font-size: .66rem; }
.demo-bar a { display: inline-flex; align-items: center; gap: .35rem; color: #b9ede5; font-weight: 700; }
.demo-bar a:hover { color: #fff; }

.site-header { position: sticky; z-index: 1000; top: 0; color: var(--ink); background: rgba(255, 253, 249, .83); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .3s, border-color .3s, background .3s; }
.site-header.scrolled { border-color: var(--line); background: rgba(255, 253, 249, .95); box-shadow: 0 12px 35px rgba(21, 61, 62, .07); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; flex: none; }
.brand img { width: 48px; height: 48px; filter: drop-shadow(0 8px 16px rgba(8,127,120,.18)); }
.brand span { display: grid; line-height: 1.45; }
.brand strong { font-family: var(--display); font-size: .8rem; }
.brand small { color: var(--muted); font-size: .56rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.desktop-nav a { position: relative; color: #425c5d; font-size: .72rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -.65rem; height: 2px; border-radius: 99px; background: var(--coral); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.mini-contact { display: grid; line-height: 1.35; text-align: left; }
.mini-contact small { color: var(--muted); font-size: .53rem; }
.mini-contact strong { color: var(--deep); font-size: .65rem; }
.menu-toggle { width: 45px; height: 45px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #fff; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 9px; background: currentColor; transition: transform .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: fixed; z-index: 999; top: 116px; inset-inline: 18px; display: none; padding: .65rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,249,.98); box-shadow: var(--shadow); }
.mobile-nav.open { display: grid; animation: menuIn .25s ease both; }
.mobile-nav a { padding: .8rem; border-bottom: 1px solid var(--line); font-size: .8rem; }
.mobile-nav .button { margin-top: .65rem; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } }

.button { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .75rem 1.15rem; border: 0; border-radius: 16px; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s; font-size: .74rem; font-weight: 800; }
.button svg { width: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--teal), #07938a); box-shadow: 0 14px 30px rgba(8,127,120,.22); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(8,127,120,.3); }
.button-quiet { color: var(--deep); background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.button-small { min-height: 42px; padding: .65rem 1rem; border-radius: 14px; font-size: .67rem; }
.button-large { min-height: 55px; padding: .9rem 1.35rem; border-radius: 18px; }
.button-block { width: 100%; }
.text-button { display: inline-flex; align-items: center; gap: .5rem; padding: 0; border: 0; color: var(--teal); background: none; cursor: pointer; font-size: .73rem; font-weight: 800; }

.hero { position: relative; height: var(--hero-viewport-height, calc(100svh - 117px)); min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; background: radial-gradient(circle at 72% 20%, rgba(255,122,102,.13), transparent 26%), radial-gradient(circle at 12% 40%, rgba(8,127,120,.12), transparent 30%), linear-gradient(145deg, #fbfaf5 0%, #f4f8f4 52%, #eaf5f2 100%); }
.hero-grid-pattern { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(8,127,120,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(8,127,120,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to left, #000, transparent 80%); }
.hero-orbit { position: absolute; border: 1px solid rgba(8,127,120,.1); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 560px; aspect-ratio: 1; top: 3%; left: -280px; }
.orbit-two { width: 390px; aspect-ratio: 1; top: 19%; left: -170px; border-style: dashed; animation: rotate 45s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-grid { position: relative; z-index: 2; height: 100%; min-height: 0; display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); align-items: center; gap: clamp(2rem, 5vw, 5.5rem); padding-block: clamp(2rem, 5vh, 4.5rem); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: .6rem; color: var(--teal); font-size: .68rem; font-weight: 800; }
.eyebrow i { width: 28px; height: 2px; border-radius: 99px; background: var(--coral); }
.hero h1, .section-heading h2, .navigator-intro h2, .consultation-copy h2, .doctor-copy h2, .faq-intro h2, .booking-copy h2 { margin: 1rem 0; font-family: var(--display); font-size: clamp(2.85rem, 5.4vw, 5.45rem); line-height: 1.23; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(2.7rem, 4.5vw, 3.9rem); }
.hero h1 em, .section-heading h2 em, .navigator-intro h2 em, .consultation-copy h2 em, .doctor-copy h2 em, .faq-intro h2 em, .booking-copy h2 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 610px; margin: 1.25rem 0 0; color: #536f70; font-size: clamp(.98rem, 1.4vw, 1.14rem); line-height: 2; }
.hero-actions { position: relative; z-index: 20; display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-promise { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; margin: 1.5rem 0 0; padding: 0; color: #456263; list-style: none; font-size: .66rem; }
.hero-promise li { display: inline-flex; align-items: center; gap: .38rem; }
.hero-promise svg { width: 17px; color: var(--teal); }
.hero-visual { position: relative; height: clamp(500px, calc(100svh - 260px), 620px); min-height: 0; isolation: isolate; }
.portrait-halo { position: absolute; z-index: -2; inset: 5% 4% 7%; border-radius: 48% 48% 28% 28%; background: linear-gradient(165deg, rgba(255,255,255,.74), rgba(216,243,238,.76)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 40px 100px rgba(13,93,90,.14); transform: rotate(-3deg); }
.portrait-halo::before { content: ""; position: absolute; inset: 9%; border: 1px dashed rgba(8,127,120,.16); border-radius: inherit; }
.portrait-stage { position: absolute; inset: 0 6% 0 3%; overflow: hidden; border-radius: 48% 48% 25% 25%; }
.portrait-stage::after { content: ""; position: absolute; inset: auto 8% 3%; height: 16%; background: radial-gradient(ellipse, rgba(3,62,61,.25), transparent 65%); filter: blur(18px); }
.portrait-stage img { position: absolute; z-index: 2; bottom: -14%; left: 50%; width: min(96%, 610px); height: 112%; object-fit: contain; object-position: center bottom; transform: translateX(-50%); filter: drop-shadow(0 25px 35px rgba(17,63,62,.18)); }
.portrait-label { position: absolute; z-index: 4; bottom: 5%; left: 50%; min-width: 240px; display: grid; padding: .85rem 1.2rem; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; color: #fff; background: rgba(7,61,63,.86); backdrop-filter: blur(12px); text-align: center; transform: translateX(-50%); box-shadow: 0 15px 35px rgba(7,61,63,.2); }
.portrait-label b { font-family: var(--display); font-size: .82rem; }
.portrait-label small { color: #ccebe6; font-size: .55rem; }
.floating-card, .motion-score { position: absolute; z-index: 5; display: flex; align-items: center; gap: .65rem; padding: .75rem .85rem; border: 1px solid rgba(8,127,120,.12); border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.floating-card p, .motion-score p { display: grid; margin: 0; line-height: 1.4; }
.floating-card small, .motion-score small { color: var(--muted); font-size: .5rem; }
.floating-card strong, .motion-score strong { color: var(--deep); font-size: .61rem; }
.floating-icon { width: 38px; height: 38px; display: grid; flex: none; place-items: center; border-radius: 13px; color: var(--teal); background: var(--teal-3); }
.floating-card-one { top: 21%; right: -2%; animation: float 5s ease-in-out infinite; }
.floating-card-two { bottom: 22%; left: -4%; animation: float 6s 1s ease-in-out infinite; }
.pulse-dot { width: 11px; height: 11px; border: 3px solid #fff; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px var(--coral-soft); }
.motion-score { top: 8%; left: 4%; }
.motion-score > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-weight: 800; font-size: .62rem; }
@keyframes float { 50% { transform: translateY(-10px); } }
.hero-utility { position: relative; z-index: 4; min-height: 68px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(8,127,120,.11); border-bottom: 0; border-radius: 24px 24px 0 0; background: rgba(255,255,255,.66); backdrop-filter: blur(14px); box-shadow: 0 -10px 40px rgba(17,72,71,.05); }
.hero-utility > a, .hero-utility > span { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border-inline-end: 1px solid var(--line); }
.hero-utility > :last-child { border-inline-end: 0; }
.hero-utility svg { width: 22px; flex: none; color: var(--teal); }
.hero-utility span span, .hero-utility a span { display: grid; line-height: 1.45; }
.hero-utility small { color: var(--muted); font-size: .49rem; }
.hero-utility strong { font-size: .6rem; }
.hero-utility .urgent-note svg { color: var(--coral); }

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.6rem; }
.section-heading > div { max-width: 750px; }
.section-heading h2, .navigator-intro h2, .consultation-copy h2, .doctor-copy h2, .faq-intro h2, .booking-copy h2 { margin: .75rem 0 0; font-size: clamp(2rem, 4vw, 3.8rem); }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: .82rem; }

.specialties { background: var(--paper); }
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.specialty-card { position: relative; min-height: 340px; display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; padding: 1.5rem; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .3s, border-color .3s, box-shadow .3s; }
.specialty-card::after { content: ""; position: absolute; width: 150px; height: 150px; bottom: -90px; left: -70px; border-radius: 50%; background: var(--teal-3); transition: transform .35s; }
.specialty-card:hover { transform: translateY(-7px); border-color: rgba(8,127,120,.26); box-shadow: var(--shadow); }
.specialty-card:hover::after { transform: scale(1.4); }
.specialty-card > svg { width: 54px; height: 54px; margin-top: 2.6rem; padding: .8rem; border-radius: 18px; color: var(--teal); background: var(--teal-3); stroke-width: 1.4; }
.specialty-card h3 { margin: 1.15rem 0 .6rem; font-family: var(--display); font-size: .96rem; }
.specialty-card p { margin: 0; color: var(--muted); font-size: .72rem; }
.specialty-card a { position: relative; z-index: 2; display: inline-flex; gap: .4rem; margin-top: auto; color: var(--teal); font-size: .68rem; font-weight: 800; }
.card-number { position: absolute; top: 1.2rem; left: 1.2rem; color: rgba(8,127,120,.25); font-size: .7rem; font-weight: 800; }
.specialty-featured { color: #fff; background: linear-gradient(145deg, var(--deep), #076f6a); }
.specialty-featured::after { background: rgba(255,255,255,.08); }
.specialty-featured > svg { color: #fff; background: rgba(255,255,255,.12); }
.specialty-featured p { color: #c5e0dc; }
.specialty-featured a { color: #fff; }
.specialty-featured .card-number { color: rgba(255,255,255,.35); }

.navigator-section { overflow: hidden; background: var(--cream); }
.navigator-section::before { content: ""; position: absolute; width: 500px; aspect-ratio: 1; top: -310px; right: -190px; border: 1px solid rgba(8,127,120,.09); border-radius: 50%; box-shadow: 0 0 0 55px rgba(8,127,120,.025), 0 0 0 110px rgba(8,127,120,.02); }
.navigator-shell { display: grid; grid-template-columns: .74fr 1.26fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.navigator-intro p { color: var(--muted); font-size: .83rem; }
.medical-disclaimer { display: flex; gap: .75rem; margin-top: 1.4rem; padding: 1rem; border: 1px solid rgba(255,122,102,.25); border-radius: 18px; background: rgba(255,255,255,.65); }
.medical-disclaimer svg { flex: none; color: var(--coral); }
.medical-disclaimer p { margin: 0; font-size: .67rem; }
.navigator-card { overflow: hidden; border: 1px solid rgba(8,127,120,.13); border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.navigator-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; padding: .55rem; border-bottom: 1px solid var(--line); background: #f5faf8; }
.navigator-tabs button { padding: .8rem .45rem; border: 0; border-radius: 14px; color: var(--muted); background: transparent; cursor: pointer; font-size: .66rem; font-weight: 700; }
.navigator-tabs button.active { color: #fff; background: var(--teal); box-shadow: 0 9px 20px rgba(8,127,120,.22); }
.navigator-result { min-height: 270px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.25rem; padding: 2.1rem; }
.result-icon { width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid rgba(8,127,120,.12); border-radius: 28px; color: var(--teal); background: linear-gradient(145deg, var(--teal-3), #fff); }
.result-icon svg { width: 48px; height: 48px; stroke-width: 1.3; }
.navigator-result small { color: var(--coral); font-size: .6rem; font-weight: 800; }
.navigator-result h3 { margin: .55rem 0; font-family: var(--display); font-size: 1.1rem; line-height: 1.65; }
.navigator-result p { margin: 0; color: var(--muted); font-size: .75rem; }
.navigator-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.35rem; border-top: 1px solid var(--line); background: #fbfcfa; }
.navigator-footer > span { max-width: 520px; color: var(--muted); font-size: .58rem; }

.consultation { background: #fff; }
.consultation-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.consultation-media { position: relative; margin: 0; }
.consultation-media::before { content: ""; position: absolute; inset: 9% -5% -6% 9%; z-index: -1; border-radius: 34px; background: var(--teal-3); }
.consultation-media img { width: 100%; display: block; aspect-ratio: 16/11; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.consultation-media figcaption { position: absolute; bottom: 1rem; right: 1rem; left: 1rem; display: grid; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; color: #fff; background: rgba(7,61,63,.78); backdrop-filter: blur(14px); }
.consultation-media figcaption span { color: #aee6de; font-size: .57rem; }
.consultation-media figcaption strong { font-size: .7rem; }
.consultation-copy > p { color: var(--muted); font-size: .81rem; }
.journey-list { display: grid; gap: .8rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.journey-list li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.journey-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; color: var(--teal); background: var(--teal-3); font-size: .58rem; font-weight: 800; }
.journey-list h3 { margin: 0; font-size: .76rem; }
.journey-list p { margin: .2rem 0 0; color: var(--muted); font-size: .65rem; }

.doctor-section { overflow: hidden; color: #fff; background: linear-gradient(140deg, var(--deep-2), var(--deep) 68%, #075955); }
.doctor-section::before { content: ""; position: absolute; width: 620px; aspect-ratio: 1; top: -280px; left: -250px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.doctor-grid { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.doctor-copy .section-kicker { color: #89dbd1; }
.doctor-copy h2 em { color: #ffad9f; }
.doctor-lead { color: #bdd2d0; font-size: .83rem; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.doctor-tags span { padding: .42rem .72rem; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: #d5e8e5; background: rgba(255,255,255,.05); font-size: .58rem; }
.doctor-copy blockquote { margin: 1.7rem 0 0; padding: 1.2rem; border-right: 3px solid var(--coral); border-radius: 18px 0 0 18px; color: #eff9f7; background: rgba(255,255,255,.055); font-family: var(--display); font-size: .8rem; line-height: 1.8; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.principles-grid article { min-height: 210px; padding: 1.35rem; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); transition: background .25s, transform .25s; }
.principles-grid article:hover { transform: translateY(-4px); background: rgba(255,255,255,.085); }
.principles-grid span { color: #78d4ca; font-size: .57rem; }
.principles-grid h3 { margin: 2rem 0 .55rem; font-family: var(--display); font-size: .88rem; }
.principles-grid p { margin: 0; color: #b4ccca; font-size: .66rem; }

.insights { background: var(--paper); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.insight-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .3s, box-shadow .3s; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.insight-card figure { position: relative; margin: 0; overflow: hidden; }
.insight-card figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(7,61,63,.35)); }
.insight-card img { width: 100%; height: 215px; display: block; object-fit: cover; transition: transform .55s; }
.insight-card:hover img { transform: scale(1.05); }
.insight-card figure > span { position: absolute; z-index: 2; top: .85rem; right: .85rem; padding: .3rem .65rem; border: 1px solid rgba(255,255,255,.42); border-radius: 99px; color: #fff; background: rgba(7,61,63,.67); backdrop-filter: blur(7px); font-size: .55rem; font-weight: 700; }
.insight-card > div { min-height: 205px; display: flex; flex-direction: column; align-items: flex-start; padding: 1.25rem; }
.insight-card small { color: var(--coral); font-size: .55rem; }
.insight-card h3 { margin: .5rem 0; font-family: var(--display); font-size: .86rem; line-height: 1.65; }
.insight-card p { margin: 0; color: var(--muted); font-size: .67rem; }
.insight-card b { margin-top: auto; color: var(--teal); font-size: .63rem; }
.insight-large { grid-column: span 2; display: grid; grid-template-columns: 1.1fr .9fr; }
.insight-large img { height: 100%; min-height: 330px; }
.insight-large > div { min-height: 330px; padding: 1.6rem; }
.insight-large h3 { font-size: 1.08rem; }
.insight-extra { grid-column: 3; }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(2.5rem, 7vw, 7rem); }
.faq-intro { position: sticky; top: 135px; }
.faq-intro p { color: var(--muted); font-size: .78rem; }
.faq-intro .button { margin-top: 1rem; }
.accordion { display: grid; gap: .7rem; }
.accordion article { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.accordion button { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: right; font-size: .76rem; font-weight: 700; }
.accordion button svg { flex: none; color: var(--teal); transition: transform .25s; }
.accordion article.open button svg { transform: rotate(45deg); }
.accordion article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.accordion article > div p { overflow: hidden; margin: 0; padding-inline: 1.2rem; color: var(--muted); font-size: .7rem; transition: padding .3s; }
.accordion article.open > div { grid-template-rows: 1fr; }
.accordion article.open > div p { padding-block: 0 1.2rem; }

.booking-section { overflow: hidden; color: #fff; background: linear-gradient(130deg, #087f78, #075a58 58%, #0b3e40); }
.booking-section::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 10% 20%, #fff 0 1px, transparent 1.5px); background-size: 32px 32px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.booking-shell { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(2.5rem, 8vw, 8rem); }
.section-kicker.light { color: #bdece6; }
.booking-copy h2 em { color: #ffc0b5; }
.booking-copy > p { color: #d2e6e3; font-size: .82rem; }
.booking-copy ul { display: grid; gap: .7rem; margin: 1.5rem 0 0; padding: 0; list-style: none; color: #e9f6f4; font-size: .67rem; }
.booking-copy li { display: flex; align-items: center; gap: .55rem; }
.booking-copy li svg { width: 17px; color: #a7e7df; }
.booking-form { min-height: 490px; padding: 1.5rem; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; color: var(--ink); background: #fff; box-shadow: 0 35px 80px rgba(2,40,40,.26); }
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-head span { font-family: var(--display); font-size: .87rem; }
.form-head small { color: var(--muted); font-size: .58rem; }
.form-progress { display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem; margin: 1rem 0 1.25rem; }
.form-progress i { height: 4px; border-radius: 9px; background: #e8efed; }
.form-progress i.active { background: var(--teal); }
.form-step { display: none; gap: .85rem; }
.form-step.active { display: grid; animation: stepIn .3s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(-10px); } }
.form-step label { display: grid; gap: .35rem; color: #385455; font-size: .62rem; font-weight: 700; }
.form-step input, .form-step select, .form-step textarea { width: 100%; padding: .82rem .9rem; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #fafcfb; outline: 0; resize: vertical; font-size: .7rem; }
.form-step input:focus, .form-step select:focus, .form-step textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(8,127,120,.08); }
.form-buttons { display: grid; grid-template-columns: .35fr .65fr; gap: .6rem; }
.form-success { min-height: 390px; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-success.show { display: flex; }
.form-success > span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: var(--teal-3); }
.form-success > span svg { width: 34px; height: 34px; }
.form-success h3 { margin: 1.1rem 0 .4rem; font-family: var(--display); }
.form-success p { max-width: 430px; margin: 0 0 1rem; color: var(--muted); font-size: .7rem; }

.footer { padding-block: 4rem 1.4rem; color: #d4e4e2; background: var(--deep-2); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 3rem; }
.footer-brand { color: #fff; }
.footer-brand small { color: #9db8b5; }
.footer-grid > div:first-child > p { max-width: 440px; color: #8fa9a7; font-size: .65rem; }
.footer-grid h3 { margin: 0 0 1rem; color: #fff; font-family: var(--display); font-size: .72rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; color: #9eb6b4; font-size: .63rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); color: #779492; font-size: .55rem; }

.whatsapp-fab { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: flex; align-items: center; gap: .55rem; padding: .75rem .95rem; border: 0; border-radius: 99px; color: #fff; background: var(--coral); box-shadow: 0 15px 35px rgba(204,76,57,.28); cursor: pointer; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(14px); transition: opacity .25s, visibility .25s, transform .25s; font-size: .66rem; font-weight: 800; }
.whatsapp-fab.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.whatsapp-fab svg { width: 20px; }
.assessment-modal { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; padding: 1rem; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.assessment-modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(6,37,39,.68); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 2; width: min(620px, 100%); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 32px; background: #fff; box-shadow: 0 45px 100px rgba(0,0,0,.25); transform: translateY(18px) scale(.98); transition: transform .25s; }
.assessment-modal.open .modal-card { transform: none; }
.modal-close { position: absolute; top: 1rem; left: 1rem; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: #fff; cursor: pointer; font-size: 1.2rem; }
.modal-card h2 { margin: .7rem 0 .45rem; font-family: var(--display); font-size: clamp(1.4rem, 4vw, 2.1rem); }
.modal-card > p { color: var(--muted); font-size: .7rem; }
.assessment-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1.25rem; }
.assessment-options button { min-height: 70px; padding: .8rem; border: 1px solid var(--line); border-radius: 17px; color: var(--ink); background: #f8fbfa; cursor: pointer; font-size: .68rem; font-weight: 700; transition: border-color .2s, background .2s, color .2s; }
.assessment-options button:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-3); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 1101px) and (max-height: 820px) {
  .hero-grid { min-height: 0; padding-block: 1.25rem; }
  .hero h1 { margin: .55rem 0; font-size: clamp(2.7rem, 4.5vw, 4.35rem); }
  .hero-lead { margin-top: .8rem; font-size: .92rem; line-height: 1.75; }
  .hero-actions { margin-top: 1.1rem; }
  .hero-promise { margin-top: .9rem; }
  .hero-visual { height: clamp(480px, calc(100svh - 250px), 540px); }
}

@media (max-width: 1100px) {
  .desktop-nav, .mini-contact { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .9fr); gap: 1.5rem; }
  .hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
  .floating-card-one { right: 1%; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-card { min-height: 300px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-large { grid-column: 1 / -1; }
  .insight-extra { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .demo-bar { justify-content: space-between; font-size: .57rem; }
  .demo-bar > span { overflow: hidden; max-width: 56%; text-overflow: ellipsis; white-space: nowrap; }
  .header-inner { min-height: 72px; }
  .header-actions .button { display: none; }
  .brand img { width: 43px; height: 43px; }
  .brand small { display: none; }
  .mobile-nav { top: 106px; }
  .hero { height: var(--hero-viewport-height, calc(100svh - 107px)); min-height: 0; }
  .hero-grid { display: block; overflow: clip; padding-block: clamp(1rem, 2.5svh, 1.5rem) 0; text-align: center; }
  .hero-copy { position: relative; z-index: 3; }
  .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(2.35rem, 10vw, 3.6rem); }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-promise { justify-content: center; }
  .hero-visual { position: absolute; z-index: 1; inset: auto auto 0 50%; width: min(100%, 570px); height: clamp(230px, 34svh, 290px); margin: 0; translate: -50% 0; mask-image: linear-gradient(to bottom, transparent 0, #000 16%); }
  .floating-card-one { right: 0; }
  .floating-card-two { left: 0; }
  .motion-score { left: 2%; }
  .hero-utility { width: 100%; grid-template-columns: repeat(2, 1fr); border-radius: 22px 22px 0 0; }
  .hero-utility > :nth-child(2) { border-inline-end: 0; }
  .hero-utility > :nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .navigator-shell, .consultation-grid, .doctor-grid, .faq-grid, .booking-shell { grid-template-columns: 1fr; }
  .consultation-media { order: 2; }
  .doctor-grid { gap: 2rem; }
  .faq-intro { position: static; }
  .booking-form { min-height: 0; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 26px, 520px); }
  html { scroll-padding-top: 115px; }
  .demo-bar { gap: .4rem; }
  .demo-bar a { font-size: .54rem; }
  .header-inner { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: .68rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-nav { top: 102px; inset-inline: 13px; }
  .hero { height: var(--hero-viewport-height, calc(100svh - 111px)); }
  .hero-grid { padding-top: clamp(.75rem, 2svh, 1.15rem); }
  .hero h1 { margin: .45rem 0; font-size: clamp(1.9rem, 9.5vw, 2.65rem); line-height: 1.23; }
  .hero-lead { margin-top: .65rem; font-size: clamp(.7rem, 3.3vw, .82rem); line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .85rem; }
  .hero-actions .button { width: 100%; min-height: 44px; padding-inline: .5rem; font-size: .63rem; }
  .hero-promise { display: flex; gap: .25rem .7rem; margin-top: .65rem; text-align: center; font-size: .55rem; }
  .hero-visual { height: clamp(190px, calc(100svh - 540px), 290px); }
  .portrait-stage { inset-inline: 0; }
  .portrait-stage img { width: 108%; height: 112%; bottom: -13%; }
  .portrait-label { bottom: 3%; min-width: 210px; padding: .7rem; }
  .floating-card { padding: .6rem; }
  .floating-card strong { font-size: .54rem; }
  .floating-card-one { top: 24%; }
  .floating-card-two { bottom: 21%; }
  .motion-score { top: 8%; padding: .55rem; }
  .motion-score p { display: none; }
  .hero-utility { grid-template-columns: repeat(2, 1fr); }
  .hero-utility > a, .hero-utility > span { min-width: 0; padding: .7rem .65rem; border-bottom: 1px solid var(--line); }
  .hero-utility > :nth-child(odd) { border-inline-end: 1px solid var(--line); }
  .hero-utility > :nth-child(even) { border-inline-end: 0; }
  .hero-utility > :nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding-block: 4.5rem; }
  .section-heading h2, .navigator-intro h2, .consultation-copy h2, .doctor-copy h2, .faq-intro h2, .booking-copy h2 { font-size: 1.9rem; }
  .specialty-grid, .principles-grid, .insights-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 290px; }
  .navigator-tabs { grid-template-columns: repeat(2, 1fr); }
  .navigator-result { min-height: 0; grid-template-columns: 1fr; padding: 1.4rem; }
  .result-icon { width: 70px; height: 70px; }
  .navigator-footer { align-items: flex-start; flex-direction: column; }
  .consultation-media img { aspect-ratio: 4/5; }
  .consultation-media figcaption { padding: .8rem; }
  .principles-grid article { min-height: 185px; }
  .insight-large { grid-column: auto; display: flex; }
  .insight-large img { min-height: 0; height: 215px; }
  .insight-large > div { min-height: 215px; padding: 1.25rem; }
  .insight-large h3 { font-size: .86rem; }
  .booking-form { padding: 1rem; border-radius: 24px; }
  .form-buttons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { width: 50px; height: 50px; justify-content: center; padding: 0; }
  .assessment-options { grid-template-columns: 1fr; }
  .modal-card { border-radius: 25px; }
}

@media (max-width: 820px) {
  .whatsapp-fab { display: none; }
}

@media (max-width: 560px) and (max-height: 700px) {
  .hero-visual { bottom: -55px; }
  .floating-card, .motion-score, .portrait-label { display: none; }
}

@media (max-width: 560px) and (max-height: 600px) {
  .hero-visual { bottom: -100px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
