:root {
    --navy: #15246b;
    --navy2: #0b143f;
    --red: #e3222c;
    --ink: #172033;
    --muted: #647084;
    --bg: #f6f8fc;
    --line: #e4e9f2;
    --white: #fff;
    --shadow: 0 18px 45px rgba(15, 27, 70, 0.12);
    --radius: 18px;
}
.skip {
    position: absolute;
    left: -9999px;
}
.skip:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    padding: 0.8rem;
    z-index: 9999;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    line-height: 1.65;
    background: #fff;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}
.topbar {
    background: var(--navy2);
    color: #fff;
    font-size: 0.9rem;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 8px 0;
}
.topbar a:hover {
    text-decoration: underline;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand img {
    width: 216px;
    height: 50px;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    padding: 10px 11px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.94rem;
}
.nav a:hover,
.nav a[aria-current="page"] {
    background: #eef1fb;
    color: var(--navy);
}
.nav .cta {
    background: var(--red);
    color: #fff;
}
.nav .cta:hover {
    background: #bd1820;
    color: #fff;
}
.menu-btn {
    display: none;
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    padding: 10px 13px;
    font-weight: 800;
}
.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #0c1439;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 13, 40, 0.95) 0%, rgba(13, 24, 68, 0.78) 47%, rgba(13, 24, 68, 0.24) 100%),
        url("../img/hero.webp") center/cover no-repeat;
}
.hero .container {
    position: relative;
    padding: 90px 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--red);
}
.hero .eyebrow {
    color: #ff6870;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    max-width: 820px;
    margin: 14px 0 20px;
}
.hero p {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 680px;
    color: #e9edff;
}
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 900;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover {
    background: #bb1820;
}
.btn-light {
    background: #fff;
    color: var(--navy);
}
.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: #fff;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -54px;
    position: relative;
    z-index: 2;
}
.trust {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.trust strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
}
.section {
    padding: 88px 0;
}
.section.alt {
    background: var(--bg);
}
.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}
.section-head h2,
.content h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
    margin: 10px 0 14px;
    color: var(--navy2);
}
.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}
.grid {
    display: grid;
    gap: 22px;
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 9px 30px rgba(24, 38, 84, 0.07);
}
.card-body {
    padding: 24px;
}
.card h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-size: 1.22rem;
}
.card p {
    margin: 0;
    color: var(--muted);
}
.card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.card .more {
    display: inline-flex;
    margin-top: 16px;
    color: var(--red);
    font-weight: 900;
}
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.split img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.checklist li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}
.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 1000;
}
.cta-band {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    color: #fff;
    border-radius: 26px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}
.cta-band p {
    margin: 0;
    color: #dfe5ff;
}
.page-hero {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    color: #fff;
    padding: 78px 0;
}
.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 1.06;
    margin: 10px 0;
}
.page-hero p {
    max-width: 770px;
    color: #e1e6ff;
    font-size: 1.1rem;
}
.breadcrumbs {
    font-size: 0.9rem;
    color: #c9d2ff;
}
.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
}
.content {
    min-width: 0;
}
.content > img {
    border-radius: 22px;
    margin-bottom: 28px;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}
.content h2 {
    color: var(--navy);
    font-size: 1.75rem;
    margin-top: 35px;
}
.content h3 {
    color: var(--navy);
    margin-top: 26px;
}
.content p {
    color: #3d4759;
}
.steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.steps li {
    counter-increment: step;
    position: relative;
    padding: 17px 18px 17px 62px;
    margin: 12px 0;
    background: var(--bg);
    border-radius: 14px;
}
.steps li:before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.sidebar {
    position: sticky;
    top: 105px;
    align-self: start;
}
.side-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
}
.side-box h3 {
    margin-top: 0;
    color: var(--navy);
}
.side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-links li + li {
    border-top: 1px solid var(--line);
}
.side-links a {
    display: block;
    padding: 11px 0;
    font-weight: 800;
}
.side-links a:hover {
    color: var(--red);
}
.faq details {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 12px 0;
    background: #fff;
}
.faq summary {
    font-weight: 900;
    cursor: pointer;
    color: var(--navy);
}
.faq p {
    margin: 12px 0 0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.gallery figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
}
.gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.gallery figcaption {
    padding: 12px 14px;
    font-weight: 800;
    color: var(--navy);
}
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.field label {
    display: block;
    font-weight: 800;
    margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdd5e4;
    border-radius: 10px;
    font: inherit;
    background: #fff;
}
.field textarea {
    min-height: 150px;
    resize: vertical;
}
.field.full {
    grid-column: 1/-1;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.contact-card {
    padding: 22px;
    background: var(--bg);
    border-radius: 16px;
}
.contact-card h3 {
    color: var(--navy);
    margin: 0 0 8px;
}
.map {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 20px;
}
.article-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
}
.notice {
    padding: 16px 18px;
    border-left: 4px solid var(--red);
    background: #fff4f4;
    border-radius: 10px;
}
.footer {
    background: #091132;
    color: #e6eaff;
    padding: 58px 0 18px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer h3 {
    color: #fff;
    margin-top: 0;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin: 8px 0;
}
.footer a:hover {
    color: #ff6870;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 34px;
    padding-top: 18px;
    color: #aeb8df;
    font-size: 0.9rem;
}
.floating {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.floating .wa {
    background: #19a958;
}
.floating .call {
    background: var(--red);
}
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.region-tags span {
    padding: 9px 13px;
    background: #eef1fb;
    color: var(--navy);
    border-radius: 999px;
    font-weight: 800;
}
.legal {
    font-size: 0.92rem;
    color: var(--muted);
}
@media (max-width: 980px) {
    .menu-btn {
        display: block;
    }
    .nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    .nav.open {
        display: flex;
    }
    .nav a {
        padding: 12px;
    }
    .trust-row,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .split,
    .service-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .topbar .container {
        justify-content: center;
    }
    .topbar .hours {
        display: none;
    }
    .brand img {
        width: 190px;
    }
    .hero {
        min-height: 610px;
    }
    .hero .container {
        padding: 70px 0;
    }
    .trust-row,
    .grid-2,
    .grid-3,
    .grid-4,
    .contact-cards,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .cta-band {
        padding: 30px;
        align-items: flex-start;
        flex-direction: column;
    }
    .section {
        padding: 66px 0;
    }
    .page-hero {
        padding: 58px 0;
    }
    .topbar {
        font-size: 0.82rem;
    }
}
