:root {
    --navy: #062967;
    --navy-dark: #04183f;
    --green: #0f6a3a;
    --green-bright: #2f8f58;
    --accent-soft: #e9f3ee;
    --ink: #102032;
    --muted: #607082;
    --line: #d9e2ec;
    --surface: #f5f8fb;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(4, 24, 63, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
}

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

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

.header-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(6, 41, 103, 0.12);
    backdrop-filter: blur(18px);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px clamp(18px, 4vw, 58px);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    font-weight: 700;
}

.top-contact a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.top-contact span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 900;
    text-transform: uppercase;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.top-social a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
}

.top-social a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.top-social svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 84px;
    padding: 12px clamp(18px, 4vw, 58px);
}

.brand img {
    width: 190px;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 11px 15px;
    border-radius: 8px;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--navy);
    background: #eef3fb;
}

.login-button,
.primary-button,
.secondary-button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.login-button,
.primary-button,
button {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    box-shadow: 0 14px 30px rgba(6, 41, 103, 0.22);
}

.secondary-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.12);
}

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

.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: clamp(56px, 9vw, 120px) clamp(18px, 7vw, 110px);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 24, 63, 0.92), rgba(4, 24, 63, 0.56) 42%, rgba(4, 24, 63, 0.12));
}

.hero-content,
.page-hero > div {
    position: relative;
    max-width: 760px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 14px;
    color: #6ee2a0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.96;
    font-weight: 900;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    color: var(--navy-dark);
}

h3 {
    color: var(--navy-dark);
}

.hero-copy,
.page-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.stats-band div {
    padding: 28px 22px;
    background: var(--white);
    text-align: center;
}

.stats-band strong {
    display: block;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
}

.stats-band span {
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split-section p,
.values-section p,
.service-grid p,
.contact-info p,
.form-note,
.login-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.feature-grid,
.cards,
.service-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.feature-grid article,
.cards article,
.service-grid article,
.form-card,
.contact-info,
.login-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 34px rgba(4, 24, 63, 0.08);
}

.feature-grid article,
.cards article,
.service-grid article {
    padding: 24px;
}

.feature-grid span {
    color: var(--navy);
    font-weight: 900;
}

.page-hero {
    min-height: 420px;
    display: grid;
    align-items: center;
    padding: clamp(56px, 9vw, 96px) clamp(18px, 7vw, 110px);
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, var(--navy-dark), var(--navy) 72%, #0b386f);
}

.compact-hero {
    min-height: 360px;
}

.services-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.tracking-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(135deg, var(--navy-dark), #0a3d84);
}

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

.cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

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

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
}

.cta-band {
    margin: 0 clamp(18px, 6vw, 88px) clamp(64px, 8vw, 104px);
    padding: clamp(34px, 5vw, 56px);
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.86);
}

.tracking-panel,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.form-card {
    padding: clamp(24px, 4vw, 42px);
}

label {
    display: block;
    margin: 0 0 8px;
    color: var(--navy-dark);
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    min-height: 48px;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    background: #fbfdff;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(6, 41, 103, 0.14);
    border-color: var(--navy);
}

.inline-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.inline-form input {
    margin-bottom: 0;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline div {
    position: relative;
    padding: 20px 20px 20px 58px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.timeline span {
    position: absolute;
    left: 20px;
    top: 24px;
    width: 18px;
    height: 18px;
    border: 4px solid var(--navy);
    border-radius: 50%;
    background: var(--white);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    color: var(--muted);
    line-height: 1.6;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
}

.contact-info {
    padding: clamp(24px, 4vw, 38px);
    background: var(--navy-dark);
}

.contact-info h2,
.contact-info p {
    color: var(--white);
}

.login-page {
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
    padding: 56px 18px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.login-card {
    width: min(100%, 430px);
    padding: 34px;
}

.login-card img {
    width: 210px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.login-card h1 {
    color: var(--navy-dark);
    font-size: 34px;
    line-height: 1.1;
}

.login-card button,
.form-card button {
    width: 100%;
    margin-top: 6px;
}

.login-card a {
    display: block;
    margin-top: 16px;
    color: var(--navy);
    font-weight: 800;
    text-align: center;
}

.info-panel {
    min-height: 360px;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(4, 24, 63, 0.96), rgba(6, 41, 103, 0.92)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
    box-shadow: var(--shadow);
}

.info-panel span {
    display: inline-grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
}

.info-panel h2,
.info-panel p {
    color: var(--white);
}

.footer {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(180px, 0.5fr) minmax(220px, 0.65fr);
    gap: clamp(26px, 5vw, 70px);
    padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(135deg, var(--navy-dark), #08275d 68%, #0a326c);
    border-top: 4px solid rgba(47, 143, 88, 0.55);
}

.footer img {
    width: 220px;
    height: 82px;
    object-fit: contain;
    padding: 8px;
    border-radius: 8px;
    background: var(--white);
}

.footer p {
    margin: 0;
    line-height: 1.7;
}

.footer-brand p {
    max-width: 520px;
    margin-top: 18px;
}

.footer h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 17px;
    line-height: 1.2;
}

.footer-links {
    display: grid;
    gap: 12px;
    align-content: start;
    font-weight: 800;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: grid;
    gap: 10px;
    align-content: start;
}

@media (max-width: 960px) {
    .top-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-social {
        align-self: flex-start;
    }

    .site-header {
        grid-template-columns: auto auto;
    }

    .brand img {
        width: 158px;
    }

    .nav-toggle-label {
        justify-self: end;
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        border: 1px solid var(--line);
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        width: 22px;
        height: 2px;
        content: "";
        background: var(--navy);
    }

    .nav-toggle-label span::before {
        transform: translateY(-7px);
    }

    .nav-toggle-label span::after {
        transform: translateY(5px);
    }

    .site-nav,
    .login-button {
        display: none;
    }

    .nav-toggle:checked ~ .site-nav,
    .nav-toggle:checked ~ .login-button {
        grid-column: 1 / -1;
        display: grid;
        justify-self: stretch;
    }

    .site-nav {
        gap: 4px;
    }

    .split-section,
    .split-section.reverse,
    .tracking-panel,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .cards,
    .service-grid,
    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .top-contact {
        gap: 8px;
        font-size: 12px;
    }

    .top-contact a {
        width: 100%;
    }

    .top-social a {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: 680px;
    }

    h1 {
        font-size: 42px;
    }

    .feature-grid,
    .cards,
    .service-grid,
    .stats-band,
    .inline-form,
    .footer {
        grid-template-columns: 1fr;
    }

    .rounded-image {
        aspect-ratio: 4 / 3;
    }
}
