:root {
    --ink: #242f36;
    --muted: #66686b;
    --teal: #009fe3;
    --teal-dark: #0077b6;
    --mint: #e6f7ff;
    --gold: #d7b56d;
    --line: #d7edf8;
    --bg: #f6fbfe;
    --white: #ffffff;
    --slate: #66686b;
    --shadow: 0 24px 70px rgba(0, 119, 182, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 2%, rgba(0, 159, 227, 0.1), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-fixed-cta {
    display: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(230, 247, 255, 0.92);
    border-bottom: 1px solid rgba(0, 159, 227, 0.16);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
    background: rgba(230, 247, 255, 0.97);
    box-shadow: 0 14px 32px rgba(0, 80, 126, 0.1);
}

.nav-shell {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: max-content;
    flex: 0 0 auto;
}

.brand-logo {
    display: block;
    width: 150px;
    height: 67px;
    object-fit: contain;
    object-position: left center;
    max-width: none;
}

.desktop-nav {
    display: flex;
    gap: 13px;
    align-items: center;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: #17658f;
}

.desktop-nav a:hover {
    color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.phone-link {
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-actions .btn {
    min-width: 154px;
    padding-inline: 14px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(0, 159, 227, 0.22);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--line);
}

.btn-whatsapp {
    background: #128c7e;
    color: var(--white);
    border-color: #128c7e;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    background: #075e54;
    border-color: #075e54;
}

.btn-full {
    width: 100%;
}

.menu-toggle,
.menu-close {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(14, 38, 41, 0.48);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 140;
    width: min(88vw, 380px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform 0.25s ease;
    padding: 22px 22px calc(26px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

.menu-close {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    font-size: 2rem;
}

.mobile-nav {
    display: grid;
    gap: 6px;
    margin: 34px 0;
    flex: 0 0 auto;
}

.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
}

.mobile-cta {
    margin-top: auto;
    display: grid;
    gap: 12px;
    flex: 0 0 auto;
}

.mobile-cta p {
    margin: 6px 0 0;
    color: var(--muted);
}

.hero {
    position: relative;
    min-height: 780px;
    isolation: isolate;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.emergency-ribbon {
    background: #f7fbfe;
    border-top: 2px solid var(--ink);
    border-bottom: 1px solid rgba(0, 159, 227, 0.16);
    color: var(--teal-dark);
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    padding: 7px 12px;
    min-height: 30px;
}

.compact-hero {
    min-height: calc(100svh - 112px);
    display: grid;
    align-items: center;
    padding: 28px 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 159, 227, 0.15), transparent 25rem),
        linear-gradient(135deg, var(--mint), var(--white));
}

.compact-hero::after,
.compact-hero .hero-media {
    display: none;
}

.hero-photo-card {
    position: relative;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 330px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: contain;
    object-position: center;
    background: #eef9ff;
}

.hero-photo-card figcaption {
    position: absolute;
    left: 18px;
    bottom: 10px;
    display: grid;
    gap: 2px;
    min-width: 220px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(0, 80, 126, .14);
}

.hero-photo-card figcaption::before {
    content: "✓";
    position: absolute;
    left: -18px;
    top: 14px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #d9fae7;
    color: #16a35f;
    font-weight: 900;
}

.hero-photo-card span {
    color: var(--muted);
    font-size: .88rem;
}

.home-hero-title {
    font-weight: 950;
    letter-spacing: 0;
}

.home-hero-title .hero-title-brand {
    color: var(--teal);
    text-shadow: 0 14px 34px rgba(0, 159, 227, 0.24);
}

.home-hero-title .hero-title-line {
    display: inline;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 80, 126, 0.08);
}

.review-grid strong {
    color: var(--teal-dark);
}

.review-grid-featured article {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars {
    align-self: flex-start;
    border-radius: 999px;
    background: rgba(255, 200, 87, 0.2);
    color: #7a5200;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 7px 11px;
    text-transform: uppercase;
}

.review-cta-card {
    background: var(--ink) !important;
    color: var(--white);
}

.review-cta-card span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
}

.review-cta-card h3,
.review-cta-card p {
    color: var(--white);
}

.review-cta-card .btn {
    margin-top: auto;
}

.map-frame figcaption {
    padding: 14px;
    background: var(--white);
}

.mobile-fixed-cta {
    display: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(247,251,253,0.92) 40%, rgba(247,251,253,0.28) 76%),
        radial-gradient(circle at 24% 44%, rgba(0,159,227,0.18), transparent 24rem);
}

.hero-content {
    padding: 96px 0 74px;
}

.hero-copy {
    width: min(620px, 100%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.35rem, 4.15vw, 4.05rem);
    max-width: 13ch;
    color: #0f3448;
}

.hero-lead,
.page-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #31575c;
    font-size: 1.15rem;
}

.compact-hero .hero-content {
    padding: 0;
}

.compact-hero .hero-lead {
    max-width: 620px;
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    margin-top: 18px;
}

.compact-hero h1 {
    font-size: clamp(2.45rem, 4.35vw, 4.2rem);
    line-height: .98;
    max-width: 12.5ch;
}

.hero-actions,
.center-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 34px 0 0;
}

