:root {
    --navy: #061a2f;
    --navy-2: #0b2948;
    --ink: #122033;
    --red: #df0c0c;
    --gold: #f0ae28;
    --paper: #f6f8fb;
    --white: #ffffff;
    --muted: #627086;
    --line: rgba(255, 255, 255, .18);
    --shadow: 0 24px 70px rgba(6, 26, 47, .18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

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

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 20;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 14px;
    font-weight: 800;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(6, 26, 47, .96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    min-width: max-content;
}

.brand img {
    width: 56px;
    height: 56px;
    padding: 5px;
    border-radius: 50%;
    background: var(--white);
}

.brand strong {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
}

.brand em {
    color: var(--red);
    font-style: normal;
}

.brand small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    font-weight: 800;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav .is-current {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.quote-link,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.quote-link,
.button.primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(223, 12, 12, .25);
}

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

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(223, 12, 12, .34), transparent 28%),
        linear-gradient(135deg, #06111f 0%, #0b2948 54%, #071827 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -40px 44%;
    height: 190px;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .95) 40%, var(--red) 44%, var(--red) 67%, transparent 70%);
    transform: rotate(-8deg);
    opacity: .88;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 38%, transparent);
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 56px;
    align-items: center;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 690px;
    padding: 76px 0 96px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 18px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: .94;
    font-weight: 900;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 900;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
}

.hero-lede,
.page-hero p,
.intro-section p {
    font-size: 19px;
    color: rgba(255, 255, 255, .78);
    max-width: 690px;
}

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

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.section {
    padding: 88px 0;
}

.intro-section {
    color: var(--white);
    background: var(--navy);
}

.intro-section .split {
    align-items: start;
}

.intro-section p:last-child {
    color: rgba(255, 255, 255, .78);
}

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

.services-band {
    background: var(--white);
}

.service-grid,
.industry-grid,
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.industry-grid article,
.reason-grid article,
.contact-card,
.quote-form,
.placeholder-panel {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 54px rgba(6, 26, 47, .08);
}

.service-card {
    padding: 28px;
    border-top: 5px solid var(--red);
}

.service-number {
    display: inline-block;
    margin-bottom: 34px;
    color: var(--gold);
    font-weight: 900;
}

.service-card p,
.industry-grid p,
.reason-grid p,
.service-row p,
.contact-card p,
.detail-grid p {
    color: var(--muted);
}

.service-card ul,
.service-row ul,
.large-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.service-card li,
.service-row li,
.large-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    font-weight: 700;
}

.service-card li::before,
.service-row li::before,
.large-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .64em;
    width: 8px;
    height: 8px;
    background: var(--red);
}

.quote-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.quote-options a {
    color: var(--red);
    font-weight: 900;
}

.quote-options a + a {
    color: var(--navy);
}

.row-actions {
    justify-content: flex-end;
}

.industry-grid article,
.reason-grid article {
    padding: 25px;
    border: 1px solid rgba(6, 26, 47, .08);
}

.why-section {
    background: linear-gradient(180deg, var(--paper), #e9edf4);
}

.cta {
    padding: 74px 0;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(6, 26, 47, .96), rgba(6, 26, 47, .86)),
        linear-gradient(90deg, var(--red), var(--gold));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta h2 {
    max-width: 760px;
    margin: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 24%, rgba(240, 174, 40, .2), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
}

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

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(40px, 5vw, 70px);
}

.service-list {
    display: grid;
    gap: 18px;
}

.service-row {
    display: grid;
    grid-template-columns: 1.4fr .8fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-left: 6px solid var(--red);
    border-radius: var(--radius);
    background: var(--white);
}

.service-row .button.secondary {
    color: var(--navy);
    border-color: rgba(6, 26, 47, .18);
}

.service-detail-hero .button {
    margin-top: 12px;
}

.placeholder-panel {
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84)),
        repeating-linear-gradient(135deg, rgba(223, 12, 12, .12) 0 12px, transparent 12px 24px);
}

.placeholder-panel img {
    width: 172px;
}

.placeholder-panel span {
    margin-top: 18px;
    font-weight: 900;
    color: var(--muted);
    text-align: center;
}

.detail-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.large-list {
    columns: 2;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
}

.contact-section {
    background: var(--white);
}

.contact-card,
.quote-form {
    padding: 30px;
}

.contact-card {
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(6, 26, 47, .96), rgba(11, 41, 72, .92)),
        var(--navy);
}

.contact-card p {
    color: rgba(255, 255, 255, .72);
}

.contact-card a {
    display: block;
    margin-top: 14px;
    color: var(--gold);
    font-weight: 900;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    font-weight: 900;
}

.quote-form .full,
.quote-form button,
.form-status {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(6, 26, 47, .2);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    resize: vertical;
}

.form-status {
    padding: 13px 14px;
    color: var(--navy);
    background: #fff6df;
    border-left: 5px solid var(--gold);
    font-weight: 800;
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: #06111f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .75fr .9fr;
    gap: 52px;
    padding: 60px 0 36px;
}

.footer-brand img {
    width: 54px;
    padding: 5px;
    border-radius: 50%;
    background: var(--white);
}

.footer-brand span {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin-bottom: 9px;
}

.footer-grid a:hover,
.footer-bottom a {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

@media (max-width: 920px) {
    .nav-wrap,
    .main-nav,
    .cta-inner,
    .footer-bottom {
        flex-wrap: wrap;
    }

    .nav-wrap {
        padding: 14px 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .hero-grid,
    .split,
    .detail-grid,
    .contact-grid,
    .service-row {
        grid-template-columns: 1fr;
    }

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

    .service-grid,
    .industry-grid,
    .reason-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-row {
        align-items: start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .quote-link {
        width: 100%;
    }

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        padding: 8px 9px;
        font-size: 13px;
    }

    .hero-grid,
    .section,
    .page-hero {
        padding: 58px 0;
    }

    h1 {
        font-size: 45px;
    }

    .hero-visual img {
        min-height: 300px;
    }

    .service-grid,
    .industry-grid,
    .reason-grid,
    .footer-grid,
    .quote-form {
        grid-template-columns: 1fr;
    }

    .large-list {
        columns: 1;
    }

    .footer-bottom {
        display: block;
    }
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-options h2 {
    margin-bottom: 0;
    font-size: 34px;
}

.contact-note {
    display: grid;
    gap: 4px;
    padding-top: 6px;
    color: var(--muted);
}

.contact-note strong {
    color: var(--ink);
}
