/* =============================================
   DESIGN TOKENS — inherited from main site
============================================= */
:root {
    --navy:       #0a1628;
    --navy-mid:   #122040;
    --royal:      #1e3799;
    --electric:   #0984e3;
    --sky:        #74b9ff;
    --cloud:      #f0f6ff;
    --cloud-alt:  #f8faff;
    --white:      #ffffff;
    --text:       #0f1d30;
    --text-muted: #64748b;
    --border:     rgba(0,0,0,.08);
    --sans:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease:       cubic-bezier(.16,1,.3,1);
    --shadow-xs:  0 1px 6px rgba(10,22,40,.05);
    --shadow-sm:  0 2px 14px rgba(10,22,40,.07);
    --shadow-md:  0 6px 32px rgba(10,22,40,.09);
    --shadow-lg:  0 16px 60px rgba(10,22,40,.12);
    --shadow-blue:0 8px 32px rgba(9,132,227,.22);
    --cyan:       #00cec9;
    --teal:       #00b894;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4 { font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.text-accent { color: var(--electric); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* =============================================
   TOP BAR
============================================= */
.top-bar-legal {
    background: var(--navy);
    color: rgba(255,255,255,.38);
    font-size: .7rem;
    padding: 7px 0;
    letter-spacing: .6px;
    font-weight: 600;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 14px 0;
    transition: padding .4s var(--ease), box-shadow .4s, background .4s;
    z-index: 1050 !important;
}
.navbar.scrolled {
    padding: 9px 0;
    box-shadow: 0 1px 28px rgba(0,0,0,.09);
    background: rgba(255,255,255,.97);
}
.navbar-brand {
    font-weight: 800;
    color: var(--navy) !important;
    font-size: 1.5rem;
    letter-spacing: -.03em;
}
.brand-name {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 70%, var(--electric) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -.03em;
}
.navbar-logo {
    height: 36px; width: auto; object-fit: contain;
    filter: drop-shadow(0 0 7px rgba(9,132,227,.55)) drop-shadow(0 0 18px rgba(9,132,227,.28));
    animation: logo-glow 3s ease-in-out infinite;
    transition: transform .3s var(--ease);
}
.navbar-logo:hover { transform: scale(1.08) rotate(-4deg); }
@keyframes logo-glow {
    0%,100% { filter: drop-shadow(0 0 6px rgba(9,132,227,.5)) drop-shadow(0 0 16px rgba(9,132,227,.22)); }
    50%      { filter: drop-shadow(0 0 12px rgba(9,132,227,.8)) drop-shadow(0 0 32px rgba(9,132,227,.4)); }
}
.nav-link {
    font-weight: 600;
    color: var(--text-muted) !important;
    margin: 0 8px;
    font-size: .88rem;
    transition: color .3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: var(--electric);
    transition: width .3s var(--ease), left .3s var(--ease);
    border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; left: 0; }
.nav-link:hover, .nav-link.active { color: var(--electric) !important; }
.social-icons a {
    color: var(--text-muted);
    font-size: 1.55rem;
    margin-left: 18px;
    transition: all .3s var(--ease);
    min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
}
.social-icons a:hover { color: var(--electric); transform: translateY(-2px); }
.navbar-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 22px; border-radius: 100px;
    background: var(--electric); color: #fff !important;
    font-size: .82rem; font-weight: 700; text-decoration: none;
    margin-left: 16px; transition: all .3s var(--ease);
    box-shadow: 0 3px 16px rgba(9,132,227,.22);
}
.navbar-cta:hover { background: #0773c5; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(9,132,227,.32); }
@media(max-width:991px) {
    .social-icons { order:2; margin-left:auto; margin-right:8px; }
    .social-icons a { font-size:1.2rem; margin-left:6px; min-width:38px; min-height:38px; }
    .navbar-toggler { order:3; }
}
.navbar-toggler {
    border: 1.5px solid rgba(9,132,227,.18); border-radius: 10px;
    width: 42px; height: 42px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(9,132,227,.04); transition: all .3s var(--ease);
}
.navbar-toggler:hover, .navbar-toggler:focus {
    border-color: var(--electric); background: rgba(9,132,227,.08);
    box-shadow: 0 0 0 3px rgba(9,132,227,.1);
}
.navbar-toggler-icon {
    display: block; width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath stroke='rgba%289%2C132%2C227%2C0.85%29' stroke-linecap='round' stroke-width='2.2' d='M4 6h16M4 12h16M4 18h16'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: center; background-size: contain;
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    background: #25d366; color: white !important;
    width: 60px; height: 60px; border-radius: 50%;
    font-size: 1.7rem;
    box-shadow: 0 6px 26px rgba(37,211,102,.38);
    z-index: 1000; text-decoration: none;
    transition: all .3s var(--ease);
    display: flex; align-items: center; justify-content: center;
}
.whatsapp-float:hover { background: #1da851; color: white !important; transform: translateY(-3px) scale(1.06); }
.whatsapp-float::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 2px solid rgba(37,211,102,.4);
    animation: wa-ring 2s ease-out infinite;
}
@keyframes wa-ring { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.4);opacity:0} }
.wa-tooltip {
    position: absolute; right: calc(100% + 14px); top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--navy); color: #fff;
    font-size: .78rem; font-weight: 600;
    padding: 8px 14px; border-radius: 10px;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(10,22,40,.25);
}
.wa-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: var(--navy);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* =============================================
   SHARED SECTION HELPERS
============================================= */
.section-label {
    font-size: .72rem; font-weight: 700;
    color: var(--electric); text-transform: uppercase;
    letter-spacing: 3.5px; margin-bottom: 12px;
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(9,132,227,.06); border: 1px solid rgba(9,132,227,.12);
    border-radius: 100px; padding: 6px 20px;
}
.section-label::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--electric); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(9,132,227,.1) 30%, rgba(0,206,201,.08) 70%, transparent 95%);
    border: none; margin: 0;
}