.trust-strip div {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(217, 231, 230, 0.88);
    border-radius: 8px;
    padding: 16px;
}

.trust-strip dt {
    font-weight: 900;
}

.trust-strip dd {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 86px 0;
}

.section-tight {
    padding: 64px 0;
}

.alt {
    background: var(--white);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}

.section h2,
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.center-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.center-head p {
    color: var(--muted);
}

.benefit-grid,
.same-day-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-grid article,
.same-day-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 80, 126, 0.07);
}

.benefit-grid span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--mint);
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
}

.same-day-grid a {
    color: var(--teal-dark);
    font-weight: 900;
    text-decoration: none;
}

.narrow-section {
    max-width: 860px;
}

.concern-list {
    display: grid;
    gap: 12px;
}

.concern-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.concern-list span {
    font-size: 1.4rem;
}

.soft-red { background: #fff1f1; border-color: #ffd6d6; }
.soft-blue { background: #edf6ff; border-color: #cfe9ff; }
.soft-green { background: #ecfbf2; border-color: #cef3dd; }
.soft-yellow { background: #fff9dc; border-color: #f2e9af; }

.area-pills,
.price-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.area-pills span,
.price-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--teal-dark);
    font-weight: 800;
    font-size: .9rem;
}

.price-preview {
    background: var(--mint);
}

.responsive-price-list {
    max-width: 820px;
    margin: 22px auto 0;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
}

.modern-price-table {
    min-width: 0;
}

.modern-price-table a {
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: none;
}

.price-note {
    max-width: 820px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: .85rem;
    text-align: center;
}

.faq-wrap {
    max-width: 720px;
}

.faq-wrap h2 {
    text-align: center;
    margin-bottom: 26px;
}

.faq-wrap details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px 18px;
}

.faq-wrap summary {
    cursor: pointer;
    font-weight: 900;
}

.card-grid,
.area-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.area-card,
.process-grid article,
.appointment-form,
.price-tools,
.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(21, 58, 62, 0.08);
}

.alt .service-card,
.alt .area-card,
.alt .process-grid article {
    background: var(--bg);
}

.service-card,
.area-card,
.process-grid article {
    overflow: hidden;
}

.service-card a {
    display: grid;
    gap: 12px;
    height: 100%;
    padding: 16px;
    color: inherit;
    text-decoration: none;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
}

.area-card,
.process-grid article {
    padding: 24px;
}

.service-card span,
.process-grid span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 900;
}

.service-card h3,
.area-card h2,
.process-grid h2 {
    font-size: 1.25rem;
}

.service-card p,
.area-card p,
.process-grid p,
.check-list p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-list p {
    margin: 0;
    padding-left: 28px;
    position: relative;
}

.check-list p::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px var(--mint);
}

.appointment-grid,
.appointment-map-grid,
.registration-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: 46px;
    align-items: start;
}

.appointment-map-grid {
    grid-template-columns: minmax(320px, .9fr) minmax(320px, 1fr);
}

.registration-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
}

.registration-side {
    display: grid;
    gap: 14px;
}

.contact-panel {
    display: grid;
    gap: 8px;
    margin-top: 26px;
    padding: 22px;
}

.contact-panel span {
    color: var(--muted);
}

.appointment-form {
    padding: 26px;
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    resize: vertical;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--teal-dark);
    font-weight: 800;
}

.location-band {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.page-hero {
    padding: 96px 0 66px;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 159, 227, 0.15), transparent 25rem),
        linear-gradient(135deg, var(--mint), var(--white));
}

.page-hero h1 {
    max-width: 780px;
}

.price-tools {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: 20px;
    align-items: end;
    padding: 24px;
    margin-bottom: 28px;
}

.price-result {
    min-height: 68px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: var(--mint);
    color: var(--ink);
}

.price-result span {
    color: var(--teal-dark);
    font-weight: 900;
}

