/* ================================================
   ROOT VARIABLES — unified palette (Design 1 font/colors)
   Alias vars let Design-2 component blocks below plug in
   without redefining every value.
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
:root {
    --color-bg-dark: #0f172a;
    --color-bg-light: #1e293b;
    --color-accent-blue: #38bdf8;
    --color-accent-teal: #2dd4bf;
    --color-accent-cyan: #06b6d4;
    --color-text-main: #f8fafc;
    --color-text-muted: #cbd5e1;
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Outfit', sans-serif;

    --bg1: #0B0F14;
    --bg2: #10151D;
    --w: #F8FAFC;
    --wm: #B8C3CF;
    --a1: #4FC3F7;
    --a2: #7DD3FC;
    --bdr: rgba(255,255,255,0.08);
    --expo: cubic-bezier(0.16, 1, 0.3, 1);

    --bg-deep: #06090e;
    --bg-surface: #0c121c;
    --bg-card: #121a26;
    --a-cyan: #06b6d4;
    --a-teal: #2dd4bf;
    --a-blue: #38bdf8;
    --a-gold: #fbbf24;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --border-light: rgba(255,255,255,0.06);
    --border-hover: rgba(45,212,191,0.25);

    /* ── Design-2 aliases (so ported blocks work untouched) ── */
    --accent-blue: var(--a-blue);
    --accent-cyan: var(--a-teal);
    --accent-glow: rgba(56, 189, 248, 0.15);
    --accent-glow-strong: rgba(56, 189, 248, 0.35);
    --bg-primary: var(--bg-deep);
    --bg-secondary: var(--bg-surface);
    --bg-card2: rgba(255,255,255,0.02);
    --border-subtle: var(--border-light);
    --border-glow: var(--border-hover);
    --font-heading: var(--font-primary);
    --font-body: var(--font-primary);
    --transition-smooth: all 0.5s var(--expo);
    --transition-fast: all 0.25s var(--expo);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

/* Lenis Smooth Scroll Recommended Base Styling */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overflow: clip; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   HERO & INTRO ANIMATION — PRESERVED EXACTLY (Design 1)
   ================================================ */