/* =============================================
   HERO — dark, with orbs & grid
============================================= */
.disease-hero {
    position: relative;
    min-height: 56vh;
    background: var(--navy);
    display: flex; align-items: center;
    overflow: hidden;
    padding: 140px 0 80px;
}
.disease-hero__bg::before {
    content: '';
    position: absolute;
    top: -25%; right: -10%;
    width: 65vw; height: 65vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9,132,227,.1) 0%, rgba(30,55,153,.06) 40%, transparent 65%);
    animation: breathe 10s ease-in-out infinite alternate;
}
.disease-hero__bg::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -8%;
    width: 45vw; height: 45vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,206,201,.07) 0%, transparent 65%);
    animation: breathe 14s ease-in-out infinite alternate-reverse;
}
.disease-hero__bg { position: absolute; inset: 0; z-index: 0; }
@keyframes breathe {
    from { transform:scale(1); opacity:.7; }
    to   { transform:scale(1.16) translate(3%,-4%); opacity:1; }
}
.disease-hero__grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.disease-hero__aurora {
    position: absolute; top: 50%; left: 50%;
    width: 140vmax; height: 140vmax;
    transform: translate(-50%,-50%);
    background: conic-gradient(
        from 0deg,
        rgba(9,132,227,.06) 0deg,
        rgba(30,55,153,.04) 60deg,
        rgba(116,185,255,.05) 120deg,
        transparent 180deg,
        rgba(9,132,227,.03) 240deg,
        transparent 300deg,
        rgba(116,185,255,.04) 360deg
    );
    animation: aurora-spin 22s linear infinite;
    z-index: 0; pointer-events: none; filter: blur(60px);
}
@keyframes aurora-spin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.disease-hero__content { position: relative; z-index: 2; }
.disease-hero__breadcrumb {
    font-size: .8rem; font-weight: 600; margin-bottom: 22px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.disease-hero__breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s; }
.disease-hero__breadcrumb a:hover { color: var(--sky); }
.disease-hero__breadcrumb .sep { color: rgba(255,255,255,.2); font-size: .72rem; }
.disease-hero__breadcrumb .current { color: var(--sky); font-weight: 700; }
.disease-hero__tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(9,132,227,.12); border: 1px solid rgba(9,132,227,.28);
    border-radius: 100px; padding: 7px 20px;
    font-size: .74rem; font-weight: 700;
    color: var(--sky); letter-spacing: .6px;
    text-transform: uppercase; margin-bottom: 18px;
}
.disease-hero__tag .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--sky); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
.disease-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.035em;
}
.disease-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--electric) 40%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.disease-hero__sub {
    font-size: 1.05rem; color: rgba(255,255,255,.52);
    max-width: 580px; line-height: 1.75; margin-bottom: 32px;
}
.disease-hero__stats { display: flex; flex-wrap: wrap; gap: 12px; }
.disease-hero__stat {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: .8rem; font-weight: 600;
    color: rgba(255,255,255,.6);
    transition: all .3s var(--ease);
}
.disease-hero__stat i { color: var(--sky); font-size: .9rem; }
.disease-hero__stat:hover {
    background: rgba(9,132,227,.12); border-color: rgba(9,132,227,.25); color: rgba(255,255,255,.85);
}
.disease-hero__visual { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }

/* Glass visual card (generic — works for any disease) */
.disease-visual-card,
.sleep-visual-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 22px; padding: 34px 30px;
    position: relative; overflow: hidden; transition: all .4s var(--ease);
    box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.disease-visual-card::before,