.price-result small {
    color: var(--muted);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.price-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.price-table th {
    background: #eef8f6;
    color: var(--teal-dark);
}

.area-card a {
    color: var(--teal-dark);
    font-weight: 900;
}

.site-footer {
    padding: 56px 0 28px;
    background: #122f40;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1.1fr;
    gap: 52px;
}

.footer-grid h2 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a,
.footer-brand small {
    color: #c8dede;
}

.footer-grid p {
    margin: 0 0 12px;
}

.footer-list {
    display: grid;
    gap: 9px;
}

.footer-list a {
    text-decoration: none;
}

.footer-list a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.footer-rating span {
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-contact {
    display: grid;
    gap: 9px;
}

.footer-contact p {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 10px;
    align-items: start;
}

.footer-contact p span {
    width: 7px;
    height: 7px;
    margin-top: 0.55em;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.13);
}

.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;
}

.footer-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-grid .footer-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-grid .footer-icon:hover {
    transform: translateY(-1px);
    background: var(--teal);
    border-color: var(--teal);
}

.footer-icon svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-icon svg .filled {
    fill: currentColor;
    stroke: none;
}

.footer-brand {
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
}

.premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 48px;
    align-items: center;
}

.premium-image,
.map-frame {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 159, 227, 0.14);
    background: var(--white);
}

.premium-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.premium-image.tall img {
    height: 560px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-feature a {
    display: grid;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 80, 126, 0.09);
}

.service-feature img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-feature span,
.service-feature h2,
.service-feature em {
    margin-inline: 20px;
}

.service-feature span {
    margin-top: 18px;
    color: var(--teal-dark);
    font-weight: 900;
}

.service-feature h2 {
    margin-top: 8px;
    font-size: 1.18rem;
    line-height: 1.24;
}

.service-feature em {
    margin-top: auto;
    margin-bottom: 20px;
    color: var(--slate);
    font-style: normal;
    font-weight: 900;
}

.facility-carousel {
    position: relative;
}

.facility-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 34%);
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 159, 227, 0.55) rgba(225, 244, 253, 0.9);
    padding: 6px 4px 22px;
}

.facility-track::-webkit-scrollbar {
    height: 10px;
}

.facility-track::-webkit-scrollbar-track {
    background: rgba(225, 244, 253, 0.9);
    border-radius: 999px;
}

.facility-track::-webkit-scrollbar-thumb {
    background: rgba(0, 159, 227, 0.65);
    border-radius: 999px;
}

.facility-slide {
    scroll-snap-align: start;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(0, 159, 227, 0.14);
    box-shadow: 0 18px 50px rgba(0, 80, 126, 0.1);
}

.facility-slide img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: var(--soft);
}

.facility-slide figcaption {
    padding: 16px 18px 18px;
    color: var(--ink);
    font-weight: 900;
}

.facility-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 159, 227, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--teal-dark);
    box-shadow: var(--shadow);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.facility-arrow-prev {
    left: -14px;
}

.facility-arrow-next {
    right: -14px;
}

.facility-arrow:hover,
.facility-arrow:focus-visible {
    background: var(--teal);
    color: var(--white);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-list span {
    padding: 12px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--teal-dark);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 80, 126, 0.08);
}

.quote-panel {
    max-width: 880px;
    font-size: 1.42rem;
    color: #183d50;
}

.quote-panel p {
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 80, 126, 0.08);
}

.contact-grid span {
    display: block;
    margin-bottom: 14px;
    color: var(--teal-dark);
    font-weight: 900;
}

.map-frame iframe {
    width: 100%;
    height: 440px;
    border: 0;
}

.hero-with-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.hero-bg-slider span {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-bg-slider span.is-active {
    opacity: .593;
    transform: scale(1);
}

.hero-with-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(246,251,254,.87) 0%, rgba(246,251,254,.81) 48%, rgba(246,251,254,.61) 100%),
        radial-gradient(circle at 14% 12%, rgba(0, 159, 227, 0.18), transparent 24rem);
    pointer-events: none;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sales-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 80, 126, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #c8dede;
}

@media (max-width: 980px) {
    .desktop-nav,
    .phone-link,
    .nav-actions > .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 680px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(247, 251, 253, 0.98) 0%, rgba(247, 251, 253, 0.9) 55%, rgba(247, 251, 253, 0.58) 100%);
    }

    h1 {
        max-width: 12ch;
    }

    .split,
    .appointment-grid,
    .appointment-map-grid,
    .registration-grid,
    .price-tools,
    .footer-grid,
    .premium-hero-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .area-grid,
    .process-grid,
    .service-gallery,
    .contact-grid,
    .review-grid,
    .benefit-grid,
    .same-day-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .facility-track {
        grid-auto-columns: minmax(250px, 56%);
    }

    .facility-slide img {
        height: 320px;
    }
}

