:root {
    --navy: #142b4a;
    --navy2: #0b1d35;
    --red: #c91f2c;
    --ink: #21324b;
    --muted: #68758a;
    --bg: #f5f7fa;
    --white: #fff;
    --line: #dfe5ec;
    --shadow: 0 18px 50px rgba(17, 39, 70, 0.12);
}

/* =========================
   GLOBAL STYLES
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

img {
    max-width: 100%;
}

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

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

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
}

p {
    font-weight: 400;
}

/* =========================
   TOP BAR
========================= */

.topbar {
    background: var(--navy2);
    color: #dce6f2;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

/* =========================
   HEADER AND NAVIGATION
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

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

.logo img {
    width: 300px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav a {
    position: relative;
}

.nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--red);
    transition: right 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after {
    right: 0;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border: 2px solid var(--red);
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    background: #a91925;
    border-color: #a91925;
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.menu-btn {
    display: none;
    padding: 0;
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 590px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(8, 28, 52, 0.98) 0%,
            rgba(8, 28, 52, 0.96) 43%,
            rgba(8, 28, 52, 0.2) 72%
        ),
        url("../img/skyline.png") center / cover;
}

.hero-content {
    max-width: 640px;
    padding: 90px 0;
    color: var(--white);
}

.eyebrow {
    color: #ef3745;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    margin: 16px 0 22px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 610px;
    color: #e0e8f2;
    font-size: 1.2rem;
}

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

/* =========================
   SECTIONS
========================= */

.section {
    padding: 82px 0;
}

.section.alt {
    background: var(--bg);
}

.center {
    text-align: center;
}

.section-title {
    margin: 8px 0 16px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
}

/* =========================
   GRIDS
========================= */

.industry-grid,
.card-grid,
.stats,
.footer-grid {
    display: grid;
    gap: 22px;
}

.industry-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* =========================
   CARDS
========================= */

.industry-card, 
.service-card,
.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
	padding: 28px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(13, 38, 70, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.industry-card:hover,
.service-card:hover,
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.industry-card h3,
.service-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-weight: 800;
}

.icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--red);
    font-size: 26px;
    font-weight: 900;
}

/* =========================
   SPLIT CONTENT
========================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.split > div {
    padding: 55px;
}

.split .dark {
    background: var(--navy);
    color: var(--white);
}

.split .light {
    background: var(--white);
}

.split h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 800;
}

.split p {
    color: inherit;
    opacity: 0.85;
}

/* =========================
   STATS
========================= */

.stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 35px;
}

.stat {
    padding: 28px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    color: var(--red);
    font-size: 2.3rem;
    font-weight: 900;
}

/* =========================
   PROCESS
========================= */

.process {
    counter-reset: steps;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.step {
    position: relative;
    padding: 30px 24px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red);
    background: var(--white);
}

.step::before {
    counter-increment: steps;
    content: "0" counter(steps);
    color: #dfe5ec;
    font-size: 2.4rem;
    font-weight: 900;
}

.step h3 {
    margin: 8px 0;
    color: var(--navy);
    font-weight: 800;
}

/* =========================
   CALL TO ACTION
========================= */

.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    color: var(--white);
}

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

.cta h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 92px 0;
    background: linear-gradient(120deg, var(--navy2), var(--navy));
    color: var(--white);
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(2.8rem, 6vw, 4.7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 760px;
    color: #dbe6f1;
    font-size: 1.15rem;
}

/* =========================
   PANELS
========================= */

.panel {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(20, 43, 74, 0.07);
}

/* =========================
   CHECKLIST
========================= */

.checklist {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding: 9px 0 9px 30px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}

/* =========================
   JOB LIST
========================= */

.job-list {
    display: grid;
    gap: 16px;
    margin-top: 10px;
}

.job {
    padding: 12px;
    border: 1px solid var(--line);
	border-left: 5px solid var(--navy);
    background: var(--white);
}

.jobpremium {
    padding: 12px;
    border: 1px solid var(--line);
	border-left: 5px solid var(--red);
    background: var(--white);
}

.job h3 {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
}

.job-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

/* =========================
   FORMS
========================= */

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

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.92rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    border: 1px solid #cbd4df;
    border-radius: 5px;
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(20, 43, 74, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.notice {
    display: none;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #b6e1c4;
    border-radius: 5px;
    background: #eaf8ef;
    color: #1b6836;
}

/* =========================
   RESOURCES
========================= */

.resource-card small {
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 58px 0 20px;
    background: #09192d;
    color: #cbd7e5;
}

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

.footer h4 {
    color: var(--white);
    font-weight: 800;
}

.footer a {
    display: block;
    margin: 8px 0;
}

.footer .logo img {
    max-width: 260px;
    filter: brightness(0) invert(1);
}

.copyright {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

/* =========================
   MISCELLANEOUS
========================= */

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.quote {
    padding-left: 22px;
    border-left: 4px solid var(--red);
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 700;
}

.breadcrumbs {
    color: #c7d5e7;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--white);
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {
    .nav {
        position: fixed;
        inset: 78px 0 auto;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 30px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
    }

    .nav.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .industry-grid,
    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 250px;
    }

    .topbar {
        display: none;
    }
}

/* =========================
   MOBILE
========================= */

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

    .hero {
        min-height: 620px;
        background:
            linear-gradient(
                rgba(8, 28, 52, 0.9),
                rgba(8, 28, 52, 0.92)
            ),
            url("../img/skyline.png") center / cover;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .industry-grid,
    .card-grid,
    .stats,
    .process,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .split > div {
        padding: 36px 25px;
    }

    .cta .container {
        display: block;
    }

    .cta .actions {
        margin-top: 24px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .logo img {
        width: 220px;
    }

    .section {
        padding: 62px 0;
    }
}