.sleep-visual-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(9,132,227,.5), rgba(0,206,201,.4), transparent);
}
.disease-visual-card:hover,
.sleep-visual-card:hover {
    background: rgba(255,255,255,.08); border-color: rgba(9,132,227,.2);
    transform: translateY(-3px); box-shadow: 0 16px 48px rgba(9,132,227,.1);
}
.disease-visual-card__icon,
.sleep-visual-card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(9,132,227,.18), rgba(0,206,201,.12));
    border: 1px solid rgba(9,132,227,.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; transition: all .4s var(--ease);
}
.disease-visual-card:hover .disease-visual-card__icon,
.sleep-visual-card:hover .sleep-visual-card__icon {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    border-color: transparent; box-shadow: 0 6px 20px rgba(9,132,227,.3);
}
.disease-visual-card__icon i,
.sleep-visual-card__icon i { font-size: 1.3rem; color: var(--sky); transition: color .4s; }
.disease-visual-card:hover .disease-visual-card__icon i,
.sleep-visual-card:hover .sleep-visual-card__icon i { color: #fff; }
.disease-visual-card h4,
.sleep-visual-card h4 { font-size: 1.12rem; font-weight: 800; color: #fff; margin: 0 0 12px; letter-spacing: -.02em; line-height: 1.2; }
.disease-visual-card p,
.sleep-visual-card p { font-size: .95rem; color: rgba(255,255,255,.78); margin: 0; line-height: 1.68; }

/* AHI-style severity meter (reusable for GOLD/CAT/etc) */
.ahi-meter {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px; padding: 24px; position: relative; overflow: hidden;
}
.ahi-meter::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,206,201,.4), transparent);
}
.ahi-meter__title { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.ahi-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ahi-row:last-child { margin-bottom: 0; }
.ahi-label { font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.45); width: 68px; flex-shrink: 0; }
.ahi-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.ahi-bar { height: 100%; border-radius: 3px; animation: ahi-grow 1.6s var(--ease) both; }
.ahi-bar--leve    { background: linear-gradient(90deg, #00b894, #00cec9); width: 30%; animation-delay:.2s; }
.ahi-bar--mod     { background: linear-gradient(90deg, #fdcb6e, #e17055); width: 60%; animation-delay:.4s; }
.ahi-bar--severo  { background: linear-gradient(90deg, #e17055, #d63031); width: 100%; animation-delay:.6s; }
.ahi-bar--muy-severo { background: linear-gradient(90deg, #d63031, #8e0e0e); width: 100%; animation-delay:.8s; }
@keyframes ahi-grow { from{width:0} }
.ahi-val { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.35); width: 40px; text-align: right; flex-shrink: 0; }

/* =============================================
   CONTENT AREA
============================================= */
.disease-content { padding: 56px 0; background: var(--white); }
.section-bg { position: relative; overflow: hidden; }
.section-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(10,22,40,.03) 1px, transparent 1px);
    background-size: 32px 32px; pointer-events: none; z-index: 0;
}
.section-mesh {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(9,132,227,.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(0,206,201,.04) 0%, transparent 60%);
}
.disease-content > .container { position: relative; z-index: 1; }
.section-accent-line {
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(9,132,227,.12) 30%, rgba(0,206,201,.1) 70%, transparent 100%);
    z-index: 1; pointer-events: none;
}
.content-block { margin-bottom: 64px; }
.content-block__label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .72rem; font-weight: 700;
    color: var(--electric); text-transform: uppercase;
    letter-spacing: 3px; margin-bottom: 12px;
    background: rgba(9,132,227,.06); border: 1px solid rgba(9,132,227,.12);
    border-radius: 100px; padding: 5px 18px;
}
.content-block__label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--electric); flex-shrink: 0; }
.content-block__title {
    font-size: 1.55rem; font-weight: 800;
    color: var(--navy); margin-bottom: 18px;
    letter-spacing: -.025em; line-height: 1.15;
}
.content-block__title::after {
    content: ''; display: block;
    width: 44px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    margin-top: 12px;
}
.content-block p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block p strong { color: var(--text); font-weight: 700; }

/* Icon list */
.icon-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.icon-list li {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--cloud-alt); border: 1px solid rgba(9,132,227,.07);
    border-radius: 14px; padding: 14px 18px;
    font-size: .94rem; line-height: 1.6; color: var(--text-muted);
    transition: all .3s var(--ease);
}
.icon-list li:hover { border-color: rgba(9,132,227,.18); background: rgba(9,132,227,.03); color: var(--text); transform: translateX(4px); }
.icon-list li .li-icon {
    width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(9,132,227,.1), rgba(0,206,201,.08));
    border: 1px solid rgba(9,132,227,.12);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px; transition: all .3s var(--ease);
}
.icon-list li:hover .li-icon { background: linear-gradient(135deg, var(--electric), var(--cyan)); border-color: transparent; }
.icon-list li .li-icon i { font-size: .78rem; color: var(--electric); transition: color .3s; }
.icon-list li:hover .li-icon i { color: #fff; }

/* Complication cards */
.complication-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.complication-card {
    background: linear-gradient(160deg, #fff 0%, #fff8f8 100%);
    border: 1px solid rgba(214,48,49,.1); border-radius: 16px; padding: 20px 18px;
    transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.complication-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #e17055, #d63031); border-radius: 16px 16px 0 0;
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.complication-card:hover { border-color: rgba(214,48,49,.2); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(214,48,49,.08); }
.complication-card:hover::before { transform: scaleX(1); }
.complication-card__icon {
    width: 40px; height: 40px; border-radius: 11px;
    background: rgba(214,48,49,.08); border: 1px solid rgba(214,48,49,.12);
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.complication-card__icon i { font-size: 1rem; color: #d63031; }
.complication-card h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.complication-card p { font-size: .78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Risk chips */
.risk-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.risk-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 100px;
    font-size: .8rem; font-weight: 600;
    background: var(--cloud); color: var(--text-muted);
    border: 1px solid rgba(9,132,227,.1); transition: all .3s var(--ease);
}
.risk-chip i { font-size: .88rem; color: var(--electric); }
.risk-chip:hover { border-color: rgba(9,132,227,.25); color: var(--electric); background: rgba(9,132,227,.05); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(9,132,227,.1); }

/* Treatment card */
.treatment-card {
    background: var(--navy); border-radius: 24px; padding: 36px 32px;
    position: relative; overflow: hidden;
}
.treatment-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(9,132,227,.08) 0%, rgba(0,206,201,.04) 50%, transparent 100%);
    pointer-events: none;
}
.treatment-card::after {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(9,132,227,.4), rgba(0,206,201,.3), transparent);
}
.treatment-card__orb {
    position: absolute; top: -40%; right: -15%; width: 50vw; height: 50vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(9,132,227,.1) 0%, transparent 65%); pointer-events: none;
}
.treatment-card__content { position: relative; z-index: 1; }
.treatment-card__label {
    font-size: .7rem; font-weight: 700; color: var(--cyan);
    text-transform: uppercase; letter-spacing: 3px;
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.treatment-card__label::before { content: ''; width: 20px; height: 2px; background: var(--cyan); border-radius: 1px; }
.treatment-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
.treatment-card p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 14px; }
.treatment-card p:last-of-type { margin-bottom: 0; }
.treatment-card p strong { color: var(--sky); font-weight: 700; }
.treatment-steps { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.treatment-step {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 16px 18px; transition: all .3s var(--ease);
}
.treatment-step:hover { background: rgba(255,255,255,.08); border-color: rgba(9,132,227,.2); }
.treatment-step__num {
    width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800; color: #fff;
}
.treatment-step__text h5 { font-size: .9rem; font-weight: 700; color: #fff; margin: 0 0 3px; }
.treatment-step__text p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; line-height: 1.5; }

/* Inline CTA — fondo claro de alto impacto */
.cta-inline {
    background: linear-gradient(140deg, #f0f7ff 0%, #ffffff 45%, #e6f2ff 100%);
    border-radius: 28px; padding: 64px 56px;
    border: 1px solid rgba(9,132,227,.14);
    position: relative; overflow: hidden;
    box-shadow: 0 20px 80px rgba(9,132,227,.1), 0 2px 16px rgba(9,132,227,.06);
}
.cta-inline::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--electric) 0%, var(--cyan) 50%, var(--electric) 100%);
}
.cta-inline::after {
    content: ''; position: absolute;
    top: -30%; right: -8%; width: 52vw; height: 52vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(9,132,227,.07) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inline__orb-left {
    position: absolute; bottom: -25%; left: -8%;
    width: 40vw; height: 40vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,206,201,.06) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inline__inner { position: relative; z-index: 1; }
.cta-inline__layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px 64px;
    align-items: start;
}
.cta-inline__left { min-width: 0; }
.cta-inline__right {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 16px;
    padding-top: 8px; min-width: 240px;
}
.cta-inline__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(9,132,227,.08); border: 1px solid rgba(9,132,227,.2);
    border-radius: 100px; padding: 7px 20px;
    font-size: .72rem; font-weight: 700;
    color: var(--electric); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px;
}
.cta-inline__badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--electric); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
.cta-inline__headline {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -.035em; line-height: 1.1;
    margin-bottom: 28px; max-width: 680px;
}
.cta-inline__headline em {
    font-style: normal;
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 60%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-inline__triggers {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 0;
}
.cta-inline__trigger {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.9); border: 1px solid rgba(9,132,227,.1);
    border-radius: 14px; padding: 12px 18px;
    font-size: .88rem; font-weight: 600; color: var(--text);
    transition: all .3s var(--ease);
    box-shadow: 0 2px 10px rgba(9,132,227,.05);
}
.cta-inline__trigger:hover {
    border-color: rgba(9,132,227,.28); background: #fff;
    box-shadow: 0 6px 20px rgba(9,132,227,.1); transform: translateY(-2px);
}
.cta-inline__trigger i { color: var(--electric); font-size: .95rem; flex-shrink: 0; }
.cta-inline__urgency {
    color: var(--text-muted); font-size: .95rem; line-height: 1.72;
    margin: 24px 0 0; max-width: 600px;
    padding: 16px 20px;
    background: rgba(9,132,227,.04); border-left: 3px solid var(--electric);
    border-radius: 0 12px 12px 0;
}
.cta-inline__urgency strong { color: var(--navy); font-weight: 700; }
.cta-inline__btns { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.cta-inline__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; border-radius: 100px;
    font-weight: 700; font-size: .93rem;
    text-decoration: none; transition: all .35s var(--ease); border: 1.5px solid;
    white-space: nowrap;
}
.cta-inline__btn--wa { background: #25d366; border-color: #25d366; color: #fff !important; }
.cta-inline__btn--wa:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.4); color: #fff !important; }
.cta-inline__btn--cal { background: var(--electric); border-color: var(--electric); color: #fff !important; }
.cta-inline__btn--cal:hover { background: #0773c5; border-color: #0773c5; color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(9,132,227,.4); }
.cta-inline__stat {
    background: rgba(9,132,227,.06); border: 1px solid rgba(9,132,227,.14);
    border-radius: 18px; padding: 18px 20px; width: 100%; text-align: center;
}
.cta-inline__stat-val { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.cta-inline__stat-lbl { font-size: .76rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; line-height: 1.3; }
@media(max-width:900px) {
    .cta-inline__layout { grid-template-columns: 1fr; gap: 32px; }
    .cta-inline__triggers { grid-template-columns: 1fr; }
    .cta-inline__btns { flex-direction: row; flex-wrap: wrap; }
    .cta-inline__btn { flex: 1 1 auto; }
    .cta-inline__right { min-width: 0; width: 100%; }
}

/* =============================================
   SIDEBAR
============================================= */
.disease-sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: var(--cloud-alt); border: 1px solid rgba(9,132,227,.08);
    border-radius: 20px; overflow: hidden; margin-bottom: 16px;
}
.sidebar-card__header {
    padding: 16px 20px 12px; border-bottom: 1px solid rgba(9,132,227,.07);
    font-size: .7rem; font-weight: 700; color: var(--electric);
    text-transform: uppercase; letter-spacing: 2.5px;
    display: flex; align-items: center; gap: 8px;
}
.sidebar-card__header::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--electric); flex-shrink: 0; }
.sidebar-nav { list-style: none; padding: 10px 10px 10px; margin: 0; }
.sidebar-nav li { margin-bottom: 2px; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 11px;
    text-decoration: none; font-size: .84rem; font-weight: 500;
    color: var(--text-muted); transition: all .3s var(--ease);
}
.sidebar-nav a:hover { background: var(--cloud); color: var(--electric); }
.sidebar-nav a.active { background: var(--electric); color: #fff; font-weight: 700; box-shadow: 0 4px 14px rgba(9,132,227,.28); }
.sidebar-nav .num {
    font-size: .68rem; font-weight: 700; width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.05); color: var(--text-muted); transition: all .3s var(--ease);
}
.sidebar-nav a.active .num { background: rgba(255,255,255,.2); color: #fff; }
.sidebar-nav a:hover .num { background: rgba(9,132,227,.1); color: var(--electric); }
.sidebar-contact {
    background: var(--navy); border-radius: 20px; padding: 24px 20px; margin-bottom: 16px;
    position: relative; overflow: hidden;
}
.sidebar-contact::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(9,132,227,.5), transparent);
}
.sidebar-contact__title { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sidebar-contact__sub { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 18px; line-height: 1.5; }
.sidebar-contact__btn {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 11px 16px; border-radius: 12px;
    text-decoration: none; font-size: .82rem; font-weight: 700;
    transition: all .3s var(--ease); margin-bottom: 8px; border: 1px solid;
}
.sidebar-contact__btn--wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.25); color: #25d366 !important; }
.sidebar-contact__btn--wa:hover { background: #25d366; color: #fff !important; border-color: #25d366; }
.sidebar-contact__btn--cal { background: rgba(9,132,227,.1); border-color: rgba(9,132,227,.25); color: var(--sky) !important; }
.sidebar-contact__btn--cal:hover { background: var(--electric); color: #fff !important; border-color: var(--electric); }
.sidebar-hours {
    background: var(--cloud-alt); border: 1px solid rgba(9,132,227,.08);
    border-radius: 16px; padding: 18px 18px;
}
.sidebar-hours__title { font-size: .68rem; font-weight: 700; color: var(--electric); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.sidebar-hours__row { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; margin-bottom: 6px; }
.sidebar-hours__row span:first-child { color: var(--text-muted); font-weight: 500; }
.sidebar-hours__row span:last-child { color: var(--text); font-weight: 700; }
.sidebar-hours__badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(0,206,201,.1); border: 1px solid rgba(0,206,201,.2);
    border-radius: 100px; padding: 4px 12px;
    font-size: .66rem; font-weight: 700; color: var(--cyan); margin-top: 8px;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
    background: var(--navy); position: relative; overflow: hidden;
}
.contact-section::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 50vw; height: 50vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(9,132,227,.08) 0%, transparent 60%);
    pointer-events: none;
}
.contact-section::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 40vw; height: 40vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,206,201,.05) 0%, transparent 60%);
    pointer-events: none;
}
.contact-section .section-title { color: var(--white); }
.contact-section .section-label {
    color: var(--cyan); background: rgba(0,206,201,.08); border-color: rgba(0,206,201,.18);
}
.contact-section .section-label::before { background: var(--cyan); }
.contact__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; position: relative; z-index: 1;
}
.contact__map-card {
    grid-column: 1 / -1; position: relative;
    border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 48px rgba(0,0,0,.3);
    aspect-ratio: 21/9;
}
.contact__map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact__card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px; padding: 32px 28px;
    transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.contact__card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(9,132,227,.4), transparent);
    opacity: 0; transition: opacity .4s;
}
.contact__card:hover {
    background: rgba(255,255,255,.07); border-color: rgba(9,132,227,.2);
    transform: translateY(-4px); box-shadow: 0 16px 48px rgba(9,132,227,.1);
}
.contact__card:hover::before { opacity: 1; }
.contact__card-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(9,132,227,.12), rgba(0,206,201,.08));
    border: 1px solid rgba(9,132,227,.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: all .4s var(--ease);
}
.contact__card:hover .contact__card-icon {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    border-color: transparent; box-shadow: 0 6px 20px rgba(9,132,227,.3);
}
.contact__card-icon i { font-size: 1.3rem; color: var(--sky); transition: color .4s; }
.contact__card:hover .contact__card-icon i { color: var(--white); }
.contact__card h3 { font-size: 1.08rem; font-weight: 700; color: var(--white); margin: 0 0 8px; }
.contact__card p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.45); margin: 0; }
.contact__card .hours-detail { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0 0 4px; }
.hours-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,206,201,.1); border: 1px solid rgba(0,206,201,.2);
    border-radius: 100px; padding: 5px 16px;
    font-size: .72rem; font-weight: 700; color: var(--cyan); margin-top: 8px;
}
.contact__action-card {
    grid-column: 1 / -1;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px; padding: 36px 32px;
    display: flex; gap: 16px; flex-wrap: wrap;
    align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.contact__action-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 100px;
    text-decoration: none; font-weight: 700; font-size: .92rem;
    transition: all .35s var(--ease); border: 1px solid;
}
.contact__action-btn--wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.25); color: #25d366 !important; }
.contact__action-btn--wa:hover { background: #25d366; color: var(--white) !important; border-color: #25d366; box-shadow: 0 8px 28px rgba(37,211,102,.3); transform: translateY(-2px); }
.contact__action-btn--email { background: rgba(9,132,227,.08); border-color: rgba(9,132,227,.2); color: var(--sky) !important; }
.contact__action-btn--email:hover { background: var(--electric); color: var(--white) !important; border-color: var(--electric); box-shadow: 0 8px 28px rgba(9,132,227,.3); transform: translateY(-2px); }
.contact__action-btn--phone { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.7) !important; }
.contact__action-btn--phone:hover { background: rgba(255,255,255,.12); color: var(--white) !important; border-color: rgba(255,255,255,.25); transform: translateY(-2px); }

