:root {
    --blue-950: #082f49;
    --blue-900: #0b4266;
    --blue-700: #0d6f9f;
    --blue-100: #e7f5fb;
    --teal-700: #087f7a;
    --teal-100: #e0f7f3;
    --green-700: #15803d;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --ink: #10212f;
    --muted: #5f7180;
    --line: #d7e5ee;
    --surface: #ffffff;
    --soft: #f4f9fc;
    --shadow: 0 18px 45px rgba(8, 47, 73, .12);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--surface);
    line-height: 1.6;
}

body:has(.sticky-mobile-actions) {
    padding-bottom: 0;
}

h1, h2, h3 {
    color: var(--blue-950);
    font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 1rem;
}

h1 { font-size: clamp(2.25rem, 4vw, 4.6rem); }
h2 { font-size: clamp(1.75rem, 2.7vw, 3rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; }
a { color: var(--blue-700); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(234, 88, 12, .45);
    outline-offset: 3px;
}

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

.container-wide {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.container-narrow {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    background: var(--orange-600);
    color: white;
    padding: .75rem 1rem;
    border-radius: 8px;
    z-index: 20;
}

.skip-link:focus { top: 1rem; }

.top-info {
    background: var(--blue-950);
    color: white;
    font-size: .92rem;
}

.top-info__inner {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    flex-wrap: wrap;
}

.top-info__inner span,
.top-info__inner a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.top-info a {
    color: white;
    font-weight: 800;
    text-decoration: none;
}

.top-info a:hover {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(8, 47, 73, .05);
}

.header-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 1.4rem;
    min-height: 88px;
    padding: .65rem 0;
}

.brand img { width: 248px; height: auto; }

.primary-nav {
    display: flex;
    gap: .2rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

.primary-nav a,
.more-menu summary {
    color: var(--blue-950);
    text-decoration: none;
    font-weight: 700;
    padding: .5rem .48rem;
    border-radius: 8px;
    font-size: .86rem;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;
    align-items: center;
    gap: .28rem;
}

.primary-nav a.active,
.primary-nav a:hover,
.more-menu summary:hover,
.more-menu[open] summary { background: var(--blue-100); }

.more-menu {
    position: relative;
}

.more-menu summary {
    display: inline-flex;
}

.more-menu summary::-webkit-details-marker { display: none; }
.more-menu summary::marker { content: ""; }

.more-chevron {
    width: .48rem;
    height: .48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .18s ease;
}

.more-menu[open] .more-chevron {
    transform: rotate(225deg) translateY(-1px);
}

.more-menu__panel {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 12;
    min-width: 210px;
    padding: .45rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: .15rem;
}

.more-menu__panel a {
    padding: .65rem .75rem;
}

.header-actions,
.hero-actions,
.card-actions,
.footer-actions,
.center-actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    align-items: center;
}

.center-actions {
    justify-content: center;
    margin-top: 1.5rem;
}

.header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: max-content;
}
.phone-link { font-weight: 900; text-decoration: none; color: var(--blue-950); white-space: nowrap; }

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .72rem 1rem;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.15;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.icon {
    width: 1.08em;
    height: 1.08em;
    fill: currentColor;
    flex: 0 0 auto;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(8,47,73,.14);
}
.btn-call { background: var(--orange-600); color: white; }
.btn-call:hover { background: var(--orange-700); color: white; }
.btn-secondary { background: var(--blue-950); color: white; }
.btn-secondary:hover { background: var(--blue-900); color: white; }
.btn-report { background: var(--teal-700); color: white; }
.btn-report:hover { color: white; }
.btn-outline { background: white; color: var(--blue-950); border-color: var(--line); }
.btn-whatsapp {
    background: #16a34a;
    color: white;
    border-color: #15803d;
}
.btn-whatsapp:hover {
    background: #15803d;
    color: white;
}
.btn-whatsapp .icon-whatsapp {
    width: 1.2em;
    height: 1.2em;
}
.btn-small { min-height: 38px; padding: .55rem .75rem; font-size: .9rem; }
.is-placeholder { box-shadow: inset 0 0 0 2px rgba(255,255,255,.45); }

.nav-toggle,
.nav-toggle-label { display: none; }