@media (max-width: 980px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .nav-shell {
        min-height: 66px;
    }

    .brand-logo {
        width: 138px;
        height: 62px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .nav-shell {
        min-height: 66px;
    }

    .brand-logo {
        width: 122px;
        height: 55px;
    }

    .hero {
        min-height: 720px;
        align-items: end;
    }

    .hero-content {
        padding: 78px 0 34px;
    }

    h1 {
        font-size: 2.72rem;
    }

    .hero-lead,
    .page-hero p {
        font-size: 1.02rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-strip,
    .card-grid,
    .area-grid,
    .process-grid,
    .service-gallery,
    .contact-grid,
    .review-grid,
    .benefit-grid,
    .same-day-grid {
        grid-template-columns: 1fr;
    }

    .compact-hero {
        min-height: auto;
        padding: 44px 0 30px;
    }

    .compact-hero .hero-copy {
        width: 100%;
    }

    .compact-hero h1.home-hero-title {
        max-width: none;
        text-align: center;
        font-size: clamp(2rem, 8.8vw, 2.55rem);
        line-height: 1.02;
        font-weight: 950;
        overflow-wrap: normal;
        word-break: normal;
    }

    .home-hero-title .hero-title-line {
        display: block;
        white-space: nowrap;
    }

    .home-hero-title .hero-title-appointments {
        font-size: 1.82rem;
    }

    .hero-bg-slider span {
        background-position: center top;
    }

    .hero-bg-slider span.is-active {
        opacity: .437;
    }

    .hero-with-slider::before {
        background:
            linear-gradient(180deg, rgba(246,251,254,.88) 0%, rgba(246,251,254,.81) 58%, rgba(246,251,254,.68) 100%),
            radial-gradient(circle at 18% 8%, rgba(0, 159, 227, 0.14), transparent 20rem);
    }

    .hero-photo-card,
    .hero-photo-card img {
        min-height: 280px;
    }

    .responsive-price-list {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .modern-price-table,
    .modern-price-table thead,
    .modern-price-table tbody,
    .modern-price-table tr,
    .modern-price-table th,
    .modern-price-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .modern-price-table thead {
        display: none;
    }

    .modern-price-table tr {
        margin-bottom: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        overflow: hidden;
    }

    .modern-price-table td {
        display: grid;
        grid-template-columns: 118px 1fr;
        gap: 12px;
        border-bottom: 1px solid var(--line);
        padding: 12px;
    }

    .modern-price-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 900;
    }

    .sales-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .page-hero {
        padding: 72px 0 46px;
    }

    .appointment-form {
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .premium-image img,
    .premium-image.tall img,
    .map-frame iframe {
        height: 320px;
    }

    .facility-track {
        grid-auto-columns: minmax(78vw, 1fr);
        gap: 14px;
        padding-inline: 0;
    }

    .facility-slide img {
        height: 300px;
    }

    .facility-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }

    .facility-arrow-prev {
        left: 8px;
    }

    .facility-arrow-next {
        right: 8px;
    }

    body {
        padding-bottom: 74px;
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--line);
        box-shadow: 0 -14px 30px rgba(0, 80, 126, 0.12);
        backdrop-filter: blur(14px);
    }

    .mobile-fixed-cta a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--teal);
        color: var(--white);
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-fixed-cta .mobile-cta-whatsapp {
        background: #128c7e;
    }

    .mobile-fixed-cta a:last-child {
        background: var(--teal);
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 108px;
        height: 48px;
    }

    .compact-hero h1.home-hero-title {
        font-size: clamp(1.72rem, 7.45vw, 2rem);
    }

    .home-hero-title .hero-title-appointments {
        font-size: 1.52rem;
    }

    .nav-shell {
        min-height: 60px;
    }
}

@media (min-width: 1180px) {
    .nav-shell {
        width: min(1240px, calc(100% - 32px));
    }

    .desktop-nav {
        gap: 16px;
        font-size: .9rem;
    }
}

@media (max-width: 340px) {
    .brand-logo {
        width: 96px;
        height: 43px;
    }

    .compact-hero h1.home-hero-title {
        font-size: clamp(1.42rem, 7vw, 1.72rem);
    }

    .home-hero-title .hero-title-appointments {
        font-size: 1.24rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

@media (max-height: 680px) {
    .mobile-menu {
        padding-top: 16px;
    }

    .mobile-nav {
        margin: 20px 0;
    }

    .mobile-nav a {
        padding: 11px 0;
    }
}