/* =============================================
   CTA BAND
============================================= */
.cta-band { background: var(--navy); position: relative; overflow: hidden; }
.cta-band::before {
    content: ''; position: absolute; top: 50%; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(9,132,227,.5) 20%, rgba(116,185,255,.6) 50%, rgba(9,132,227,.5) 80%, transparent 100%);
    filter: blur(1px); z-index: 0; opacity: .6;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--navy) !important;
    text-decoration: none; padding: 16px 40px; border-radius: 100px;
    font-weight: 800; font-size: 1rem; transition: all .35s var(--ease);
    box-shadow: 0 4px 24px rgba(255,255,255,.15);
}
.cta-band__btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(255,255,255,.22); color: var(--royal) !important; }

/* Partículas flotantes CTA */
.cta-band__particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: visible; }
.cta-band__p {
    position: absolute; border-radius: 50%;
    animation: p-drift-1 linear infinite;
    opacity: 0;
}
/* 8 direcciones aleatorias — JS asigna p-drift-1…8 por partícula */
@keyframes p-drift-1 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.85} 90%{opacity:.3} 100%{transform:translate(50px,-80px);opacity:0} }
@keyframes p-drift-2 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.75} 90%{opacity:.25} 100%{transform:translate(-55px,-65px);opacity:0} }
@keyframes p-drift-3 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.85} 90%{opacity:.3}  100%{transform:translate(65px,70px);opacity:0} }
@keyframes p-drift-4 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.7}  90%{opacity:.2}  100%{transform:translate(-45px,80px);opacity:0} }
@keyframes p-drift-5 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.8}  90%{opacity:.28} 100%{transform:translate(90px,10px);opacity:0} }
@keyframes p-drift-6 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.7}  90%{opacity:.22} 100%{transform:translate(-85px,-35px);opacity:0} }
@keyframes p-drift-7 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.85} 90%{opacity:.3}  100%{transform:translate(20px,95px);opacity:0} }
@keyframes p-drift-8 { 0%{transform:translate(0,0);opacity:0} 10%{opacity:.72} 90%{opacity:.24} 100%{transform:translate(-90px,35px);opacity:0} }
/* Legado — páginas pre-rediseño */
@keyframes p-rise { 0%{transform:translateY(0) scale(1);opacity:0} 8%{opacity:1} 88%{opacity:.7} 100%{transform:translateY(-160px) scale(.3);opacity:0} }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 52px 0 28px; }
.footer-logo-text { font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.32); margin-top: 4px; margin-bottom: 24px; }
.footer-social a {
    color: rgba(255,255,255,.38); font-size: 1.35rem;
    margin: 0 10px; transition: all .3s var(--ease); text-decoration: none;
}
.footer-social a:hover { color: var(--sky); transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 24px 0; }
.footer-meta { font-size: .78rem; color: rgba(255,255,255,.22); }
.footer-meta a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .3s; }
.footer-meta a:hover { color: rgba(255,255,255,.65); }

