* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
    font-size: 16px;
}

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

h1 {
    font-size: clamp(35px, 5vw, 64px);
}

h2 {
    font-size: clamp(28px, 3.2vw, 44px);
}

h3,
h4 {
    font-size: 22px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 59, 121, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--heading);
    font-family: var(--font-heading, Georgia, serif);
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(16, 59, 121, 0.24);
}

.logo-mark svg,
.icon svg,
.section-sticker svg,
.button svg,
.mini-icon svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    color: #253144;
    font-weight: 700;
    font-size: 18px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 0;
    padding: 14px 22px;
    min-height: 52px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), #8C0505);
    box-shadow: 0 18px 38px rgba(184, 9, 9, 0.25);
}

.button-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 18px 38px rgba(16, 59, 121, 0.22);
}

.button-light {
    color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 18px 38px rgba(5, 18, 38, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(8, 40, 87, 0.26);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(16, 59, 121, 0.2);
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
}

.mobile-menu {
    display: none;
    padding: 0 20px 20px;
    background: #fff;
    border-top: 1px solid rgba(16, 59, 121, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 13px 0;
    color: var(--heading);
    font-size: 18px;
    font-weight: 800;
    border-bottom: 1px solid #EEF2F7;
}

.mobile-menu.is-open {
    display: block;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 34%), linear-gradient(135deg, #061B3D 0%, var(--primary) 58%, #061B3D 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 54px;
    align-items: stretch;
    min-height: 690px;
    padding: 72px 0 58px;
}

.hero-copy,
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1,
.hero p,
.hero .eyebrow {
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.stars {
    color: var(--accent);
    font-size: 24px;
    letter-spacing: 4px;
    margin: 20px 0 14px;
}

.hero-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-icons img {
    width: auto;
    height: 48px;
    max-width: 120px;
    object-fit: contain;
    padding: 6px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.hero-lead {
    max-width: 680px;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-line {
    margin: 26px 0 14px;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
    max-width: 670px;
}

.trust-pill {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    font-weight: 800;
}

.mini-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: rgba(184, 9, 9, 0.86);
}

.hero-card {
    height: 100%;
    min-height: 520px;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.26), rgba(255,255,255,0.06));
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
}

.hero-card img {
    width: 100%;
    height: 100%;
    min-height: 492px;
    object-fit: cover;
    border-radius: 24px;
}

.section {
    padding: 86px 0;
}

.section-alt {
    background: linear-gradient(180deg, #F6F8FC 0%, #FFFFFF 100%);
}

.section-dark {
    background: linear-gradient(135deg, #07172D, #103B79);
    color: #fff;
}

.section-dark p,
.section-dark li,
.section-dark .section-kicker {
    color: rgba(255,255,255,0.88);
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark .split-card h3 {
    color: var(--heading);
}

.section-dark .split-card p {
    color: var(--text);
}

.section-head {
    max-width: 800px;
    margin-bottom: 34px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-sticker {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(16, 59, 121, 0.18);
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.split {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 34px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 35fr 65fr;
}

.split-card,
.panel {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 59, 121, 0.12);
    border: 1px solid rgba(16, 59, 121, 0.08);
}

.split-card {
    padding: 34px;
}

.split-image {
    height: 100%;
    min-height: 330px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(16, 59, 121, 0.16);
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(16, 59, 121, 0.1);
    box-shadow: 0 20px 42px rgba(16, 59, 121, 0.09);
}

.service-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: rgba(184, 9, 9, 0.07);
}

.service-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #EEF4FC;
    border: 1px solid rgba(16, 59, 121, 0.12);
    border-radius: 18px;
    font-size: 27px;
}

.service-card ul,
.area-lists ul,
.process-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    margin-top: 8px;
    color: #39465A;
}

.service-card li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.reason-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.reason-table th,
.reason-table td {
    padding: 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #E6ECF4;
    color: #263449;
    font-size: 16px;
}

.reason-table th {
    background: #EEF4FC;
    color: #111827;
    font-weight: 900;
}

.reviews-shell {
    position: relative;
}

.review-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 18px;
}

.review-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    scroll-snap-align: start;
    min-height: 286px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    color: #374151;
    box-shadow: 0 22px 48px rgba(16, 59, 121, 0.12);
    border: 1px solid rgba(16, 59, 121, 0.1);
}

.review-card .stars {
    margin: 0 0 13px;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-card strong {
    display: block;
    margin-top: 18px;
    color: #111827;
    font-size: 18px;
}

.review-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.control {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 24px;
    cursor: pointer;
}

.area-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.area-lists li {
    padding: 12px 14px;
    margin-bottom: 9px;
    border-radius: 16px;
    background: #EEF4FC;
    color: #20334F;
    font-weight: 800;
}

.process-list {
    counter-reset: process;
    display: grid;
    gap: 18px;
}

.process-list li {
    position: relative;
    padding: 22px 22px 22px 74px;
    border-radius: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 22px;
    top: 22px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--secondary);
    font-weight: 900;
}

.cta-band {
    padding: 58px;
    border-radius: 36px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 32%), linear-gradient(135deg, var(--secondary), var(--primary-dark));
    box-shadow: 0 28px 72px rgba(16, 59, 121, 0.23);
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.site-footer {
    padding: 54px 0 30px;
    background: #07172D;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.site-footer .logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 34px;
    align-items: start;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: rgba(255,255,255,0.84);
    font-size: 14px;
}

.site-footer strong,
.footer-title {
    color: #fff;
}

.footer-title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 900;
}

.footer-links a {
    display: block;
    padding: 5px 0;
}

.copyright {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.mobile-sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: none;
    width: 100%;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 23, 45, 0.96);
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-sticky-call a {
    width: 100%;
    min-height: 54px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav a {
        font-size: 16px;
    }

    .hero-grid,
    .split,
    .split.reverse,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-card {
        min-height: 420px;
    }

    .review-track {
        grid-auto-columns: calc((100% - 22px) / 2);
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 78px;
    }

    h1 {
        font-size: clamp(35px, 9vw, 45px);
    }

    h2 {
        font-size: clamp(28px, 7.2vw, 34px);
    }

    .container {
        width: min(100% - 28px, 560px);
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        min-width: 0;
    }

    .logo-text {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .header-actions .button {
        flex: 1;
        padding-inline: 12px;
        font-size: 15px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero-grid {
        gap: 24px;
        padding: 46px 0 36px;
    }

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

    .trust-row,
    .services-grid,
    .area-lists {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .split-card,
    .service-card,
    .review-card {
        padding: 24px;
    }

    .review-track {
        grid-auto-columns: 92%;
    }

    .cta-band {
        padding: 34px 24px;
    }

    .mobile-sticky-call.is-visible {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .mobile-menu,
    .mobile-sticky-call,
    .menu-toggle {
        display: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .split-card,
    .review-card,
    .hero-card {
        animation: rise 0.7s ease both;
    }

    @keyframes rise {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