#hero-section { position: relative; width: 100%; max-width: 100%; height: 100vh; overflow: hidden; display: flex; align-items: center; padding-top: 130px; box-sizing: border-box; pointer-events: none; }
.background-gradients { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; background: linear-gradient(135deg, #090e17 0%, #111a2c 50%, #0d1e2e 100%); pointer-events: none; opacity: 0.1; transition: opacity 3s ease-in-out; }
body.hero-active .background-gradients { opacity: 1; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0; transition: opacity 3s ease-in-out; }
body.hero-active .glow-orb { opacity: 0.5; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, rgba(6,182,212,0) 70%); top: -10%; left: -10%; animation: drift-orb-1 25s infinite alternate ease-in-out; }
.orb-2 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(45,212,191,0.15) 0%, rgba(45,212,191,0) 70%); bottom: -20%; right: -10%; animation: drift-orb-2 30s infinite alternate ease-in-out; }
@keyframes drift-orb-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.1); }
    100% { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes drift-orb-2 {
    0% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-60px, -40px) scale(0.9); }
    100% { transform: translate(40px, 30px) scale(1.05); }
}
#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; opacity: 0; transition: opacity 1s ease-out; }
body.hero-active #hero-section { pointer-events: auto; }
body.hero-active .hero-content { opacity: 1; }
.hero-text-container { max-width: 600px; }
.tagline, .main-title, .subtitle, .cta-group, .trust-indicators { opacity: 0; transform: translateY(20px); }
body.hero-active .tagline { animation: fadeInUp 1s forwards 0.5s; }
body.hero-active .main-title { animation: fadeInUp 1s forwards 0.8s; }
body.hero-active .subtitle { animation: fadeInUp 1s forwards 1.1s; }
body.hero-active .cta-group { animation: fadeInUp 1s forwards 1.4s; }
body.hero-active .trust-indicators { animation: fadeInUp 1s forwards 1.7s; }
.tagline { display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--color-accent-teal); margin-bottom: 20px; }
.main-title { font-size: clamp(4.5rem, 4.2vw, 3.75rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
.text-gradient {
    background: linear-gradient(to right, var(--color-accent-blue), var(--color-accent-teal), var(--color-accent-cyan), var(--color-accent-blue));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
}
@keyframes shine {
    to { background-position: 300% center; }
}
.subtitle { font-size: 1.05rem; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 40px; }
.cta-group { display: flex; gap: 20px; margin-bottom: 40px; }
.btn { padding: 16px 32px; border-radius: 50px; font-family: inherit; font-weight: 600; font-size: 1rem; cursor: pointer; position: relative; overflow: hidden; transition: all 0.3s ease; border: none; }
.btn-primary { background: rgba(6,182,212,0.1); border: 1px solid var(--color-accent-cyan); color: #fff; box-shadow: 0 0 20px rgba(6,182,212,0.2); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: rgba(6,182,212,0.2); box-shadow: 0 0 30px rgba(6,182,212,0.4); transform: translateY(-2px); }
.btn-secondary { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--color-text-main); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.trust-indicators { display: flex; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--color-text-muted); }
.doctor-reveal-container { position: relative; width: 450px; height: 600px; border-radius: 20px; overflow: hidden; opacity: 0; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
body.hero-active .doctor-reveal-container { animation: customReveal 2.5s cubic-bezier(0.16,1,0.3,1) forwards 1.5s; }
.doctor-image { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.1); }
.glass-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(15,23,42,0) 50%, rgba(15,23,42,0.9) 100%); pointer-events: none; }
.floating-cards-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 15; }
.glass-card { position: absolute; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); opacity: 0; transition: transform 0.1s ease-out; }
body.hero-active .glass-card { animation: fadeIn 1s forwards 2.5s; }
.card-1 { top: 20%; right: 5%; } .card-2 { bottom: 30%; right: 35%; } .card-3 { top: 40%; left: 45%; }
.card-icon { font-size: 1.5rem; }
.card-title { font-weight: 500; font-size: 0.9rem; color: var(--color-text-main); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes customReveal { 0% { opacity: 0; filter: blur(30px) brightness(2); transform: scale(0.9) translateY(40px); clip-path: circle(0% at 50% 50%); } 40% { filter: blur(5px) brightness(1.5); } 100% { opacity: 1; filter: blur(0) brightness(1); transform: scale(1) translateY(0); clip-path: circle(100% at 50% 50%); } }

@media (max-width: 1024px) {
    #hero-section { height: auto; min-height: 100vh; overflow-x: hidden; overflow-y: visible; padding: 130px 0 60px; }
    .hero-content { flex-direction: column; justify-content: center; text-align: center; gap: 40px; max-width: 100%; }
    .cta-group { justify-content: center; }
    .trust-indicators { justify-content: center; flex-wrap: wrap; }
    .doctor-reveal-container { width: 340px; max-width: 78vw; height: 440px; margin: 0 auto; }
    .glass-card { display: none; }
}
@media (max-width: 480px) {
    .doctor-reveal-container { width: 260px; height: 340px; }
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
#cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.c-dot { position: absolute; width: 8px; height: 8px; background: #fff; border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.2s, height 0.2s; }
.c-ring { position: absolute; width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.45); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.3s var(--expo), height 0.3s var(--expo), border-color 0.3s; }
@media (max-width: 768px) { #cursor { display: none; } }
@media (pointer: coarse) { #cursor { display: none; } }

/* ================================================
   NAVIGATION (Design 1)
   ================================================ */
.s-nav {
    position: fixed; top: 24px; left: 50%; transform: translate(-50%, -20px);
    width: 90%; max-width: 1200px; z-index: 100; padding: 14px 32px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(6, 9, 14, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light); border-radius: 100px;
    opacity: 0; pointer-events: none;
    transition: transform 0.8s var(--expo), opacity 0.8s, background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
body.hero-active .s-nav { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.s-nav.scrolled { background: rgba(6, 9, 14, 0.75); border-color: rgba(45, 212, 191, 0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); }
.s-nav__brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -1.5px; color: var(--text-white); text-decoration: none; display: flex; align-items: center; }
.s-nav__brand span { font-weight: 300; color: var(--a-teal); margin-left: 2px; }
.s-nav__links { display: flex; gap: 18px; }
.s-nav__links a { color: var(--text-white); text-decoration: none; font-size: 0.82rem; font-weight: 500; opacity: 0.65; transition: opacity 0.3s, color 0.3s; position: relative; padding: 6px 0; white-space: nowrap; }
.s-nav__links a:hover { opacity: 1; color: var(--a-teal); }
.s-nav__links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--a-cyan), var(--a-teal)); transition: width 0.3s var(--expo); }
.s-nav__links a:hover::after { width: 100%; }
.s-nav__cta { display: inline-flex; align-items: center; padding: 10px 24px; border-radius: 40px; text-decoration: none; color: #000; font-weight: 600; font-size: 0.88rem; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); z-index: 1; border: none; box-shadow: 0 4px 15px rgba(45,212,191,0.25); transition: transform 0.3s, box-shadow 0.3s; }
.s-nav__cta .btn-fill { position: absolute; inset: 0; background: #fff; transform: translateY(101%); transition: transform 0.4s var(--expo); z-index: -1; display: block; }
.s-nav__cta:hover { color: #000; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,212,191,0.4); }
.s-nav__cta:hover .btn-fill { transform: translateY(0); }
.s-nav__hamburger { display: none; background: none; border: none; width: 28px; height: 20px; position: relative; cursor: pointer; }
.s-nav__hamburger span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; left: 0; transition: 0.3s; }
.s-nav__hamburger span:first-child { top: 0; }
.s-nav__hamburger span:nth-child(2) { top: 9px; }
.s-nav__hamburger span:last-child { bottom: 0; }
.s-nav__hamburger.open span:first-child { top: 9px; transform: rotate(45deg); }
.s-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.s-nav__hamburger.open span:last-child { bottom: 9px; transform: rotate(-45deg); }

@media (max-width: 900px) {
    .s-nav { top: 16px; border-radius: 30px; padding: 10px 24px; }
    .s-nav__links { display: none !important; }
    .s-nav__hamburger { display: block; z-index: 101; }
    .s-nav__cta { display: none; }
    .main-title { font-size: clamp(2.8rem, 4.2vw, 3.75rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }

}

/* ================================================
   SITE MAIN — SHARED LAYOUT SYSTEM (Design 1)
   ================================================ */
.site-main { position: relative; z-index: 5; background: var(--bg-deep); color: var(--text-white); }
.wrap { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 6%; }
.sec { padding: 140px 0; position: relative; overflow: hidden; }
.alt-bg { background: var(--bg-surface); }

.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 56px; }
.max-60 { max-width: 600px; }

.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--a-teal); margin-bottom: 20px; font-weight: 600; display: inline-block; background: linear-gradient(90deg, rgba(45,212,191,0.15), rgba(56,189,248,0.15)); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(45,212,191,0.15); }
.display-title { font-size: clamp(3rem, 7.5vw, 6rem); font-weight: 200; line-height: 1.05; letter-spacing: -0.04em; }
.sec-title { font-size: clamp(2.1rem, 3.6vw, 3.1rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.15; }
.sec-title em { font-style: italic; font-weight: 200; background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.body-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* Cursor glowing card system */
.glow-card { position: relative; background: rgba(255, 255, 255, 0.015); border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; transition: transform 0.4s var(--expo), border-color 0.4s, background-color 0.4s, box-shadow 0.4s; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.glow-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(45, 212, 191, 0.12), transparent 45%); opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 1; }
.glow-card:hover { transform: translateY(-8px); border-color: var(--border-hover); background: rgba(255, 255, 255, 0.025); box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); }
.glow-card:hover::before { opacity: 1; }

.glow-spot { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.15; pointer-events: none; z-index: 0; }
.spot-cyan { width: 400px; height: 400px; background: radial-gradient(circle, var(--a-cyan), transparent 70%); }
.spot-teal { width: 500px; height: 500px; background: radial-gradient(circle, var(--a-teal), transparent 70%); }

/* ── Expertise (Design 1) ── */
.sec-header { margin-bottom: 64px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ex-card { padding: 48px 40px; display: flex; flex-direction: column; }
.ex-icon { width: 48px; height: 48px; color: var(--a-teal); margin-bottom: 28px; background: rgba(45,212,191,0.06); border-radius: 14px; padding: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(45,212,191,0.12); transition: transform 0.4s var(--expo), background 0.4s, color 0.4s; }
.ex-card:hover .ex-icon { transform: scale(1.1) rotate(5deg); background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); color: #000; border-color: transparent; }
.ex-icon svg { width: 100%; height: 100%; }
.ex-card h4 { font-size: 1.3rem; font-weight: 500; margin-bottom: 14px; color: var(--text-white); }
.ex-card p { color: var(--text-muted); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }
.ex-num { margin-top: auto; padding-top: 24px; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.08); letter-spacing: 2px; }
.ex-card:hover .ex-num { color: var(--a-teal); transition: color 0.4s; }

/* ── Wellness / Fitness & Lifestyle Medicine — Sticky Scroll (Design 1) ── */
.wellness-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.wellness-sticky { position: sticky; top: 120px; }
.wellness-img-box { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6); border: 1px solid var(--border-light); clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.wellness-img-box.revealed { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.wellness-img-box img { width: 100%; height: 600px; object-fit: cover; display: block; filter: brightness(0.85) contrast(1.05); transition: transform 0.6s var(--expo); }
.wellness-img-box:hover img { transform: scale(1.04); }
.wellness-glass-over { position: absolute; bottom: 40px; left: 40px; right: 40px; background: rgba(6, 9, 14, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.wellness-glass-over h4 { font-size: 1.4rem; font-weight: 500; margin-bottom: 8px; }
.wellness-glass-over p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.wellness-list { display: flex; flex-direction: column; gap: 24px; }
.wellness-row { padding: 32px; cursor: pointer; }
.wellness-row .well-n { font-size: 2.2rem; font-weight: 200; background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.wellness-row h4 { font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; }
.wellness-row p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }

/* ── Why DrD Fit (Design 1) ── */
.why-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 24px; align-items: flex-start; padding: 32px; }
.why-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(45,212,191,0.06); border: 1px solid rgba(45,212,191,0.15); display: flex; align-items: center; justify-content: center; color: var(--a-teal); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.why-item:hover .why-icon { background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); color: #000; border-color: transparent; transform: scale(1.05); transition: 0.3s; }
.why-item h4 { font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-weight: 300; font-size: 0.95rem; line-height: 1.6; }
.text-cta { display: inline-flex; align-items: center; gap: 12px; color: var(--text-white); text-decoration: none; font-size: 1rem; font-weight: 600; border-bottom: 2px solid var(--border-light); padding-bottom: 8px; transition: border-color 0.3s, gap 0.3s, color 0.3s; margin-top: 24px; }
.text-cta:hover { border-color: var(--a-teal); color: var(--a-teal); gap: 20px; }
.text-cta svg { transition: transform 0.3s; }
.text-cta:hover svg { transform: translateX(4px); }

/* ── FAQ (Design 1) ── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: rgba(255,255,255,0.01); border: 1px solid var(--border-light); border-radius: 16px; padding: 0 32px; transition: background 0.4s, border-color 0.4s; }
.faq-item:hover { background: rgba(255,255,255,0.015); border-color: rgba(45,212,191,0.15); }
.faq-item.open { background: rgba(255,255,255,0.02); border-color: var(--border-hover); }
.faq-q { width: 100%; background: none; border: none; color: var(--text-white); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-size: 1.05rem; font-weight: 500; font-family: inherit; text-align: left; }
.faq-ico { width: 20px; height: 20px; flex-shrink: 0; color: var(--a-teal); transition: transform 0.4s var(--expo); }
.faq-item.open .faq-ico { transform: rotate(135deg); }
.faq-a-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--expo); }
.faq-item.open .faq-a-wrapper { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 0 28px; color: var(--text-muted); font-weight: 300; line-height: 1.75; font-size: 0.95rem; margin: 0; }

/* Focus & motion */
:focus-visible { outline: 2px solid var(--a-teal); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 1200px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .sec { padding: 100px 0; }
    .why-grid, .faq-layout, .wellness-grid { grid-template-columns: 1fr; gap: 56px; }
    .wellness-sticky { position: relative; top: 0; }
    .wellness-img-box img { height: 500px; }
    .wellness-glass-over { left: 24px; right: 24px; bottom: 24px; padding: 22px; }
    .wellness-glass-over h4 { font-size: 1.15rem; }
    .wellness-glass-over p { font-size: 0.85rem; line-height: 1.5; }
}
@media (max-width: 600px) {
    .sec { padding: 80px 0; }
    .wrap { padding: 0 6%; }
    .expertise-grid { grid-template-columns: 1fr; }
    .display-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .wellness-img-box img { height: 420px; }
    .wellness-glass-over { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
    .wellness-glass-over h4 { font-size: 1.05rem; margin-bottom: 4px; }
    .wellness-glass-over p { font-size: 0.8rem; line-height: 1.45; }
}


/* ================================================================
   ================================================================
   DESIGN 2 — PORTED SECTION SYSTEM
   (Clinical Biography, Onboarding Process, Marquee, Media & Keynote,
   Testimonials, Contact & Intakes, Footer)
   Reskinned onto the shared Inter font + cyan/teal palette above.
   ================================================================
   ================================================================ */

.sec2 { position: relative; padding: 140px 0; width: 100%; overflow: hidden; z-index: 5; }

.section-tag { font-family: var(--font-primary); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; color: var(--accent-blue); text-transform: uppercase; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; }
.section-tag::before { content: ''; width: 6px; height: 6px; background-color: var(--accent-blue); border-radius: 50%; box-shadow: 0 0 8px var(--accent-blue); }
.section-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; color: var(--text-white); letter-spacing: -0.02em; margin-bottom: 30px; }
.section-title span { background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); max-width: 600px; margin-bottom: 60px; font-weight: 400; }
.asymmetrical-grid { display: grid; gap: 80px; }

/* --- Clinical Biography (About) --- */
.about-section { background-color: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.about-grid { grid-template-columns: 1fr 1fr; align-items: flex-start; }
.about-visual { position: sticky; top: 120px; height: 600px; width: 100%; z-index: 4; }
.about-image-wrapper { position: relative; width: 85%; height: 90%; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: 0 30px 80px rgba(0,0,0,0.6); clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.about-image-wrapper.revealed { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.about-floating-info { position: absolute; bottom: 0%; right: 0%; width: 250px; background: rgba(6, 9, 14, 0.85); border: 1px solid var(--border-subtle); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 20px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.about-badge-item { margin-bottom: 20px; }
.about-badge-item:last-child { margin-bottom: 0; }
.about-badge-item h6 { font-family: var(--font-primary); font-size: 28px; font-weight: 800; color: var(--accent-cyan); line-height: 1; }
.about-badge-item p { font-size: 11px; font-family: var(--font-primary); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }
.about-bio { padding-left: 20px; }
.about-quote { font-family: var(--font-primary); font-size: clamp(1.4rem, 2.5vw, 2.2rem); line-height: 1.3; font-weight: 400; margin-bottom: 40px; color: var(--text-white); }
.about-quote span { color: var(--accent-blue); font-weight: 600; }
.about-bio-text { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.medical-philosophy-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.philosophy-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-white); font-family: var(--font-primary); font-weight: 500; }
.philosophy-item i { color: var(--accent-blue); font-size: 16px; }

.btn-primary2 {
    font-family: var(--font-primary); font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
    color: #06090e; background-color: var(--text-white); border: 1px solid var(--text-white);
    padding: 14px 30px; border-radius: 40px; text-decoration: none; text-transform: uppercase;
    position: relative; overflow: hidden; transition: var(--transition-smooth);
    display: inline-flex; align-items: center; justify-content: center; z-index: 1; cursor: pointer;
}
.btn-primary2::before { content: ''; position: absolute; top: 50%; left: 50%; width: 120%; height: 120%; background: radial-gradient(circle, var(--accent-cyan) 0%, var(--accent-blue) 100%); transform: translate(-50%, -50%) scale(0); transition: transform 0.6s var(--expo); border-radius: 50%; z-index: -1; }
.btn-primary2:hover { color: #06090e; border-color: var(--accent-blue); box-shadow: 0 8px 30px rgba(45,212,191,0.25); transform: translateY(-2px); }
.btn-primary2:hover::before { transform: translate(-50%, -50%) scale(1.1); }

/* Typography reused inside Speaking overlay */
.expertise-title { font-family: var(--font-primary); font-size: 22px; font-weight: 600; color: var(--text-white); margin-bottom: 15px; }
.expertise-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- Onboarding Process (Journey) --- */
.services-section { background-color: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.journey-container { position: relative; max-width: 1000px; margin: 80px auto 0 auto; padding: 0 20px; }
.journey-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(180deg, rgba(45, 212, 191, 0) 0%, rgba(45, 212, 191, 0.4) 15%, rgba(45, 212, 191, 0.4) 85%, rgba(45, 212, 191, 0) 100%); }
.journey-step { position: relative; width: 100%; margin-bottom: 80px; display: flex; justify-content: flex-end; }
.journey-step:nth-child(even) { justify-content: flex-start; }
.journey-indicator { position: absolute; top: 30px; left: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border-radius: 50%; background: var(--bg-primary); border: 2px solid var(--accent-blue); z-index: 5; box-shadow: 0 0 10px var(--accent-glow-strong); }
.journey-step:hover .journey-indicator { background: var(--accent-blue); box-shadow: 0 0 20px var(--accent-blue); }
.journey-content { width: 45%; background: var(--bg-card2); border: 1px solid var(--border-subtle); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); position: relative; transition: var(--transition-smooth); }
.journey-step:hover .journey-content { border-color: var(--border-glow); transform: translateY(-5px); }
.journey-num { font-family: var(--font-primary); font-size: 14px; font-weight: 800; color: var(--accent-blue); margin-bottom: 12px; display: inline-block; letter-spacing: 0.1em; }
.journey-title { font-family: var(--font-primary); font-size: 20px; font-weight: 500; color: var(--text-white); margin-bottom: 15px; }
.journey-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- Slider / Marquee --- */
.marquee-container { width: 100%; overflow: hidden; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 40px 0; display: flex; white-space: nowrap; }
.marquee-track { display: flex; gap: 80px; animation: marquee-scroll 35s linear infinite; }
.marquee-text { font-family: var(--font-primary); font-size: 24px; font-weight: 700; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.15); text-transform: uppercase; display: flex; align-items: center; gap: 15px; }
.marquee-text::after { content: '•'; background: linear-gradient(135deg, var(--a-cyan), var(--a-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Media & Keynote (Speaking) --- */
.media-speaking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.speaking-card { position: relative; height: 500px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.speaking-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition-smooth); filter: brightness(0.9) contrast(1.05); }
.speaking-card:hover img { transform: scale(1.06); }
.speaking-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(180deg, rgba(6, 9, 14, 0) 0%, rgba(6, 9, 14, 0.95) 75%); z-index: 2; }
.media-links-container { display: flex; flex-direction: column; gap: 20px; }
.media-item-link { display: flex; justify-content: space-between; align-items: center; background: var(--bg-card2); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 24px 30px; text-decoration: none; transition: var(--transition-smooth); }
.media-item-link:hover { border-color: var(--border-glow); background-color: rgba(255, 255, 255, 0.02); transform: translateX(10px); }
.media-item-meta { display: flex; flex-direction: column; gap: 5px; }
.media-source { font-family: var(--font-primary); font-size: 10px; font-weight: 700; color: var(--accent-blue); letter-spacing: 0.15em; text-transform: uppercase; }
.media-item-title { font-family: var(--font-primary); font-size: 17px; font-weight: 600; color: var(--text-white); }
.media-item-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-white); transition: var(--transition-smooth); flex-shrink: 0; }
.media-item-link:hover .media-item-arrow { background: var(--accent-blue); border-color: var(--accent-blue); color: #06090e; }

/* --- Testimonials --- */
.testimonials-section { background-color: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.testimonials-slider-container { position: relative; width: 100%; max-width: 900px; margin: 0 auto; }
.testimonial-track-wrapper { overflow: hidden; width: 100%; position: relative; }
.testimonial-track { display: flex; width: 100%; will-change: transform; }
.testimonial-slide { min-width: 100%; width: 100%; box-sizing: border-box; opacity: 0.4; transform: scale(0.95); transition: opacity 0.6s var(--expo), transform 0.6s var(--expo); flex-shrink: 0; }
.testimonial-slide.active { opacity: 1; transform: scale(1); }
.testimonial-card-premium { background: var(--bg-card2); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative; }
.quote-symbol { font-family: var(--font-primary); font-size: 100px; color: rgba(45, 212, 191, 0.12); position: absolute; top: 10px; left: 40px; line-height: 1; }
.testimonial-content { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.6; color: var(--text-white); margin-bottom: 40px; position: relative; z-index: 2; font-weight: 300; }
.testimonial-user { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-subtle); padding-top: 30px; flex-wrap: wrap; gap: 16px; }
.user-details { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-primary); border: 1.5px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-family: var(--font-primary); font-weight: 700; color: var(--accent-cyan); flex-shrink: 0; }
.user-info h6 { font-family: var(--font-primary); font-size: 16px; font-weight: 600; color: var(--text-white); }
.user-info p { font-size: 11px; font-family: var(--font-primary); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.verification-badge { display: flex; align-items: center; gap: 8px; background: rgba(45, 212, 191, 0.08); border: 1px solid rgba(45, 212, 191, 0.15); border-radius: 20px; padding: 6px 14px; font-size: 10px; font-family: var(--font-primary); font-weight: 700; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 0.05em; }
.slider-controls { display: flex; justify-content: center; gap: 20px; margin-top: 40px; align-items: center; }
.control-btn { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); color: var(--text-white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-smooth); }
.control-btn:hover { background: var(--accent-blue); border-color: var(--accent-blue); color: #06090e; }
.slide-dots { display: flex; gap: 8px; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); cursor: pointer; transition: var(--transition-fast); }
.slide-dot.active { background: var(--accent-cyan); width: 24px; border-radius: 4px; }

/* --- Contact & Intakes --- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 30px; }
.contact-detail-card { display: flex; gap: 20px; align-items: flex-start; }
.cdc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(45, 212, 191, 0.08); border: 1px solid rgba(45, 212, 191, 0.15); display: flex; align-items: center; justify-content: center; color: var(--accent-blue); font-size: 18px; flex-shrink: 0; }
.cdc-meta h6 { font-family: var(--font-primary); font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
.cdc-meta p, .cdc-meta a { font-family: var(--font-primary); font-size: 18px; font-weight: 600; color: var(--text-white); text-decoration: none; transition: color 0.3s; }
.cdc-meta a:hover { color: var(--accent-blue); }

.luxury-form-container { background: var(--bg-card2); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 50px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.consultation-form { display: flex; flex-direction: column; gap: 25px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group { position: relative; width: 100%; }
.luxury-input { width: 100%; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px 20px; color: var(--text-white); font-family: var(--font-primary); font-size: 14px; transition: var(--transition-smooth); }
.luxury-input:focus { outline: none; border-color: var(--accent-blue); background: rgba(255,255,255,0.04); box-shadow: 0 0 15px rgba(45,212,191,0.1); }
select.luxury-input option { background-color: #0c121c; color: #F8FAFC; }
textarea.luxury-input { resize: vertical; min-height: 120px; padding-top: 20px; }
.luxury-label { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--text-muted); pointer-events: none; transition: var(--transition-fast); z-index: 1; }
textarea.luxury-input + .luxury-label { top: 18px; transform: none; }
.luxury-input:focus + .luxury-label, .luxury-input:not(:placeholder-shown) + .luxury-label { top: -9px; left: 14px; font-size: 10px; font-weight: 600; letter-spacing: 0.05em; color: var(--accent-cyan); background: var(--bg-secondary); padding: 2px 8px; border-radius: 4px; transform: none; }
textarea.luxury-input:focus + .luxury-label, textarea.luxury-input:not(:placeholder-shown) + .luxury-label { top: -9px; transform: none; }
.form-group.has-error .luxury-input { border-color: #ff4f79; box-shadow: 0 0 10px rgba(255, 79, 121, 0.15); }
.form-group.has-error .luxury-label { color: #ff4f79; }
.validation-msg { font-size: 10px; color: #ff4f79; margin-top: 4px; position: absolute; bottom: -15px; left: 10px; }
.form-success-box { display: none; background: rgba(45, 212, 191, 0.08); border: 1px solid var(--accent-blue); border-radius: 12px; padding: 20px; text-align: center; color: var(--text-white); margin-bottom: 20px; font-family: var(--font-primary); animation: fade-in-up 0.5s ease; }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Footer --- */
.site-footer2 { background-color: var(--bg-primary); border-top: 1px solid var(--border-subtle); padding: 100px 0 40px; position: relative; z-index: 5; }
.footer-info { display: flex; flex-direction: column; gap: 25px; }
.footer-info .s-nav__brand { font-size: 2rem; }
.footer-info p { color: var(--text-muted); font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer-top { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 80px; margin-bottom: 60px; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-column h6 { font-family: var(--font-primary); font-size: 12px; font-weight: 700; color: var(--text-white); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 25px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-blue); }
.footer-newsletter h6 { font-family: var(--font-primary); font-size: 12px; font-weight: 700; color: var(--text-white); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 25px; }
.footer-newsletter p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.newsletter-form { display: flex; position: relative; }
.newsletter-input { width: 100%; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 40px; padding: 14px 130px 14px 20px; color: var(--text-white); font-size: 13px; font-family: var(--font-primary); }
.newsletter-input:focus { outline: none; border-color: var(--accent-blue); }
.newsletter-btn { position: absolute; right: 5px; top: 5px; bottom: 5px; }
.footer-certifications-row { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.certifications-list { display: flex; gap: 30px; list-style: none; align-items: center; flex-wrap: wrap; }
.certifications-list li { font-family: var(--font-primary); font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.certifications-list li i { color: var(--accent-blue); font-size: 13px; }
.reg-info { font-family: var(--font-primary); font-size: 10px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; background: rgba(255,255,255,0.02); border: 1.5px solid var(--border-subtle); padding: 6px 12px; border-radius: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 20px; }
.footer-socials { display: flex; gap: 15px; }
.social-icon-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); color: var(--text-muted); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition-smooth); font-size: 14px; }
.social-icon-btn:hover { background: var(--accent-blue); border-color: var(--accent-blue); color: #06090e; transform: translateY(-3px); }

/* --- Design-2 responsive adjustments --- */
@media (max-width: 1200px) {
    .sec2 { padding: 100px 0; }
    .about-grid, .contact-grid { gap: 40px; }
    .about-visual { height: 500px; }
}
@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { position: relative; top: 0; height: 500px; max-width: 500px; margin: 0 auto; order: 2; }
    .about-bio { padding-left: 0; order: 1; }
    .journey-content { width: 42%; }
    .media-speaking-grid { grid-template-columns: 1fr; gap: 50px; }
    .speaking-card { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-info { grid-column: span 2; }
}
@media (max-width: 768px) {
    .journey-line { left: 20px; }
    .journey-step, .journey-step:nth-child(even) { justify-content: flex-start; margin-bottom: 50px; }
    .journey-indicator { left: 20px; }
    .journey-content { width: calc(100% - 40px); margin-left: 40px; padding: 30px; }
    .testimonial-card-premium { padding: 60px 24px 30px; }
    .quote-symbol { font-size: 48px; top: 12px; left: 24px; }
    .testimonial-content { margin-top: 16px; }
    .form-group-row { grid-template-columns: 1fr; gap: 25px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-info { grid-column: span 1; }
    .footer-certifications-row, .certifications-list { justify-content: center; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .medical-philosophy-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .about-image-wrapper { width: 100%; }
    .about-floating-info { position: relative; width: 100%; margin-top: 20px; right: auto; bottom: auto; }
    .about-visual { height: auto; position: relative; top: 0; }
    .luxury-form-container { padding: 30px 20px; }
    .speaking-card-overlay { padding: 24px; }
}

/* ================================================
   MOBILE SIDEBAR DRAWER (Sleek Blur Menu)
   ================================================ */
.s-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.5s var(--expo);
}
.s-sidebar.open {
    pointer-events: auto;
    visibility: visible;
}
.s-sidebar__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 14, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.s-sidebar.open .s-sidebar__overlay {
    opacity: 1;
}
.s-sidebar__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: rgba(10, 15, 20, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.s-sidebar.open .s-sidebar__content {
    transform: translateX(0);
}
.s-sidebar__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 300;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}
.s-sidebar__close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--a-teal);
    border-color: rgba(45, 212, 191, 0.3);
}
.s-sidebar__brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}
.s-sidebar__brand span {
    font-weight: 300;
    color: var(--a-teal);
    margin-left: 2px;
}
.s-sidebar__links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: auto;
}
.s-sidebar__links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.65;
    transition: transform 0.3s var(--expo), opacity 0.3s, color 0.3s;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}
.s-sidebar__links a:hover {
    opacity: 1;
    color: var(--a-teal);
    transform: translateX(6px);
}
.s-sidebar__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--a-cyan), var(--a-teal));
    transition: width 0.3s var(--expo);
}
.s-sidebar__links a:hover::after {
    width: 100%;
}
.s-sidebar__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--a-cyan), var(--a-teal));
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(45,212,191,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.s-sidebar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,212,191,0.4);
}

/* Main Logo */
.site-logo {
    display: block;
    height: 48px;      /* Change as needed */
    width: auto;
    object-fit: contain;
    transition: transform .3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Footer Logo */
.footer-logo {
    height: 44px;
}

/* Mobile Logo */
.mobile-logo {
    height: 42px;
}