/* =============================================
   DISEASES STRIP — Horizontal Scroll Dinámico
============================================= */
.diseases-strip { margin-bottom: 48px; }
.diseases-strip__header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px;
}
.diseases-strip__label {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--electric);
}
.diseases-strip__scroll-hint {
    font-size: .7rem; font-weight: 600; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px; opacity: .65;
    white-space: nowrap;
}
.diseases-strip__scroll-hint i { font-size: .85rem; color: var(--electric); }
.diseases-strip__nav-wrap {
    position: relative;
    overflow: hidden;
}
.diseases-strip__nav-wrap::before,
.diseases-strip__nav-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px;
    pointer-events: none; z-index: 2;
}
.diseases-strip__nav-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 20%, transparent 100%);
}
.diseases-strip__nav-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 20%, transparent 100%);
}
.diseases-strip__track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 6px 0 14px;
    cursor: grab;
    user-select: none;
    will-change: transform;
}
.diseases-strip__track:active { cursor: grabbing; }
.diseases-strip__track a {
    flex: 0 0 auto;
    min-width: 130px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 10px; padding: 20px 16px 16px;
    border-radius: 20px; font-size: .83rem; font-weight: 600;
    color: var(--text-muted); text-decoration: none;
    background: var(--cloud-alt);
    border: 1.5px solid rgba(9,132,227,.07);
    transition: color .28s var(--ease), border-color .28s var(--ease),
                box-shadow .28s var(--ease), transform .28s var(--ease);
    position: relative; overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.diseases-strip__track a::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(9,132,227,.07) 0%, rgba(116,185,255,.04) 100%);
    opacity: 0; transition: opacity .28s;
}
.diseases-strip__track a:hover {
    color: var(--electric); border-color: rgba(9,132,227,.22);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(9,132,227,.13);
}
.diseases-strip__track a:hover::after { opacity: 1; }
.diseases-strip__track a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--electric) 0%, var(--royal) 100%);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(9,132,227,.38);
    transform: translateY(-5px);
}
.ds-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(9,132,227,.1); border: 1px solid rgba(9,132,227,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.22rem; color: var(--electric);
    transition: all .28s var(--ease); flex-shrink: 0;
    position: relative; z-index: 1;
}
.diseases-strip__track a:hover:not(.active) .ds-icon {
    background: rgba(9,132,227,.16); border-color: rgba(9,132,227,.32);
    transform: scale(1.1);
}
.diseases-strip__track a.active .ds-icon {
    background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.32);
    color: #fff;
}
.diseases-strip__track a span { position: relative; z-index: 1; line-height: 1.3; }

