:root {
    --ink: #11223e;
    --blue: #123f87;
    --cyan: #20b1ce;
    --orange: #f36b1c;
    --gold: #f6b521;
    --soft: #f3f7fb;
    --muted: #5d6d82;
    --line: #dbe5f0;
    --white: #fff;
    --shadow: 0 18px 45px rgba(17, 34, 62, .1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font: 500 16px/1.75 Manrope, Arial, sans-serif;
    background: #fff
}

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

h1,
h2,
h3 {
    font-family: Outfit, Manrope, sans-serif;
    line-height: 1.12
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.3rem);
    letter-spacing: -.04em
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.035em
}

h3 {
    font-size: 1.35rem
}

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

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

.site-header {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(24px, calc((100vw - 1140px)/2));
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(17, 34, 62, .06)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 600 16px/1 Outfit, sans-serif;
    letter-spacing: .01em
}

.brand b {
    font-weight: 500
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), #d63b51 40%, var(--cyan) 95%);
    color: #fff;
    font: bold 28px/1 Outfit
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 700
}

.site-nav a {
    padding: 29px 0 25px;
    border-bottom: 3px solid transparent
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--blue);
    border-color: var(--orange)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(125deg, #071d46 0%, #123f87 55%, #167ea8 100%);
    color: #fff
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 25px
}

.hero-copy>p:not(.eyebrow) {
    max-width: 650px;
    font-size: 1.08rem;
    color: #dbeeff
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800
}

.eyebrow.light {
    color: #a1e7f2
}

.button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 33px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s
}

.button:hover {
    transform: translateY(-2px)
}

.button-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(243, 107, 28, .25)
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff
}

.button-warm {
    background: var(--gold);
    color: var(--ink)
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    z-index: 1
}

.orbit-one {
    width: 800px;
    height: 800px;
    right: -300px;
    top: -310px
}

