:root {
    --navy-950: #031128;
    --navy-900: #061a3a;
    --navy-800: #0b2852;
    --green: #39b54a;
    --green-soft: #7ddd89;
    --green-pale: #e7f7ea;
    --ink: #0d1d31;
    --muted: #5f6d7e;
    --line: #dce2e8;
    --surface: #f5f7fa;
    --white: #ffffff;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(6, 26, 58, .12);
    --container: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    transform: translateY(-160%);
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #26813a;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow--light { color: var(--green-soft); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
    margin-bottom: 24px;
    font-weight: 760;
    line-height: .98;
    letter-spacing: -.055em;
}
h1 { font-size: clamp(3.4rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4.8vw, 4.8rem); }
h3 { font-size: 1.35rem; line-height: 1.15; letter-spacing: -.025em; }
p { color: var(--muted); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible, .quick-card:focus-visible, .treatment-card:focus-visible, .contact-card:focus-visible, .other-grid a:focus-visible, .related-grid a:focus-visible, .social-links a:focus-visible, .unit-contact-link:focus-visible { outline: 3px solid var(--green-soft); outline-offset: 3px; }
.button--small { min-height: 45px; padding-inline: 18px; font-size: .78rem; }
.button--green { color: #061e10; background: var(--green-soft); }
.button--green:hover { background: #94e49d; }
.button--dark { color: var(--white); background: var(--navy-900); }
.button--outline { color: var(--navy-900); border-color: #aeb9c7; background: transparent; }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.34); background: transparent; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
}
.text-link span { color: var(--green); }
.text-link--light { color: var(--white); }
.inline-actions, .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ui-icon { width: 1.45rem; height: 1.45rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button .ui-icon { width: 1.15rem; height: 1.15rem; margin-right: 8px; }
.card-index { color: var(--green); font-size: .72rem; font-weight: 800; }
.card-icon {
    display: grid !important;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 17px;
    color: #267c38 !important;
    background: var(--green-pale);
}
.card-icon .ui-icon { width: 32px; height: 32px; }

.topbar { color: #cdd6e2; background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner { display: flex; align-items: center; gap: 20px; min-height: 35px; font-size: .7rem; }
.topbar__inner a { margin-left: auto; color: var(--white); text-decoration: none; font-weight: 700; }
.topbar__group { color: var(--green-soft); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: rgba(6, 26, 58, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    min-height: 82px;
}
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.site-brand img { display: block; width: 150px; height: auto; }
.site-brand span {
    padding-left: 11px;
    border-left: 1px solid rgba(255,255,255,.28);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: .65fr 1.35fr;
    gap: 48px;
    max-height: calc(100vh - 117px);
    padding: 30px max(24px, calc((100vw - var(--container)) / 2));
    overflow: auto;
    color: var(--white);
    background: var(--navy-900);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 60px rgba(3,17,40,.35);
}
.main-nav.is-open { display: grid; }
.main-nav__primary { display: grid; align-content: start; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 8px; }
.main-nav__services { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 8px; }
.main-nav__title { grid-column: 1 / -1; margin-bottom: 8px; color: var(--green-soft); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 10px 12px; border-radius: 12px; color: #d7dfeb; text-decoration: none; font-size: .82rem; font-weight: 700; }
.main-nav a:hover, .main-nav a.is-active { color: var(--white); background: rgba(255,255,255,.08); }
.main-nav a small { display: block; color: var(--green-soft); font-size: .62rem; }
.main-nav__services a > span { line-height: 1.25; }
.menu-toggle { display: inline-flex; align-items: center; gap: 10px; min-width: 88px; height: 45px; padding: 0 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: var(--white); background: transparent; font-size: .78rem; font-weight: 800; }
.menu-toggle__bars { display: grid; gap: 4px; width: 20px; }
.menu-toggle__bars i { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 690px;
    color: var(--white);
    background: var(--navy-950);
}
.home-hero__image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.home-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,17,40,.98) 0%, rgba(3,17,40,.86) 42%, rgba(3,17,40,.2) 72%, rgba(3,17,40,.06) 100%); }
.home-hero__content { padding-top: 112px; padding-bottom: 90px; }
.home-hero h1 { max-width: 840px; }
.home-hero__content > p { max-width: 610px; margin-bottom: 34px; color: #c5d0df; font-size: 1.16rem; line-height: 1.6; }
.hero-location {
    position: absolute;
    right: max(4vw, 24px);
    bottom: 54px;
    padding: 22px 26px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(3,17,40,.45);
    backdrop-filter: blur(10px);
}
.hero-location small, .hero-location strong { display: block; }
.hero-location small { margin-bottom: 11px; color: #b6c4d6; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-location strong { font-size: 1.5rem; line-height: 1.05; }
.stats-bar { color: var(--white); background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div, .stats-grid > a { display: flex; flex-direction: column; justify-content: center; min-height: 144px; padding: 26px; border-right: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.stats-grid > :first-child { border-left: 1px solid rgba(255,255,255,.12); }
.stats-grid strong { margin-bottom: 8px; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -.04em; }
.stats-grid span { max-width: 170px; color: #aebbd0; font-size: .77rem; line-height: 1.4; }
.stats-grid > a { justify-content: space-between; color: #082013; background: var(--green-soft); }
.stats-grid > a span { color: #174b26; }
.stats-grid > a strong { margin: 0; font-size: 1rem; }

.quick-section, .units-section, .faq-section, .story-section, .network-section, .all-treatments, .contact-channels, .related-section, .treatment-content { padding: 112px 0; }
.section--light { background: var(--surface); }
.section-heading { margin-bottom: 46px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-heading--row > p { max-width: 430px; margin: 0; }
.section-heading--center { max-width: 860px; margin-inline: auto; text-align: center; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quick-card {
    position: relative;
    min-height: 230px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    transition: color .22s ease, background-color .22s ease;
}
.quick-card:hover { color: var(--white); background: var(--navy-900); }
.quick-card .card-index { display: block; margin-bottom: 18px; }
.quick-card .card-icon { margin-bottom: 26px; }
.quick-card:hover .card-icon { color: var(--green-soft) !important; background: rgba(125,221,137,.12); }
.quick-card strong, .quick-card small { display: block; }
.quick-card strong { margin-bottom: 6px; font-size: 1.15rem; }
.quick-card small { color: var(--muted); }
.quick-card:hover small { color: #b9c5d4; }
.quick-card b { position: absolute; right: 22px; bottom: 22px; color: var(--green); }

.treatments-section, .process-section, .values-section, .other-contacts, .evaluation-section, .service-area { padding: 112px 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.treatment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy-900);
    background: var(--white);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.treatment-card:hover { transform: translateY(-5px); border-color: #b8c7d6; box-shadow: var(--shadow); }
.treatment-card .card-index { margin-bottom: 18px; }
.treatment-card .card-icon { margin-bottom: auto; }
.treatment-card small { display: block; margin-bottom: 10px; color: #438051; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.treatment-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.treatment-card p { margin: 0; font-size: .88rem; }
.treatment-card b { position: absolute; right: 24px; top: 23px; color: var(--green); }
.treatment-grid--all { grid-template-columns: repeat(3, 1fr); }

.about-band { padding: 112px 0; color: var(--white); background: var(--navy-950); }
.about-band__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 10%; }
.about-band__visual {
    position: relative;
    display: grid;
    place-content: center;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57,181,74,.28), transparent 58%);
}
.about-band__visual img { position: relative; z-index: 2; width: clamp(150px, 18vw, 230px); height: auto; }
.about-band__visual div { position: absolute; inset: 10%; border: 1px solid rgba(125,221,137,.3); border-radius: 50%; }
.about-band__visual small { position: absolute; right: 10%; bottom: 14%; color: var(--green-soft); font-weight: 750; text-transform: uppercase; }
.about-band__content h2 { max-width: 700px; }
.about-band__content > p { max-width: 650px; color: #b9c5d5; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 30px 0 36px; }
.check-list li { position: relative; margin: 13px 0; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-soft); font-weight: 800; }
.check-list--dark { color: #e6ebf2; }

.unit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.unit-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.unit-card__number { margin-bottom: 18px; color: var(--green); font-size: .72rem; font-weight: 800; }
.unit-card__icon { margin-bottom: 26px; }
.unit-card > small { color: #3b8050; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.unit-card h3 { margin: 12px 0 18px; font-size: 2.1rem; }
.unit-card address { color: var(--muted); }
.unit-card__meta { display: grid; gap: 4px; margin: 26px 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.unit-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.unit-contact-link { display: inline-flex; align-items: center; gap: 7px; min-height: 45px; padding: 0 10px; border-radius: 10px; color: var(--navy-900); text-decoration: none; font-size: .82rem; font-weight: 800; }
.unit-contact-link--whatsapp { color: #176326; background: var(--green-pale); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; }
.process-grid > div { min-height: 260px; padding: 26px; border-top: 1px solid #bdc7d2; border-right: 1px solid #d5dce4; }
.process-grid > div:first-child { border-left: 1px solid #d5dce4; }
.process-grid span { color: var(--green); font-size: .7rem; font-weight: 800; }
.process-grid .card-icon { margin-top: 22px; }
.process-grid h3 { margin-top: 24px; }
.process-grid p { margin-bottom: 0; font-size: .88rem; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; align-items: start; }
.faq-grid > div:first-child { position: sticky; top: 130px; }
.faq-grid > div:first-child p { max-width: 460px; margin-bottom: 30px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 28px 0; border: 0; color: var(--navy-900); background: transparent; text-align: left; font-weight: 750; }
.accordion-item button b { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--green); transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.accordion-panel { padding: 0 48px 24px 0; }
.accordion-panel p { margin: 0; }

.inner-hero {
    padding: 110px 0 100px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 35%, rgba(57,181,74,.22), transparent 21%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.inner-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 8%; }
.inner-hero h1 { max-width: 900px; margin-bottom: 0; font-size: clamp(3.6rem, 7vw, 6.8rem); }
.inner-hero__grid > div:last-child > p { color: #c2cedd; font-size: 1.05rem; }
.mini-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.mini-stats div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); }
.mini-stats strong, .mini-stats span { display: block; }
.mini-stats strong { font-size: 2rem; }
.mini-stats span { color: #aebcd0; font-size: .76rem; }

.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10%; }
.story-grid h2 { max-width: 620px; }
.prose { max-width: 690px; }
.prose p { margin-bottom: 24px; font-size: 1.05rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.values-grid article { min-height: 275px; padding: 26px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.values-grid article:last-child { border-right: 1px solid var(--line); }
.values-grid article > span:first-child { color: var(--green); font-size: .72rem; font-weight: 800; }
.values-grid .card-icon { margin-top: 20px; }
.values-grid h3 { margin-top: 24px; }
.values-grid p { margin: 0; font-size: .86rem; }
.network-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 9%; align-items: center; }
.network-mark { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; color: var(--white); background: var(--navy-900); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: .85; letter-spacing: -.06em; }
.network-grid > div:last-child > p { max-width: 720px; font-size: 1.05rem; }

.notice-band { padding: 76px 0; color: var(--white); background: var(--navy-950); }
.notice-band__inner { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 50px; }
.notice-band h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 4rem); }
.notice-band p { margin: 0; color: #bdc8d8; }
.all-treatments .section-heading { margin-bottom: 48px; }

.unit-details { padding: 70px 0 110px; }
.unit-detail {
    display: grid;
    grid-template-columns: 80px 1.1fr .9fr;
    gap: 5%;
    padding: 58px 0;
    border-bottom: 1px solid var(--line);
}
.unit-detail__index { color: var(--green); font-size: .75rem; font-weight: 800; }
.unit-detail h2 { margin-bottom: 24px; }
.unit-detail address { color: var(--muted); font-size: 1.05rem; }
.unit-detail__icon { margin-bottom: 24px; }
.unit-reference { max-width: 650px; margin: 22px 0 0; padding-left: 16px; border-left: 3px solid var(--green); font-size: .9rem; }
.unit-reference strong { color: var(--ink); }
.unit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.unit-detail__info { display: grid; gap: 24px; }
.unit-detail__info > div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.unit-detail__info small, .unit-detail__info strong, .unit-detail__info span, .unit-detail__info a { display: block; }
.unit-detail__info small { margin-bottom: 8px; color: #3f8050; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.unit-detail__info strong { margin-bottom: 5px; }
.unit-detail__info span, .unit-detail__info a { color: var(--muted); font-size: .86rem; }
.service-area__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 9%; align-items: end; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}
.contact-card:hover { color: var(--white); background: var(--navy-900); }
.contact-card .card-index { color: var(--green); font-size: .72rem; font-weight: 800; }
.contact-card .card-icon { grid-column: 2; margin-top: 12px; }
.contact-card > div { grid-column: 2; }
.contact-card small { color: #3d8050; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.contact-card h2 { margin: 26px 0 10px; font-size: 2.2rem; }
.contact-card p { margin: 0; }
.contact-card:hover p { color: #b9c5d5; }
.contact-card b { position: absolute; right: 28px; top: 28px; color: var(--green); }
.other-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.other-grid a { position: relative; min-height: 260px; padding: 30px; border-radius: var(--radius); color: var(--white); background: var(--navy-900); text-decoration: none; }
.other-grid a > span:first-child { color: var(--green-soft); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.other-grid .card-icon { margin-top: 22px; color: var(--green-soft) !important; background: rgba(125,221,137,.12); }
.other-grid h3 { margin-top: 24px; font-size: 2rem; }
.other-grid p { color: #b7c3d4; }
.other-grid b { position: absolute; top: 28px; right: 28px; color: var(--green-soft); }

.treatment-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 110px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.treatment-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: block; width: max-content; margin-bottom: 70px; color: #aab9cc; font-size: .8rem; text-decoration: none; }
.breadcrumb::before { content: "← "; color: var(--green-soft); }
.treatment-hero h1 { max-width: 900px; }
.treatment-hero p { max-width: 680px; margin-bottom: 34px; color: #c0cbda; font-size: 1.08rem; }
.treatment-hero__orb { position: absolute; z-index: 1; width: 420px; height: 420px; right: -60px; bottom: -110px; border: 1px solid rgba(125,221,137,.3); border-radius: 50%; box-shadow: inset 0 0 100px rgba(57,181,74,.2), 0 0 100px rgba(57,181,74,.14); }
.treatment-content__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: start; }
.treatment-content__grid > div:first-child > p { max-width: 680px; font-size: 1.05rem; }
.medical-note { padding-left: 18px; border-left: 3px solid var(--green); font-size: .86rem !important; }
.benefit-panel { padding: 36px; border-radius: var(--radius); background: var(--surface); }
.benefit-panel > span:not(.card-icon) { color: #3c7f4c; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.benefit-panel .card-icon { margin-bottom: 24px; }
.benefit-panel ul { list-style: none; padding: 0; margin: 34px 0; }
.benefit-panel li { padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.benefit-panel li::before { content: "✓"; margin-right: 12px; color: var(--green); }
.evaluation-grid { display: grid; grid-template-columns: 120px 1fr .8fr; align-items: start; gap: 6%; }
.evaluation-index { color: var(--green); font-size: .75rem; font-weight: 800; }
.evaluation-grid h2 { margin: 0; }
.evaluation-grid p { margin-bottom: 26px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-grid a { position: relative; min-height: 270px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.related-grid .card-index { color: var(--green); font-size: .72rem; font-weight: 800; }
.related-grid .card-icon { margin-top: 20px; }
.related-grid h3 { margin-top: 24px; }
.related-grid p { font-size: .85rem; }
.related-grid b { position: absolute; top: 24px; right: 24px; color: var(--green); }

.legal-hero { padding: 90px 0; color: var(--white); background: var(--navy-900); }
.legal-hero h1 { margin-bottom: 16px; }
.legal-hero p { color: #b5c1d1; }
.legal-content { max-width: 820px; padding-top: 80px; padding-bottom: 100px; }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.8rem; letter-spacing: -.03em; }
.legal-content p { font-size: 1rem; }
.legal-content a { color: #287d3a; font-weight: 700; }
.not-found { min-height: 70vh; padding: 120px 0; color: var(--white); background: var(--navy-950); }
.not-found span { color: var(--green-soft); font-size: .75rem; font-weight: 800; }
.not-found h1 { max-width: 900px; margin-top: 30px; }
.not-found p { color: #b9c5d6; }

.site-footer { color: #c0cada; background: var(--navy-950); }
.footer-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-top: 88px; padding-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-cta h2 { max-width: 760px; margin: 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .65fr); gap: 6%; padding-top: 70px; padding-bottom: 70px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid h3 { margin-bottom: 10px; color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { color: #c0cada; text-decoration: none; font-size: .82rem; }
.footer-grid a:hover { color: var(--green-soft); }
.footer-grid span { color: #8998ad; font-size: .78rem; }
.footer-brand p { max-width: 400px; margin: 26px 0; color: #8998ad; font-size: .85rem; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.social-links .ui-icon { width: 21px; height: 21px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #728198; font-size: .7rem; }
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 999px;
    color: #082013;
    background: var(--green-soft);
    box-shadow: 0 12px 30px rgba(3,17,40,.25);
    text-decoration: none;
    font-size: .76rem;
    font-weight: 800;
}
.floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
@media (max-width: 1050px) {
    .site-header__inner { grid-template-columns: 1fr auto auto; }
    .main-nav {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .main-nav__primary { grid-template-columns: repeat(5, 1fr); }
    .main-nav__services { grid-template-columns: repeat(3, 1fr); }
    .menu-toggle { order: 2; }
    .header-action { order: 3; }
    .stats-grid, .quick-grid, .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .treatment-grid, .treatment-grid--all { grid-template-columns: repeat(2, 1fr); }
    .about-band__grid, .story-grid, .network-grid, .faq-grid, .treatment-content__grid { gap: 6%; }
    .footer-grid { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 4%; }
}
@media (max-width: 760px) {
    .container { width: min(100% - 30px, var(--container)); }
    .topbar__group { display: none; }
    .site-header__inner { grid-template-columns: 1fr auto; min-height: 72px; }
    .site-brand img { width: 135px; }
    .header-action { display: none; }
    .main-nav { top: 100%; grid-template-columns: 1fr; max-height: calc(100vh - 180px); padding: 22px 15px 34px; }
    .main-nav__primary, .main-nav__services { grid-template-columns: 1fr; gap: 5px; }
    .main-nav a { min-height: 52px; padding: 12px 14px; font-size: .95rem; }
    .menu-toggle { min-width: 76px; padding-inline: 11px; }
    h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
    .home-hero { min-height: 680px; }
    .home-hero__image { object-position: 66% center; }
    .home-hero__overlay { background: linear-gradient(90deg, rgba(3,17,40,.98), rgba(3,17,40,.82)); }
    .home-hero__content { padding-top: 84px; padding-bottom: 170px; }
    .home-hero__content > p { font-size: 1rem; }
    .hero-location { left: 15px; right: auto; bottom: 24px; }
    .stats-grid, .quick-grid, .treatment-grid, .treatment-grid--all, .unit-grid, .process-grid, .values-grid, .contact-grid, .other-grid, .related-grid { grid-template-columns: 1fr; }
    .stats-grid > div, .stats-grid > a { min-height: 120px; border-left: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
    .quick-card { min-height: 205px; }
    .quick-card .card-index { margin-bottom: 14px; }
    .quick-card .card-icon { margin-bottom: 20px; }
    .section-heading--row, .footer-cta { align-items: flex-start; flex-direction: column; }
    .quick-section, .units-section, .faq-section, .story-section, .network-section, .all-treatments, .contact-channels, .related-section, .treatment-content, .treatments-section, .process-section, .values-section, .other-contacts, .evaluation-section, .service-area { padding: 78px 0; }
    .treatment-card { min-height: 310px; }
    .about-band { padding: 78px 0; }
    .about-band__grid, .story-grid, .network-grid, .faq-grid, .inner-hero__grid, .service-area__grid, .treatment-content__grid { grid-template-columns: 1fr; gap: 48px; }
    .about-band__visual { min-height: auto; aspect-ratio: 1; }
    .values-grid article { min-height: 230px; border-right: 1px solid var(--line); border-bottom: 0; }
    .values-grid article:last-child { border-bottom: 1px solid var(--line); }
    .values-grid h3 { margin-top: 22px; }
    .process-grid > div { min-height: 240px; border-left: 1px solid #d5dce4; border-bottom: 0; }
    .process-grid > div:last-child { border-bottom: 1px solid #d5dce4; }
    .faq-grid > div:first-child { position: static; }
    .inner-hero { padding: 76px 0; }
    .inner-hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
    .notice-band__inner { grid-template-columns: 1fr; gap: 24px; }
    .unit-detail { grid-template-columns: 1fr; gap: 24px; padding: 46px 0; }
    .unit-detail__index { margin-bottom: 10px; }
    .unit-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .unit-actions .button { width: 100%; padding-inline: 12px; }
    .contact-card { grid-template-columns: 42px 1fr; min-height: 220px; }
    .contact-card h2 { font-size: 1.8rem; }
    .treatment-hero { padding: 70px 0 88px; }
    .breadcrumb { margin-bottom: 55px; }
    .treatment-hero__orb { width: 260px; height: 260px; }
    .evaluation-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 46px 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { padding: 13px; }
}
@media (max-width: 430px) {
    .topbar__inner > span:first-child { display: none; }
    .topbar__inner a { margin-left: 0; }
    .site-brand img { width: 122px; }
    .menu-toggle__label { display: none; }
    .menu-toggle { min-width: 46px; width: 46px; justify-content: center; padding: 0; }
    .home-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
    .card-icon { width: 54px; height: 54px; flex-basis: 54px; }
    .card-icon .ui-icon { width: 29px; height: 29px; }
    .unit-actions { grid-template-columns: 1fr; }
    .unit-card__actions { align-items: stretch; flex-direction: column; }
    .unit-card__actions > * { width: 100%; justify-content: center; }
}
@media print {
    .topbar, .site-header, .site-footer, .floating-whatsapp, .button, .text-link { display: none !important; }
    body { color: #000; background: #fff; }
}