/* =============================================
   BENTO GRID DASHBOARD
============================================= */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "what    causes"
        "symp    symp"
        "comp    risk"
        "treat   treat";
    gap: 20px;
    margin-bottom: 48px;
}

.bento-card {
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.bento-card:hover { transform: translateY(-6px); }

.bento-card--what {
    grid-area: what;
    background: var(--cloud-alt);
    border: 1px solid rgba(9,132,227,.1);
}
.bento-card--what:hover { box-shadow: 0 24px 64px rgba(9,132,227,.13); border-color: rgba(9,132,227,.24); }

.bento-card--causes {
    grid-area: causes;
    background: linear-gradient(145deg, #fff 0%, rgba(9,132,227,.04) 100%);
    border: 1px solid rgba(9,132,227,.1);
    display: flex; flex-direction: column;
}
.bento-card--causes:hover { box-shadow: 0 24px 64px rgba(9,132,227,.1); border-color: rgba(9,132,227,.22); }
.bento-card--causes .bento-title { margin-bottom: 16px; }
.bento-card--causes .bento-cause-list { flex: 1; }
.bento-card--causes .bento-cause-icon { width: 54px; height: 54px; border-radius: 14px; }
.bento-card--causes .bento-cause-icon i { font-size: 1.3rem; }

.bento-card--symp {
    grid-area: symp;
    background: linear-gradient(155deg, #0c1e38 0%, #0a1628 100%);
    border: 1px solid rgba(255,255,255,.06);
}
.bento-card--symp:hover { box-shadow: 0 24px 64px rgba(9,132,227,.22); border-color: rgba(9,132,227,.22); }
.bento-card--symp::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(9,132,227,.55) 40%, rgba(0,206,201,.4) 60%, transparent 90%);
}

.bento-card--comp {
    grid-area: comp;
    background: linear-gradient(155deg, #fff 0%, #fff4f3 100%);
    border: 1px solid rgba(214,48,49,.1);
}
.bento-card--comp:hover { box-shadow: 0 24px 64px rgba(214,48,49,.1); border-color: rgba(214,48,49,.22); }
.bento-card--comp::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 10%, #e17055 40%, #d63031 60%, transparent 90%);
    opacity: 0; transition: opacity .4s;
}
.bento-card--comp:hover::before { opacity: 1; }

.bento-card--risk {
    grid-area: risk;
    background: linear-gradient(155deg, #0d1f3e 0%, #0a1628 100%);
    border: 1px solid rgba(255,255,255,.06);
}
.bento-card--risk:hover { box-shadow: 0 24px 64px rgba(116,185,255,.12); border-color: rgba(116,185,255,.2); }
.bento-card--risk::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(116,185,255,.4) 50%, transparent 90%);
}