.orbit-two {
    width: 560px;
    height: 560px;
    right: -160px;
    top: -190px
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(90deg, #000, transparent 80%)
}

.stats-strip {
    background: #fff;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 3
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stats-grid article {
    padding: 27px 10px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stats-grid article:last-child {
    border: 0
}

.stats-grid strong {
    display: block;
    font: 700 2rem/1 Outfit;
    color: var(--blue)
}

.stats-grid span {
    font-size: 12px;
    color: var(--muted)
}

.section {
    padding: 100px 0
}

.surface {
    background: var(--soft)
}

.split-intro,
.narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start
}

.split-intro>div:last-child,
.narrative>div:last-child {
    font-size: 1.05rem;
    color: var(--muted)
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--blue);
    font-weight: 800;
    margin-top: 12px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 42px
}

.section-heading h2 {
    margin-bottom: 0
}

.service-preview,
.services-grid,
.values-grid,
.advantage-grid,
.branch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.service-preview article {
    padding: 32px;
    background: #fff;
    border-top: 4px solid var(--cyan);
    box-shadow: 0 5px 20px rgba(17, 34, 62, .05)
}

.service-preview i,
.services-grid span {
    color: var(--orange);
    font: 800 13px Outfit;
    font-style: normal
}

.service-preview p,
.services-grid p,
.values-grid p,
.advantage-grid p,
.branch-grid p {
    color: var(--muted);
    font-size: 14px
}

.footprint {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px
}

.footprint-card {
    padding: 60px;
    background: linear-gradient(135deg, var(--blue), #0b244e);
    color: #fff;
    border-radius: 4px
}

.footprint-card h2 {
    max-width: 520px
}

.footprint-card>p:not(.eyebrow) {
    color: #dbeeff;
    max-width: 540px
}

.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.location-list span {
    padding: 22px;
    background: var(--soft);
    font: 700 16px Outfit
}

.cta-band {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(110deg, #0d3270, #167aa6);
    color: #fff
}

.cta-band h2 {
    margin-bottom: 28px
}

.light-border {
    border-color: #fff
}

.site-footer {
    padding: 60px 0 24px;
    background: #081a36;
    color: #d8e2f1
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px
}

.footer-brand {
    color: #fff
}

.site-footer p {
    font-size: 14px;
    color: #9eb0c8;
    max-width: 280px;
    margin-top: 18px
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 14px
}

.site-footer a:not(.brand) {
    display: block;
    font-size: 14px;
    margin: 6px 0
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
    display: flex;
    justify-content: space-between
}

.page-hero {
    padding: 105px 0 90px;
    background: linear-gradient(135deg, #eef8fb, white 60%, #fff2e7)
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    margin-bottom: 18px
}

.page-hero p:last-child {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.05rem
}

.accent-block {
    background: linear-gradient(150deg, var(--orange), #f3a21c);
    color: #fff;
    padding: 40px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: end
}

.accent-block span {
    font: 700 7rem/.8 Outfit
}

.accent-block small {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

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

.values-grid article,
.advantage-grid article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line)
}

.value-icon {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 32px
}

.advantage-grid {
    grid-template-columns: repeat(4, 1fr)
}

.advantage-grid b {
    color: var(--orange);
    font: 700 2rem Outfit
}

.services-grid {
    grid-template-columns: repeat(4, 1fr)
}

.services-grid article {
    min-height: 215px;
    padding: 26px;
    border: 1px solid var(--line);
    transition: .2s
}

.services-grid article:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.services-grid h3 {
    margin: 13px 0 10px
}

.process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.process ol {
    list-style: none;
    margin: 0;
    padding: 0
}

.process li {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.process li b {
    color: var(--orange);
    font: 700 1.4rem Outfit
}

.process strong {
    display: block
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.client-grid img {
    width: 100%;
    height: 118px;
    object-fit: contain;
    border: 1px solid var(--line);
    padding: 20px;
    background: #fff;
    filter: saturate(.9);
    transition: .2s
}

.client-grid img:hover {
    filter: none;
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.two-panel {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: stretch
}

.two-panel article {
    padding: 45px;
    background: #fff
}

.fact-panel {
    background: var(--blue) !important;
    color: #fff
}

.fact-panel span {
    font: 700 2.2rem Outfit;
    color: #93e4ee
}

.fact-panel p {
    margin-bottom: 18px !important;
    color: #dbeeff !important
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px
}

.contact-layout h2 {
    margin-bottom: 30px
}

form {
    display: grid;
    gap: 18px
}

label {
    font-size: 13px;
    font-weight: 800
}

input,
textarea {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--ink);
    font: 500 16px Manrope
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(32, 177, 206, .3);
    border-color: var(--cyan)
}

form .button {
    border: 0;
    justify-self: start
}

.form-message {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue)
}

.contact-aside {
    padding: 45px;
    background: linear-gradient(150deg, #123f87, #0b2556);
    color: #fff
}

.contact-aside h3 {
    font-size: 2.2rem
}

.contact-aside>p:not(.eyebrow) {
    color: #dbeeff
}

.contact-aside>a {
    font-weight: 800
}

.contact-rule {
    height: 1px;
    background: rgba(255, 255, 255, .2);
    margin: 35px 0
}

.branch-grid article {
    padding: 27px;
    background: #fff;
    border-left: 3px solid var(--orange);
    box-shadow: 0 5px 18px rgba(17, 34, 62, .06)
}

.branch-grid a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800
}

.serviceable>div {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.serviceable span {
    padding: 9px 14px;
    background: var(--soft);
    font-size: 13px;
    font-weight: 700
}
.logo{width: 100px;}
@media(max-width:800px) {
    .logo{width: 80px;}
    .site-header {
        height: 72px
    }

    .menu-toggle {
        display: block;
        padding: 8px
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--ink);
        margin: 5px
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 12px 24px 20px;
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0
    }

    .site-nav.open {
        display: flex
    }

    .site-nav a {
        padding: 10px 0;
        border: 0
    }

    .site-nav a.active {
        color: var(--orange)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid article:nth-child(2) {
        border: 0
    }

    .split-intro,
    .narrative,
    .footprint,
    .process,
    .two-panel,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .section {
        padding: 70px 0
    }

    .service-preview,
    .values-grid,
    .advantage-grid,
    .services-grid,
    .branch-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .hero {
        min-height: 590px
    }
}

@media(max-width:520px) {
    .container {
        width: min(100% - 32px, 1140px)
    }

    .hero h1 {
        font-size: 2.65rem
    }

    .stats-grid strong {
        font-size: 1.6rem
    }

    .service-preview,
    .values-grid,
    .advantage-grid,
    .services-grid,
    .branch-grid,
    .client-grid {
        grid-template-columns: 1fr
    }

    .location-list {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom a {
        margin-top: 8px
    }

    .section-heading {
        align-items: start;
        flex-direction: column
    }

    .client-grid img {
        height: 130px
    }
}

/* Contact form validation states */
.field {
    position: relative
}

.field label em {
    color: #c72f2f;
    font-style: normal
}

.field-error {
    display: block;
    min-height: 19px;
    margin-top: 4px;
    color: #c72f2f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4
}

.is-invalid {
    border-color: #c72f2f !important;
    background: #fff8f8
}

.is-invalid:focus {
    outline-color: rgba(199, 47, 47, .2) !important
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important
}

form .button:disabled {
    cursor: wait;
    opacity: .7;
    transform: none
}

.form-message.success {
    padding: 12px 14px;
    border-left: 3px solid #23834a;
    background: #eef9f1;
    color: #176638
}

.form-message.error {
    padding: 12px 14px;
    border-left: 3px solid #c72f2f;
    background: #fff1f1;
    color: #9f2020
}