.hero {
    background: linear-gradient(135deg, #f7fcff 0%, #dff3f8 100%);
    overflow: hidden;
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-grid { min-height: 680px; padding: 4rem 0; }
.hero-copy .lead { font-size: clamp(1.12rem, 1.8vw, 1.35rem); color: #395163; max-width: 680px; }
.eyebrow {
    color: var(--teal-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-media img {
    width: min(100%, 520px);
    height: 610px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-left: auto;
}

.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-tight { padding: 2rem 0; }
.pre-booking-section { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.section-blue { background: var(--soft); }
.section-light { background: #fbfdff; }
.section-teal { background: linear-gradient(135deg, var(--teal-100), #ffffff); }
.align-start { align-items: start; }
.stack > * + * { margin-top: 1.25rem; }

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.trust-grid,
.trust-proof-grid,
.service-grid,
.package-grid,
.test-grid,
.benefit-grid,
.gallery-grid,
.certificate-grid,
.blog-grid,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.trust-grid { grid-template-columns: repeat(4, 1fr); }
.trust-proof-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.test-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.certificate-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }

.trust-item,
.trust-proof-card,
.service-card,
.package-card,
.test-card,
.testimonial-card,
.notice-card,
.certificate-card,
.blog-card,
.collection-form,
.map-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(8, 47, 73, .08);
}

.trust-item,
.trust-proof-card,
.service-card,
.package-card,
.test-card,
.testimonial-card,
.notice-card,
.certificate-card,
.blog-card,
.collection-form,
.map-box { padding: 1.25rem; }

.trust-item span,
.trust-proof-card > .icon,
.card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--blue-100);
    color: var(--blue-950);
    font-weight: 900;
    margin-bottom: .8rem;
}

.trust-proof-card {
    display: grid;
    gap: .75rem;
}

.trust-proof-card > .icon {
    padding: .75rem;
}

.trust-proof-card h3,
.trust-proof-card p {
    margin: 0;
}

.trust-proof-card p {
    color: var(--muted);
}

.service-card,
.package-card,
.test-card { display: flex; flex-direction: column; gap: .8rem; }
.card-actions { margin-top: auto; }
.service-card-actions,
.package-card-actions {
    display: grid;
    gap: .5rem;
    align-items: stretch;
}

.service-card-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card-actions {
    grid-template-columns: minmax(0, .95fr) minmax(0, .95fr) minmax(0, 1.3fr);
    gap: .4rem;
}

.service-card-actions .link-action,
.service-card-actions .btn,
.package-card-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding-inline: .45rem;
    font-size: .84rem;
    white-space: nowrap;
}

.package-card-actions .btn {
    font-size: .8rem;
    padding-inline: .38rem;
}

.service-card-actions .icon,
.package-card-actions .icon {
    width: .95em;
    height: .95em;
}

.link-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--line);
    padding: .55rem .75rem;
    background: white;
    color: var(--blue-950);
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
}
.link-action:hover {
    background: var(--blue-100);
    color: var(--blue-950);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(8,47,73,.10);
}
.featured { border-color: rgba(234, 88, 12, .45); }
.feature-label,
.sample-label,
.pill {
    width: fit-content;
    padding: .3rem .55rem;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 900;
    background: var(--teal-100);
    color: var(--teal-700);
}
.sample-label { background: #fff7ed; color: var(--orange-700); }
.price-row { display: flex; gap: .65rem; align-items: baseline; flex-wrap: wrap; }
.price-row strong { font-size: 2rem; color: var(--blue-950); }
.old-price { color: var(--muted); text-decoration: line-through; }
.test-price {
    width: fit-content;
    margin: .2rem 0 0;
    padding: .25rem .55rem;
    border-radius: 8px;
    background: var(--blue-100);
    color: var(--blue-950);
    font-size: 1.25rem;
    font-weight: 900;
}
.parameters { font-weight: 900; color: var(--teal-700); }
.included-list { padding-left: 1.2rem; margin: 0; }
.microcopy { color: var(--muted); font-size: .92rem; }

.rounded-media {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.steps {
    counter-reset: steps;
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    gap: .75rem;
}

.steps li {
    counter-increment: steps;
    display: flex;
    gap: .75rem;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .85rem;
}

.steps li::before {
    content: counter(steps);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-950);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.benefit-grid span {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    font-weight: 800;
}

.gallery-grid figure {
    margin: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: .8rem;
    font-weight: 800;
}

.image-button {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8,47,73,.86);
    z-index: 30;
    padding: 2rem;
    display: grid;
    place-items: center;
    color: white;
}

.lightbox img {
    max-height: 78vh;
    width: auto;
    border-radius: 8px;
}

.lightbox-close {
    justify-self: end;
    background: white;
    color: var(--blue-950);
    border: 0;
    border-radius: 8px;
    padding: .65rem 1rem;
    font-weight: 900;
}

.filter-bar {
    display: flex;
    gap: .8rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar input,
.filter-bar select,
.collection-form input,
.collection-form select,
.collection-form textarea,
.report-panel .form-control {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .7rem .85rem;
    background: white;
    color: var(--ink);
}

.filter-bar input { min-width: min(100%, 320px); }
.filter-bar .btn {
    min-height: 46px;
}
.check-filter { display: flex; align-items: center; gap: .5rem; font-weight: 800; }
.result-count {
    margin: -.4rem 0 1.2rem;
    color: var(--muted);
    font-weight: 800;
}

.test-card dl {
    display: grid;
    gap: .5rem;
    margin: 0;
}

.test-card dl div {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: .5rem;
}

.test-card dt { font-weight: 900; color: var(--blue-950); }
.test-card dd { margin: 0; color: var(--muted); }

.collection-form { width: 100%; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1rem;
    min-width: 0;
}

.form-grid label {
    display: grid;
    gap: .35rem;
    font-weight: 800;
}

.form-grid .wide { grid-column: 1 / -1; }
.single-form { grid-template-columns: 1fr; margin-bottom: 1rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; }
.consent input { min-height: 20px; width: 20px; margin-top: .2rem; }
.test-multiselect-wrap {
    position: relative;
    display: grid;
    gap: .35rem;
    font-weight: 800;
    min-width: 0;
}

.test-multiselect {
    position: relative;
    min-width: 0;
    min-height: 62px;
    max-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    padding: .45rem 2.3rem .45rem .55rem;
    cursor: text;
}

.test-multiselect.is-open {
    border-color: var(--teal-700);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .14);
}

.test-multiselect.is-invalid {
    border-color: #b91c1c;
}

.test-multiselect__value {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
    max-height: 96px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: .15rem;
}

.test-multiselect__tag {
    max-width: min(100%, 300px);
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    flex: 0 0 auto;
    border: 1px solid rgba(8, 47, 73, .16);
    border-radius: 6px;
    background: #e7f5f4;
    color: var(--blue-950);
    padding: .28rem .45rem;
    font-weight: 800;
    line-height: 1;
}

.test-multiselect__tag span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.test-multiselect__tag button,
.test-multiselect__clear {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--blue-950);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.test-multiselect__tag button:hover,
.test-multiselect__clear:hover {
    background: rgba(8, 47, 73, .08);
}

.test-multiselect input {
    min-width: 150px;
    min-height: 40px;
    flex: 1 1 190px;
    border: 0;
    border-radius: 0;
    padding: .35rem .25rem;
    font: inherit;
    font-weight: 400;
    color: var(--ink);
    outline: 0;
}

.test-multiselect input::placeholder {
    color: var(--muted);
    opacity: 1;
}

.test-multiselect__clear {
    position: absolute;
    right: .55rem;
    top: 50%;
    transform: translateY(-50%);
}

.test-multiselect__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .35rem);
    z-index: 18;
    max-height: 380px;
    overflow-y: auto;
    padding: .45rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(8, 47, 73, .18);
}

.test-multiselect__group {
    padding: .55rem .7rem .35rem;
    color: var(--teal-700);
    font-weight: 900;
}

.test-multiselect__option {
    width: 100%;
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    padding: .7rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.test-multiselect__option:hover,
.test-multiselect__option:focus {
    background: var(--teal-700);
    color: white;
    outline: none;
}

.test-multiselect__option span {
    display: grid;
    gap: .18rem;
    min-width: 0;
}

.test-multiselect__option strong,
.test-multiselect__option small {
    overflow-wrap: anywhere;
}

.test-multiselect__option strong {
    color: inherit;
}

.test-multiselect__option small {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

.test-multiselect__option:hover small,
.test-multiselect__option:focus small {
    color: rgba(255, 255, 255, .86);
}

.test-multiselect__empty {
    padding: .9rem;
    color: var(--muted);
    font-weight: 800;
}

.swal-success-text {
    margin: 0 0 1rem;
}

.swal-booking-id {
    display: grid;
    gap: .25rem;
    margin: 1.1rem 0 0;
    padding: .85rem;
    border-radius: 8px;
    background: #ecfeff;
    color: var(--blue-950);
}

.swal-booking-id span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.swal-booking-id strong {
    font-size: .98rem;
    overflow-wrap: anywhere;
}

.swal-fallback {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(8, 47, 73, .32);
}

.swal-fallback__dialog {
    width: min(100%, 460px);
    border-radius: 8px;
    background: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 24px 70px rgba(8, 47, 73, .25);
}

.swal-fallback__icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 1rem;
    border: 4px solid #22c55e;
    border-radius: 50%;
    color: #16a34a;
    font-size: 2.4rem;
    font-weight: 900;
}

.swal-fallback__dialog h2 {
    margin: 0 0 .65rem;
    color: var(--blue-950);
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.swal-fallback__dialog p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.swal-fallback__dialog button {
    min-width: 110px;
    border: 0;
    border-radius: 8px;
    background: var(--teal-700);
    color: white;
    padding: .8rem 1.3rem;
    font-weight: 900;
}

.searchable-select {
    position: relative;
    display: grid;
    gap: .35rem;
    font-weight: 800;
}

.searchable-select__control {
    position: relative;
}

.searchable-select__control input {
    width: 100%;
    padding-right: 2.8rem;
}

.select-loader {
    width: 18px;
    height: 18px;
    position: absolute;
    right: .9rem;
    top: 50%;
    margin-top: -9px;
    border: 3px solid var(--blue-100);
    border-top-color: var(--teal-700);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.searchable-select__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .35rem);
    z-index: 18;
    max-height: 340px;
    overflow-y: auto;
    padding: .35rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(8, 47, 73, .18);
}

.searchable-select__option {
    width: 100%;
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    padding: .75rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.searchable-select__option:hover,
.searchable-select__option:focus {
    background: var(--blue-100);
    outline: none;
}

.searchable-select__option span {
    display: grid;
    gap: .2rem;
    min-width: 0;
}

.searchable-select__option strong {
    color: var(--blue-950);
    white-space: normal;
}

.searchable-select__option small {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

.searchable-select__option em {
    flex: 0 0 auto;
    font-style: normal;
    font-weight: 900;
    color: var(--teal-700);
}

.searchable-select__empty {
    padding: .9rem;
    color: var(--muted);
    font-weight: 800;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.validation-message {
    display: block;
    margin: -.35rem 0 .15rem;
    color: #b91c1c;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.25;
}

.wide + .validation-message {
    grid-column: 1 / -1;
}
.form-note { color: var(--muted); margin-top: .75rem; }
.catalog-status {
    margin: -.25rem 0 .25rem;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 800;
}
.success-message { color: var(--green-700); font-weight: 900; }

.report-first-section {
    padding-top: 2.25rem;
}

.report-result-header {
    padding: 1rem 0 .75rem;
}

.report-portal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 1rem;
    align-items: start;
}

.report-portal-shell {
    max-width: 980px;
}

.report-panel,
.report-help,
.report-card,
.pdf-viewer-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(8, 47, 73, .08);
}

.report-panel,
.report-help,
.report-card,
.pdf-viewer-card {
    padding: 1.25rem;
}

.step-indicator {
    display: flex;
    gap: .55rem;
    margin-bottom: 1rem;
}

.report-panel h1 {
    max-width: 760px;
    margin-bottom: .7rem;
    font-size: 3.2rem;
}

.report-intro {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 1.25rem;
}

.step-indicator span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--blue-100);
    color: var(--blue-950);
    font-weight: 900;
}

.step-indicator span.active {
    background: var(--teal-700);
    color: white;
}

.otp-boxes {
    display: grid;
    grid-template-columns: repeat(4, 54px);
    gap: .65rem;
    margin-top: .2rem;
}

.otp-digit {
    width: 54px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--blue-950);
    font: inherit;
    font-size: 1.35rem;
    font-weight: 900;
    text-align: center;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.otp-digit:focus {
    border-color: var(--teal-700);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .15);
}

