:root {
    --ink: #0b263f;
    --ink-soft: #526577;
    --brand: #087f8c;
    --brand-dark: #05636d;
    --brand-light: #dff7f6;
    --accent: #1a86d9;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --line: #dce7ef;
    --success: #1f9d68;
    --warning: #f4a825;
    --shadow-sm: 0 12px 30px rgba(16, 45, 71, .08);
    --shadow-lg: 0 28px 70px rgba(16, 45, 71, .15);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a {
    color: inherit;
    text-decoration: none;
}

a:hover { color: var(--brand); }

button,
input,
textarea,
select { font: inherit; }

::selection {
    color: #fff;
    background: var(--brand);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 10px;
    transform: translateY(-160%);
}

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

.container { max-width: 1180px; }

.section {
    padding: 96px 0;
}

.section-soft { background: var(--surface-soft); }

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(20, 181, 172, .22), transparent 35%),
        linear-gradient(135deg, #071d31, #0c3652);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 46px;
}

.section-heading.text-center { margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    content: "";
    background: currentColor;
}

.section-dark .eyebrow { color: #61dfd5; }

.display-title,
.section-title,
.page-title {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.display-title { font-size: clamp(2.55rem, 5.2vw, 5.1rem); }
.section-title { font-size: clamp(2rem, 3.5vw, 3.35rem); }
.page-title { font-size: clamp(2.4rem, 4.5vw, 4.4rem); }
.section-dark .section-title,
.section-dark .page-title { color: #fff; }

.section-lead,
.page-lead {
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.section-dark .section-lead,
.section-dark .page-lead { color: #c9d9e5; }

.btn {
    min-height: 48px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.btn-brand {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: 0 10px 22px rgba(8, 127, 140, .18);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    border-color: var(--brand-dark);
    background: var(--brand-dark);
}

.btn-ink {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
}

.btn-ink:hover,
.btn-ink:focus {
    color: #fff;
    background: #123c5d;
}

.btn-soft {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

.btn-soft:hover {
    color: var(--brand-dark);
    border-color: #a8d7d5;
    background: var(--brand-light);
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
    font-weight: 800;
}

.btn-link-arrow i { transition: transform .2s ease; }
.btn-link-arrow:hover i { transform: translateX(4px); }

/* Header */
.site-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(11, 38, 63, .08);
    backdrop-filter: blur(16px);
}

.topbar {
    padding: 8px 0;
    color: #dcecf5;
    background: var(--ink);
    font-size: .78rem;
    font-weight: 600;
}

.topbar a { color: #fff; }
.topbar a:hover { color: #7be0d8; }

.navbar { min-height: 78px; }

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 116px;
    height: 50px;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
}

.brand-mark img {
    width: 100px;
    height: auto;
}

.brand-copy {
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong { font-size: .95rem; }
.brand-copy small { margin-top: 5px; color: var(--ink-soft); font-size: .67rem; }

.navbar-nav { gap: 3px; }

.navbar .nav-link {
    position: relative;
    padding: 12px 11px !important;
    color: #2b4255;
    font-size: .89rem;
    font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--brand-dark); }

.navbar .nav-link.active::after {
    position: absolute;
    right: 11px;
    bottom: 7px;
    left: 11px;
    height: 2px;
    content: "";
    background: var(--brand);
    border-radius: 10px;
}

.dropdown-menu {
    min-width: 290px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
}

.dropdown-item i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 9px;
    place-items: center;
}

.dropdown-item span { display: flex; flex-direction: column; }
.dropdown-item strong { color: var(--ink); font-size: .88rem; }
.dropdown-item small { color: var(--ink-soft); font-size: .72rem; }
.dropdown-item:hover { background: var(--surface-soft); }

.message-stack {
    position: fixed;
    z-index: 1090;
    top: 104px;
    right: 0;
    left: 0;
    pointer-events: none;
}

.message-stack .alert {
    max-width: 620px;
    margin-left: auto;
    pointer-events: auto;
    border: 0;
    border-radius: 14px;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 700px;
    padding: 86px 0 74px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(36, 190, 179, .14), transparent 31%),
        linear-gradient(180deg, #f2fbfb 0%, #fff 82%);
}

.home-hero::after {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 520px;
    height: 520px;
    content: "";
    border: 1px solid rgba(8, 127, 140, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(8, 127, 140, .035), 0 0 0 140px rgba(8, 127, 140, .025);
}

.hero-copy,
.hero-media { position: relative; z-index: 1; }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    color: #086b72;
    background: #def6f3;
    border: 1px solid #bce8e3;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.hero-kicker i { color: var(--success); }

.hero-copy .display-title span { color: var(--brand); }

.hero-copy > p {
    max-width: 650px;
    margin: 25px 0 30px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 34px;
    color: #43596b;
    font-size: .84rem;
    font-weight: 700;
}

.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--success); }

.hero-photo-frame {
    position: relative;
    width: min(100%, 450px);
    margin-left: auto;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    object-position: center 34%;
    border-radius: 24px;
}

.hero-photo-caption {
    position: absolute;
    right: -28px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.hero-photo-caption i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: #fff;
    background: var(--brand);
    border-radius: 11px;
    place-items: center;
}

.hero-photo-caption strong { display: block; font-size: .82rem; }
.hero-photo-caption small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .69rem; }

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -24px;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trust-stat {
    padding: 25px 28px;
    border-right: 1px solid var(--line);
}

.trust-stat:last-child { border-right: 0; }
.trust-stat strong { display: block; color: var(--ink); font-size: 1.45rem; font-weight: 800; }
.trust-stat span { color: var(--ink-soft); font-size: .82rem; }

/* Cards */
.service-card,
.info-card,
.document-card,
.review-card,
.contact-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.document-card:hover,
.certificate-card:hover,
.contact-card:hover {
    border-color: #b5d9dc;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card { display: flex; flex-direction: column; padding: 30px; }

.card-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 17px;
    font-size: 1.4rem;
    place-items: center;
}

.service-card h3,
.info-card h3,
.document-card h3,
.contact-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    font-weight: 800;
}

.service-card p,
.info-card p,
.document-card p,
.contact-card p { color: var(--ink-soft); }

.service-card .btn-link-arrow { margin-top: auto; padding-top: 16px; }

.feature-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 11px;
    color: #354d60;
}

.feature-list i { margin-top: 5px; color: var(--success); }

.photo-stack { position: relative; min-height: 560px; }

.photo-stack-main {
    width: 78%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.photo-stack-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 255px;
    padding: 9px;
    object-fit: cover;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: process;
}

.process-card {
    position: relative;
    padding: 28px 24px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    counter-increment: process;
}

.process-card::before {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 23px;
    content: "0" counter(process);
    color: #062a36;
    background: #61dfd5;
    border-radius: 13px;
    font-size: .76rem;
    font-weight: 800;
    place-items: center;
}

.process-card h3 { margin-bottom: 10px; font-size: 1.05rem; font-weight: 800; }
.process-card p { margin: 0; color: #c9d9e5; font-size: .88rem; }

/* Certificate cards and dialog */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.certificate-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.certificate-preview {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #eaf1f5;
    cursor: zoom-in;
}

.certificate-preview img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 14px;
    background: linear-gradient(145deg, #f7fafc, #e9f0f5);
    transition: transform .35s ease;
}

.certificate-preview:hover img { transform: scale(1.025); }

.zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(11, 38, 63, .86);
    border-radius: 12px;
    place-items: center;
}

.certificate-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }

.certificate-category {
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 5px 9px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.certificate-body h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 800; }
.certificate-body p { margin: 0 0 16px; color: var(--ink-soft); font-size: .83rem; }
.certificate-body .btn-link-arrow { margin-top: auto; font-size: .84rem; }

.certificate-dialog {
    width: min(920px, calc(100vw - 30px));
    max-height: calc(100vh - 30px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .4);
}

.certificate-dialog::backdrop {
    background: rgba(4, 18, 30, .78);
    backdrop-filter: blur(5px);
}

.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.dialog-header h2 { margin: 0; font-size: 1rem; font-weight: 800; }
.dialog-close { width: 42px; height: 42px; padding: 0; border: 0; background: var(--surface-soft); border-radius: 50%; }
.dialog-image-wrap { display: grid; min-height: 340px; max-height: calc(100vh - 110px); padding: 20px; overflow: auto; background: #e8eff4; place-items: center; }
.dialog-image-wrap img { max-height: calc(100vh - 150px); object-fit: contain; }

/* Reviews and forms */
.review-card { padding: 26px; }

.review-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--warning); }
.review-text { color: #344c60; font-size: .96rem; }
.review-author { display: flex; align-items: center; gap: 11px; margin-top: 23px; }
.review-avatar { display: grid; width: 42px; height: 42px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--accent)); border-radius: 50%; font-weight: 800; place-items: center; }
.review-author strong { display: block; font-size: .88rem; }
.review-author small { color: var(--ink-soft); font-size: .72rem; }