.bento-card--treat {
    grid-area: treat;
    background: linear-gradient(155deg, #0d1e38 0%, #0a1628 100%);
    border: 1px solid rgba(9,132,227,.1);
}
.bento-card--treat:hover { box-shadow: 0 24px 64px rgba(9,132,227,.2); border-color: rgba(9,132,227,.28); }
.bento-card--treat::before {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(9,132,227,.55), rgba(0,206,201,.45), transparent);
}

.bento-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.bento-card--symp  .bento-orb {
    top: -30%; right: -15%; width: 55%; padding-bottom: 55%;
    background: radial-gradient(circle, rgba(9,132,227,.14) 0%, transparent 65%);
}
.bento-card--risk  .bento-orb {
    bottom: -30%; left: -15%; width: 65%; padding-bottom: 65%;
    background: radial-gradient(circle, rgba(116,185,255,.1) 0%, transparent 65%);
}
.bento-card--treat .bento-orb {
    top: -40%; right: -5%; width: 30%; padding-bottom: 30%;
    background: radial-gradient(circle, rgba(9,132,227,.12) 0%, transparent 65%);
}

.bento-label {
    font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3.5px;
    margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
}
.bento-card--what   .bento-label,
.bento-card--causes .bento-label  { color: var(--electric); }
.bento-card--symp   .bento-label,
.bento-card--risk   .bento-label,
.bento-card--treat  .bento-label  { color: var(--cyan); }
.bento-card--comp   .bento-label  { color: #d63031; }
.bento-label::before { content: ''; width: 20px; height: 2px; border-radius: 1px; flex-shrink: 0; }
.bento-card--what   .bento-label::before,
.bento-card--causes .bento-label::before { background: var(--electric); }
.bento-card--symp   .bento-label::before,
.bento-card--risk   .bento-label::before,
.bento-card--treat  .bento-label::before { background: var(--cyan); }
.bento-card--comp   .bento-label::before { background: #d63031; }

.bento-title {
    font-size: 1.4rem; font-weight: 800; margin-bottom: 22px;
    letter-spacing: -.03em; line-height: 1.15;
}
.bento-card--what   .bento-title,
.bento-card--causes .bento-title,
.bento-card--comp   .bento-title { color: var(--navy); }
.bento-card--symp   .bento-title,
.bento-card--risk   .bento-title,
.bento-card--treat  .bento-title { color: #fff; }

.bento-what-body { display: flex; gap: 24px; align-items: flex-start; }
.bento-what-copy { flex: 1; min-width: 0; }
.bento-what-copy p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 24px; }
.bento-what-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.bento-stat-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 14px;
    background: rgba(9,132,227,.06); border: 1px solid rgba(9,132,227,.12);
    transition: all .3s var(--ease);
}
.bento-stat-pill:hover { background: rgba(9,132,227,.1); border-color: rgba(9,132,227,.22); }
.bento-stat-pill__val { font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.bento-stat-pill__lbl { font-size: .78rem; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
.bento-stat-pill i { font-size: 1.1rem; color: var(--electric); }
.bento-what-ahi { flex: 0 0 210px; }
.bento-ahi-ttl {
    font-size: .7rem; font-weight: 700; color: var(--electric);
    text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 18px;
    display: flex; align-items: center; gap: 8px;
}
.bento-what-ahi .ahi-row { margin-bottom: 16px; }
.bento-what-ahi .ahi-label { font-size: .8rem; color: var(--text-muted); width: 70px; font-weight: 600; }
.bento-what-ahi .ahi-bar-wrap { height: 9px; border-radius: 5px; }
.bento-what-ahi .ahi-val { font-size: .76rem; color: var(--text); font-weight: 700; width: 48px; }

.bento-sym-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bento-sym-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 34px 16px 26px;
    border-radius: 18px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    cursor: default; transition: all .35s var(--ease);
}
.bento-sym-item:hover {
    background: rgba(9,132,227,.12); border-color: rgba(9,132,227,.3);
    transform: translateY(-4px); box-shadow: 0 12px 36px rgba(9,132,227,.18);
}
.bento-sym-icon {
    width: 72px; height: 72px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(9,132,227,.16), rgba(0,206,201,.1));
    border: 1px solid rgba(9,132,227,.22);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; transition: all .4s var(--ease);
}
.bento-sym-item:hover .bento-sym-icon {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    border-color: transparent; box-shadow: 0 10px 30px rgba(9,132,227,.42);
    transform: scale(1.06);
}
.bento-sym-icon i { font-size: 1.7rem; color: var(--sky); transition: color .35s; }
.bento-sym-item:hover .bento-sym-icon i { color: #fff; }
.bento-sym-item span { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.58); line-height: 1.35; }
.bento-sym-item:hover span { color: rgba(255,255,255,.92); }

.bento-cause-list { display: flex; flex-direction: column; gap: 10px; }
.bento-cause-item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 16px; border-radius: 14px;
    background: rgba(9,132,227,.04); border: 1px solid rgba(9,132,227,.08);
    transition: all .3s var(--ease);
}
.bento-cause-item:hover {
    background: rgba(9,132,227,.09); border-color: rgba(9,132,227,.2);
    transform: translateX(6px); box-shadow: 4px 0 20px rgba(9,132,227,.08);
}
.bento-cause-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(9,132,227,.1), rgba(0,206,201,.07));
    border: 1px solid rgba(9,132,227,.14);
    display: flex; align-items: center; justify-content: center;
    transition: all .35s var(--ease);
}
.bento-cause-item:hover .bento-cause-icon {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    border-color: transparent; box-shadow: 0 5px 16px rgba(9,132,227,.28);
}
.bento-cause-icon i { font-size: 1.05rem; color: var(--electric); transition: color .35s; }
.bento-cause-item:hover .bento-cause-icon i { color: #fff; }
.bento-cause-item span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.bento-cause-item:hover span { color: var(--text); }

.bento-comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bento-comp-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 28px 16px 24px;
    background: rgba(214,48,49,.04); border: 1px solid rgba(214,48,49,.1);
    border-radius: 18px; transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.bento-comp-item::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #e17055, #d63031, transparent);
    transform: scaleX(0); transform-origin: center; transition: transform .4s var(--ease);
}
.bento-comp-item:hover::after { transform: scaleX(1); }
.bento-comp-item:hover { border-color: rgba(214,48,49,.25); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(214,48,49,.12); }
.bento-comp-icon {
    width: 66px; height: 66px; border-radius: 18px;
    background: rgba(214,48,49,.08); border: 1px solid rgba(214,48,49,.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; transition: all .35s var(--ease);
}
.bento-comp-item:hover .bento-comp-icon {
    background: linear-gradient(135deg, #e17055, #d63031);
    border-color: transparent; box-shadow: 0 8px 24px rgba(214,48,49,.32);
    transform: scale(1.06);
}
.bento-comp-icon i { font-size: 1.55rem; color: #d63031; transition: color .35s; }
.bento-comp-item:hover .bento-comp-icon i { color: #fff; }
.bento-comp-item span { font-size: .84rem; font-weight: 700; color: var(--navy); line-height: 1.3; }

.bento-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.bento-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 16px; border-radius: 100px;
    font-size: .81rem; font-weight: 600;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.65); transition: all .3s var(--ease);
}
.bento-chip i { font-size: .88rem; color: var(--sky); }
.bento-chip:hover {
    background: rgba(9,132,227,.15); border-color: rgba(9,132,227,.35);
    color: #fff; transform: translateY(-2px); box-shadow: 0 5px 18px rgba(9,132,227,.16);
}

.bento-treat-inner { position: relative; }
.bento-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 20px; position: relative;
}
.bento-steps::before {
    content: ''; position: absolute;
    top: 30px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
    height: 1px;
    background: linear-gradient(90deg, rgba(9,132,227,.4), rgba(0,206,201,.4));
    z-index: 0;
}
.bento-step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 0 12px 0; position: relative; z-index: 1;
}
.bento-step__num {
    width: 60px; height: 60px; border-radius: 18px;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(9,132,227,.35);
    transition: all .4s var(--ease);
}
.bento-step:hover .bento-step__num {
    transform: scale(1.1); box-shadow: 0 12px 32px rgba(9,132,227,.5);
}
.bento-step__title { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bento-step__desc { font-size: .77rem; color: rgba(255,255,255,.42); line-height: 1.55; }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal { transition: opacity .65s var(--ease), transform .65s var(--ease); }
body.js-enabled .reveal { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* =============================================
   RESPONSIVE
============================================= */
@media(max-width:1199px) {
    .bento-grid {
        grid-template-areas:
            "what    what"
            "causes  causes"
            "symp    symp"
            "comp    risk"
            "treat   treat";
    }
    .bento-sym-grid { grid-template-columns: repeat(4, 1fr); }
}
@media(max-width:991px) {
    .disease-content { padding: 48px 0; }
    .disease-hero { padding: 110px 0 60px; }
    .disease-hero__visual { margin-top: 40px; }
    .bento-steps::before { display: none; }
    .bento-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
    .bento-step { padding: 0; }
    .bento-what-body { flex-direction: column; gap: 20px; }
    .bento-what-ahi { flex: auto; width: 100%; }
    .diseases-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media(max-width:768px) {
    .disease-hero { padding: 100px 0 50px; }
    .disease-hero__title { font-size: 2.2rem; }
    .cta-inline { padding: 44px 28px; }
    .contact__grid { grid-template-columns: 1fr; }
    .contact__map-card { aspect-ratio: 4/3; order: 2; }
    .contact__card--location { order: 1; }
    .contact__action-card { flex-direction: column; order: 3; }
    .contact__action-btn { width: 100%; justify-content: center; }
    .contact__card--hours { order: 4; }
    .bento-sym-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-comp-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-what-stats { flex-wrap: wrap; }
    .bento-card { padding: 28px 22px; }
}
@media(max-width:576px) {
    .disease-hero__stats { gap: 8px; }
    .disease-hero__stat { font-size: .72rem; padding: 6px 12px; }
    .cta-inline__btns { flex-direction: column; }
    .cta-inline__btn { justify-content: center; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "what" "causes" "symp" "comp" "risk" "treat";
    }
    .bento-sym-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-comp-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-steps { grid-template-columns: 1fr 1fr; }
    .bento-card { padding: 24px 18px; }
}
@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