.report-summary {
    display: grid;
    gap: .35rem;
}

.report-summary-compact .btn {
    width: fit-content;
}

.report-summary h2,
.report-help h2,
.report-card h2,
.report-empty h2 {
    margin-bottom: .25rem;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.report-card {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.report-card ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--muted);
}

.report-card .btn {
    margin-top: auto;
}

.report-card-actions,
.pdf-viewer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
}

.report-card-actions {
    margin-top: auto;
}

.report-card-actions .btn {
    flex: 1 1 150px;
}

.report-viewer-section {
    padding-top: .75rem;
}

.pdf-viewer-card {
    display: grid;
    gap: 1rem;
}

.pdf-viewer-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.pdf-viewer-header h2 {
    margin-bottom: .2rem;
}

.pdf-frame {
    width: 100%;
    height: 1120px;
    min-height: 88vh;
    max-height: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--blue-100);
}

.report-list-section {
    padding-top: 1.5rem;
}

.page-intro {
    background: linear-gradient(135deg, var(--blue-100), #fff);
    padding: 3rem 0;
}

.page-intro .container-wide > p {
    max-width: 760px;
    font-size: 1.1rem;
    color: var(--muted);
}

.breadcrumbs {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: var(--muted);
}

.breadcrumbs a { font-weight: 800; text-decoration: none; }

.contact-band {
    padding: 4rem 0;
    background: var(--blue-950);
    color: white;
}

.contact-band h2,
.contact-band .eyebrow,
.site-footer h2 { color: white; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.map-box { color: var(--ink); min-height: 280px; display: grid; place-items: center; text-align: center; }
.map-box iframe { width: 100%; min-height: 320px; border: 0; border-radius: 8px; }

.certificate-card img,
.blog-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.site-footer {
    background: #071d2b;
    color: #dbe8ef;
    padding: 3rem 0 5rem;
}

.site-footer a { display: block; color: #dbe8ef; text-decoration: none; margin: .35rem 0; }
.site-footer .btn-call,
.site-footer .btn-call:hover,
.site-footer .btn-secondary,
.site-footer .btn-secondary:hover,
.site-footer .btn-report,
.site-footer .btn-report:hover,
.site-footer .btn-whatsapp,
.site-footer .btn-whatsapp:hover {
    color: white;
}
.site-footer .btn {
    display: inline-flex;
    margin: 0;
}
.site-footer img { margin-bottom: 1rem; filter: drop-shadow(0 6px 18px rgba(255,255,255,.08)); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    margin-top: 2rem;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-bottom a { display: inline; }

#blazor-error-ui {
    background: #fff7ed;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    padding: .8rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.sticky-mobile-actions { display: none; }

@media (max-width: 1100px) {
    .header-shell {
        grid-template-columns: 190px minmax(0, 1fr) max-content;
        gap: .85rem;
    }
    .brand img { width: 186px; }
    .phone-link { display: none; }
    .header-actions { gap: .45rem; }
    .header-actions .btn { padding-inline: .7rem; font-size: .88rem; }
    .primary-nav a,
    .more-menu summary { font-size: .82rem; padding-inline: .38rem; }
    .service-grid, .package-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    body { padding-bottom: 72px; }
    h1 { font-size: 2.25rem; }
    .report-panel h1 { font-size: 2.25rem; }
    .top-info { display: none; }
    .header-shell {
        grid-template-columns: 1fr auto;
        min-height: 76px;
        padding: .65rem 0;
    }
    .brand img { width: 216px; }
    .nav-toggle-label {
        display: inline-flex;
        width: 48px;
        height: 46px;
        border: 1px solid rgba(8, 47, 73, .16);
        border-radius: 8px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: var(--blue-100);
        box-shadow: 0 8px 18px rgba(8, 47, 73, .08);
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: "";
        width: 22px;
        height: 2px;
        display: block;
        background: var(--blue-950);
        position: relative;
    }
    .nav-toggle-label span::before { position: absolute; top: -7px; }
    .nav-toggle-label span::after { position: absolute; top: 7px; }
    .primary-nav,
    .header-actions {
        display: none;
        grid-column: 1 / -1;
        justify-content: stretch;
    }
    .nav-toggle:checked ~ .primary-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .header-actions { display: none !important; }
    .primary-nav {
        overflow: visible;
        gap: .45rem;
        padding-top: .65rem;
    }
    .more-menu {
        display: contents;
    }
    .more-menu summary {
        display: none;
    }
    .more-menu__panel {
        position: static;
        min-width: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        display: contents;
    }
    .primary-nav a,
    .more-menu__panel a,
    .header-actions a {
        min-height: 44px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-grid,
    .split,
    .contact-grid,
    .report-portal-grid { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; padding: 3rem 0; }
    .hero-media { min-height: auto; }
    .hero-media img { height: 420px; margin: 0; width: 100%; }
    .trust-grid,
    .trust-proof-grid,
    .service-grid,
    .package-grid,
    .test-grid,
    .benefit-grid,
    .gallery-grid,
    .certificate-grid,
    .blog-grid,
    .report-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: 230px; }
    .filter-bar {
        align-items: stretch;
    }
    .filter-bar input,
    .filter-bar select,
    .filter-bar .btn {
        width: 100%;
    }
    .sticky-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 25;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: white;
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 28px rgba(8,47,73,.12);
    }
    .mobile-action {
        min-height: 64px;
        padding: .45rem .25rem;
        display: flex;
        flex-direction: column;
        gap: .2rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--blue-950);
        text-decoration: none;
        font-size: .82rem;
        font-weight: 900;
        border-radius: 0;
        border-right: 1px solid var(--line);
    }
    .mobile-action span {
        max-width: 100%;
        line-height: 1.08;
    }
    .mobile-action .icon {
        width: 1.15rem;
        height: 1.15rem;
    }
    .mobile-call { background: var(--orange-600); color: white; }
    .footer-bottom { grid-template-columns: 1fr; }
    .site-footer {
        text-align: center;
    }
    .site-footer img {
        margin-inline: auto;
    }
    .site-footer a {
        width: fit-content;
        margin-inline: auto;
    }
    .footer-actions {
        justify-content: center;
    }
    .footer-actions .btn {
        width: fit-content;
    }
}

@media (max-width: 640px) {
    .report-first-section {
        padding-top: 1rem;
    }

    .report-result-header {
        padding: .75rem 0 .35rem;
    }

    .report-panel,
    .pdf-viewer-card {
        padding: 1rem;
    }

    .report-panel h1 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .report-intro {
        font-size: 1rem;
    }

    .otp-boxes {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: .45rem;
    }

    .otp-digit {
        width: 100%;
        min-width: 0;
        height: 52px;
    }

    .form-actions,
    .report-card-actions,
    .pdf-viewer-actions,
    .pdf-viewer-header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .report-card-actions .btn,
    .pdf-viewer-actions .btn {
        width: 100%;
    }

    .report-summary-compact .btn {
        width: 100%;
    }

    .pdf-frame {
        height: 86vh;
        min-height: 720px;
    }

    .nav-toggle:checked ~ .primary-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media print {
    .top-info,
    .site-header,
    .page-intro .hero-actions,
    .filter-bar,
    .contact-band,
    .site-footer,
    .sticky-mobile-actions,
    #blazor-error-ui {
        display: none !important;
    }

    body {
        padding: 0;
        background: white;
        color: #000;
    }

    .page-intro,
    .section,
    .section-blue,
    .section-light,
    .section-teal {
        padding: 1rem 0;
        background: white !important;
    }

    .container-wide {
        width: 100%;
        max-width: none;
    }

    .test-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-card,
    .package-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .card-actions {
        display: none !important;
    }
}

@media (max-width: 440px) {
    .container-wide { width: min(100% - 24px, 1180px); }
    .brand img { width: 196px; }
    .top-info { font-size: .82rem; }
    .btn { width: 100%; }
    .hero-actions .btn,
    .card-actions .btn,
    .footer-actions .btn { width: 100%; }
    .service-card-actions,
    .package-card-actions {
        grid-template-columns: 1fr;
    }
    .service-card-actions .link-action,
    .service-card-actions .btn,
    .package-card-actions .btn {
        font-size: .9rem;
    }
    .mobile-action { font-size: .74rem; }
    .nav-toggle:checked ~ .primary-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}