.form-card {
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-label { margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 800; }

.form-control,
.form-select {
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    border-color: #cad9e3;
    border-radius: 11px;
    background: #fbfdfe;
}

textarea.form-control { min-height: 130px; resize: vertical; }

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(8, 127, 140, .11);
}

.form-error { margin-top: 6px; color: #b42318; font-size: .75rem; }

.rating-picker { display: flex; gap: 6px; }

.rating-picker button {
    width: 42px;
    height: 42px;
    padding: 0;
    color: #b7c1c8;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    transition: color .2s, background .2s, transform .2s;
}

.rating-picker button.is-active {
    color: #fff;
    border-color: var(--warning);
    background: var(--warning);
}

.rating-picker button:hover { transform: translateY(-2px); }

.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Page headers and content */
.page-hero {
    position: relative;
    padding: 82px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 20%, rgba(51, 207, 196, .16), transparent 28%),
        linear-gradient(135deg, #071d31, #0d3e5e);
}

.page-hero::after {
    position: absolute;
    right: -80px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .02);
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb-mini {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    color: #9fb7c8;
    font-size: .78rem;
    font-weight: 700;
}

.breadcrumb-mini a { color: #d8e7ef; }
.breadcrumb-mini span::before { margin-right: 8px; content: "/"; color: #6f8da2; }

.page-hero .page-title { max-width: 880px; }
.page-hero .page-lead { max-width: 760px; }

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 54px;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.info-card { padding: 25px; }

.number-list { display: grid; gap: 18px; margin: 28px 0 0; padding: 0; list-style: none; counter-reset: number-list; }
.number-list li { position: relative; min-height: 46px; padding-left: 61px; counter-increment: number-list; }
.number-list li::before { position: absolute; top: 0; left: 0; display: grid; width: 42px; height: 42px; content: counter(number-list); color: var(--brand-dark); background: var(--brand-light); border-radius: 12px; font-size: .78rem; font-weight: 800; place-items: center; }
.number-list strong { display: block; margin-bottom: 3px; font-size: .92rem; }
.number-list span { color: var(--ink-soft); font-size: .84rem; }

.cta-panel {
    position: relative;
    padding: clamp(32px, 6vw, 62px);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #087f8c, #07526c);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-panel::after {
    position: absolute;
    top: -85px;
    right: -85px;
    width: 270px;
    height: 270px;
    content: "";
    border: 35px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 700px; margin: 0 0 14px; font-size: clamp(1.8rem, 3.3vw, 3rem); font-weight: 800; line-height: 1.12; }
.cta-panel p { max-width: 680px; margin-bottom: 24px; color: #d9f3f3; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
}

.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.gallery-grid img:first-child { grid-row: 1 / 3; }

.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.document-card { display: flex; flex-direction: column; padding: 28px; }
.document-card .file-type { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; margin-bottom: 20px; padding: 6px 10px; color: #185ba0; background: #e8f3ff; border-radius: 999px; font-size: .7rem; font-weight: 800; }
.document-card .btn { margin-top: auto; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 26px; }
.contact-list { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; }
.contact-card .card-icon { width: 48px; height: 48px; flex: 0 0 48px; margin: 0; border-radius: 14px; font-size: 1rem; }
.contact-card h3 { margin-bottom: 5px; font-size: .94rem; }
.contact-card p { margin: 0; font-size: .85rem; }
.contact-card a { color: var(--ink); font-weight: 700; }

.map-frame { min-height: 430px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; min-height: 430px; border: 0; }

.empty-state { padding: 56px 24px; text-align: center; background: var(--surface-soft); border: 1px dashed #b8ccd9; border-radius: var(--radius); }
.empty-state i { margin-bottom: 18px; color: var(--brand); font-size: 2rem; }

.pagination { gap: 6px; }
.page-link { min-width: 42px; color: var(--ink); border-color: var(--line); border-radius: 10px !important; text-align: center; }
.page-item.active .page-link { border-color: var(--brand); background: var(--brand); }

/* Footer */
.site-footer {
    color: #c7d8e4;
    background: #071a2a;
}

.footer-main { padding: 72px 0 54px; }

.footer-brand .brand-mark { border-color: rgba(255, 255, 255, .08); }
.footer-brand > span:last-child { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.footer-brand small { margin-top: 4px; color: #8ea8b9; font-size: .7rem; }

.footer-about { max-width: 500px; margin: 24px 0 20px; color: #9db2c1; font-size: .9rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; color: #bfe9e6; background: rgba(40, 187, 176, .1); border: 1px solid rgba(75, 218, 207, .18); border-radius: 999px; font-size: .72rem; font-weight: 700; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .86rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.footer-links,
.footer-contacts { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-links a,
.footer-contacts a { color: #aebfca; font-size: .84rem; }
.footer-links a:hover,
.footer-contacts a:hover { color: #62ddd4; }
.footer-contacts li { display: flex; align-items: flex-start; gap: 11px; font-size: .84rem; }
.footer-contacts i { width: 16px; margin-top: 5px; color: #62ddd4; text-align: center; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0 26px; color: #7690a2; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .74rem; }

.whatsapp-float {
    position: fixed;
    z-index: 1025;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #25d366;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(18, 88, 55, .3);
    font-size: 1.55rem;
    place-items: center;
    transition: transform .2s ease;
}

.whatsapp-float:hover { color: #fff; transform: translateY(-3px) scale(1.03); }

/* Progressive reveal: content stays visible when JS is unavailable */
.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1199.98px) {
    .navbar .nav-link { padding-inline: 8px !important; font-size: .82rem; }
    .brand-copy { display: none !important; }
    .hero-photo-caption { right: -8px; }
}

@media (max-width: 991.98px) {
    .section { padding: 76px 0; }
    .navbar { min-height: 72px; }
    .navbar-collapse { max-height: calc(100vh - 72px); padding: 18px 0 24px; overflow-y: auto; }
    .navbar-nav { align-items: stretch !important; }
    .navbar .nav-link { padding: 11px 6px !important; font-size: .95rem; }
    .navbar .nav-link.active::after { display: none; }
    .dropdown-menu { min-width: 0; border: 0; box-shadow: none; }
    .home-hero { padding-top: 64px; }
    .hero-copy { margin-bottom: 48px; }
    .hero-photo-frame { margin: 0 auto; }
    .trust-strip { margin-top: 24px; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-stat:nth-child(2) { border-right: 0; }
    .trust-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .content-grid { grid-template-columns: 1fr; gap: 38px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .document-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .section { padding: 64px 0; }
    .section-heading { margin-bottom: 34px; }
    .home-hero { min-height: auto; padding: 54px 0 62px; }
    .display-title { font-size: clamp(2.3rem, 12vw, 3.5rem); overflow-wrap: anywhere; }
    .hero-copy > p { margin-top: 19px; font-size: 1rem; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { display: grid; gap: 9px; }
    .hero-photo-frame { width: 100%; }
    .hero-photo-frame img { height: 430px; }
    .hero-photo-caption { right: 20px; bottom: 24px; }
    .trust-stat { padding: 20px; }
    .trust-stat strong { font-size: 1.2rem; }
    .photo-stack { min-height: 460px; }
    .photo-stack-main { height: 420px; }
    .photo-stack-small { height: 190px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 180px; }
    .gallery-grid img:first-child { grid-column: 1 / 3; grid-row: auto; }
    .page-hero { padding: 64px 0 58px; }
    .content-image { height: 430px; }
    .footer-main { padding-top: 58px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 575.98px) {
    .brand-mark { width: 102px; height: 46px; }
    .brand-mark img { width: 90px; }
    .hero-kicker { max-width: 100%; font-size: .67rem; }
    .hero-photo-frame img { height: 380px; }
    .hero-photo-caption { right: 10px; left: 10px; max-width: none; }
    .trust-strip-inner { grid-template-columns: 1fr; }
    .trust-stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-stat:last-child { border-bottom: 0; }
    .process-grid,
    .certificate-grid { grid-template-columns: 1fr; }
    .photo-stack { min-height: 405px; }
    .photo-stack-main { width: 88%; height: 365px; }
    .photo-stack-small { width: 50%; height: 165px; }
    .certificate-preview img { height: 280px; }
    .content-image { height: 370px; }
    .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 250px); }
    .gallery-grid img:first-child { grid-column: auto; }
    .cta-panel .btn { width: 100%; }
    .whatsapp-float { right: 15px; bottom: 15px; width: 52px; height: 52px; }
}
