@font-face {
    font-family: 'PekaCustom';
    src: url("../fonts/peka-custom.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PekaCustom';
    src: url("../fonts/peka-custom-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PekaCustom';
    src: url("../fonts/peka-custom-medium.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PekaCustom';
    src: url("../fonts/peka-custom-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #061128;
    --navy2: #0b1d3f;
    --blue: #0b5ea8;
    --cyan: #29c7c6;
    --teal: #159d9a;
    --muted: #657084;
    --line: #e7edf3;
    --soft: #f4f8fb;
    --white: #fff;
    --dark: #101828;
    --shadow: 0 24px 70px rgba(6, 17, 40, .14);
    --radius: 26px;
    --font: 'PekaCustom', Arial, sans-serif;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--dark);
    background: #fff;
    line-height: 1.65
}

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

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

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: #fff;
    padding: 10px 12px;
    z-index: 999
}

.skip-link:focus {
    left: 10px
}

.top-strip {
    background: var(--navy);
    color: #c8d5e8;
    font-size: 13px
}

.top-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 237, 243, .85);
    transition: .25s ease
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(6, 17, 40, .08)
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

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

.brand strong {
    font-size: 23px;
    letter-spacing: .1em;
    color: var(--navy);
    line-height: 1
}

.brand small {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .11em;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px
}

.main-nav a {
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #22314c
}

.main-nav a:hover,
.main-nav a.is-active {
    background: #eef8fb;
    color: var(--blue)
}

.main-nav .nav-cta {
    background: var(--navy);
    color: #fff;
    margin-left: 8px
}

.main-nav .nav-cta:hover {
    background: var(--blue);
    color: #fff
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    gap: 5px;
    flex-direction: column
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--navy);
    display: block
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff
}

.hero .swiper {
    height: calc(100vh - 120px);
    min-height: 660px
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.hero-slide__bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 17, 40, .92), rgba(6, 17, 40, .72) 42%, rgba(6, 17, 40, .14))
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 40px));
    margin-left: calc((100vw - min(var(--container), calc(100vw - 40px)))/2)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 900;
    color: var(--teal)
}

.eyebrow:before {
    content: "";
    width: 46px;
    height: 3px;
    background: currentColor;
    border-radius: 10px
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    margin: 18px 0 22px;
    letter-spacing: -.05em
}

.hero p,
.page-hero p {
    font-size: clamp(17px, 2vw, 21px);
    color: #d8e5f7;
    max-width: 650px
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 15px 23px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .2s ease
}

.btn--primary {
    background: var(--cyan);
    color: var(--navy)
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(41, 199, 198, .25)
}

.btn--outline {
    border-color: rgba(255, 255, 255, .35);
    color: #fff
}

.btn--outline:hover {
    background: #fff;
    color: var(--navy)
}

.btn--dark {
    background: var(--navy);
    color: #fff;
    width: fit-content;
}

.btn--light {
    background: #fff;
    color: var(--navy);
    width: fit-content;
}

.hero-metrics {
    position: absolute;
    right: calc((100vw - min(var(--container), calc(100vw - 40px)))/2);
    bottom: 48px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18)
}

.metric {
    padding: 20px 28px;
    background: rgba(255, 255, 255, .08)
}

.metric strong {
    display: block;
    font-size: 26px;
    color: #fff
}

.metric span {
    font-size: 12px;
    color: #c9d8ed;
    text-transform: uppercase;
    letter-spacing: .1em
}

.section {
    padding: 105px 0
}

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

.section--navy {
    background: var(--navy);
    color: #fff
}

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

.section-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    margin: 10px 0 0;
    letter-spacing: -.04em
}

.section-head p {
    max-width: 560px;
    color: var(--muted);
    margin: 0
}

.section--navy .section-head p {
    color: #b9c6d9
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(6, 17, 40, .06);
    transition: .25s ease
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.card__image {
    height: 230px;
    background-size: cover;
    background-position: center
}

.card__body {
    padding: 28px
}

.card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    letter-spacing: -.03em;
    color: var(--navy)
}

.card p {
    color: var(--muted);
    margin: 0 0 18px
}

.read-link {
    font-weight: 900;
    color: var(--blue);
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center
}

.split-image {
    position: relative
}

.split-image img {
    border-radius: 32px;
    box-shadow: var(--shadow);
    height: 560px;
    width: 100%;
    object-fit: cover
}

.split-image:before {
    content: "";
    position: absolute;
    left: -24px;
    top: 24px;
    bottom: -24px;
    width: 120px;
    background: linear-gradient(var(--cyan), var(--blue));
    border-radius: 28px;
    z-index: -1
}

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px
}

.value {
    background: #effbfb;
    border-left: 4px solid var(--cyan);
    padding: 18px;
    font-weight: 800;
    color: var(--navy)
}

.page-hero {
    background: linear-gradient(120deg, rgba(6, 17, 40, .95), rgba(6, 17, 40, .78)), var(--hero-img);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 130px 0 90px
}

.breadcrumb {
    display: flex;
    gap: 10px;
    color: #b8c6d8;
    font-size: 14px
}

.breadcrumb a {
    color: #fff
}

.service-row {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 42px;
    align-items: center;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #fff;
    margin-bottom: 28px;
    box-shadow: 0 16px 44px rgba(6, 17, 40, .05)
}

.service-row img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px
}

.service-row h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.08
}

.service-row p {
    color: var(--muted)
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155
}

.check-list li:before {
    content: "✓";
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    background: #e6fbfb;
    color: var(--teal);
    font-weight: 900
}

.project-card {
    position: relative;
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #000;
    box-shadow: var(--shadow)
}

.project-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 17, 40, 0), rgba(6, 17, 40, .95))
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease
}

.project-card:hover img {
    transform: scale(1.06)
}

.project-card__content {
    position: relative;
    z-index: 2;
    padding: 30px
}

.project-card span {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #a7f3f2;
    font-weight: 900
}

.project-card h3 {
    font-size: 30px;
    margin: 8px 0 12px;
    line-height: 1
}

.project-hero {
    padding: 92px 0;
    background: var(--navy);
    color: #fff
}

.project-hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: end
}

.project-meta {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 25px;
    display: grid;
    gap: 12px
}

.project-meta div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 10px
}

.project-meta div:last-child {
    border-bottom: 0
}

.gallery {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 20px
}

.gallery a {
    border-radius: 26px;
    overflow: hidden;
    min-height: 260px
}

.gallery a:first-child {
    grid-row: span 2;
    min-height: 540px
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease
}

.gallery a:hover img {
    transform: scale(1.04)
}

.detail-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 18px 50px rgba(6, 17, 40, .06)
}

.detail-panel h2 {
    margin-top: 0;
    color: var(--navy);
    font-size: 36px
}

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

.scope-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: #fbfdff;
    font-weight: 800;
    color: var(--navy)
}

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

.team-card {
    padding: 32px 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    text-align: center
}

.avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    margin: 0 auto 18px
}

.team-card h3 {
    margin: 0;
    color: var(--navy)
}

.team-card p {
    margin: 6px 0 0;
    color: var(--teal);
    font-weight: 800
}

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

.contact-card {
    background: var(--navy);
    color: #fff;
    border-radius: 30px;
    padding: 38px
}

.contact-card p {
    color: #c8d5e8
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.contact-item strong {
    display: block;
    color: #fff
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow)
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-weight: 800;
    color: var(--navy)
}

.field input,
.field textarea,
.field select {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit
}

.field textarea {
    min-height: 160px
}

.footer-cta {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff
}

.footer-cta__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    gap: 30px
}

.footer-cta h2 {
    font-size: 38px;
    line-height: 1.08;
    margin: 6px 0 0;
    max-width: 760px
}

.site-footer {
    background: var(--navy);
    color: #d8e2f1
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 34px;
    padding: 70px 0 44px
}

.footer-brand img {
    width: 110px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 18px
}

.site-footer h3 {
    color: #fff;
    margin-top: 0
}

.site-footer a {
    display: block;
    color: #c8d5e8;
    margin: 9px 0
}

.site-footer a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #aebbd0
}

.not-found {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center
}

.not-found h1 {
    font-size: clamp(80px, 15vw, 180px);
    line-height: .85;
    color: var(--navy);
    margin: 0
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat {
    padding: 28px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--line)
}

.stat strong {
    display: block;
    font-size: 40px;
    color: var(--navy);
    line-height: 1
}

.stat span {
    color: var(--muted);
    font-weight: 800
}

@media(max-width:980px) {
    .main-nav {
        position: fixed;
        inset: 120px 20px auto 20px;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 22px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch
    }

    .main-nav.is-open {
        display: flex
    }

    .nav-toggle {
        display: flex
    }

    .hero .swiper {
        min-height: 640px
    }

    .hero-metrics {
        display: none
    }

    .grid-3,
    .grid-2,
    .split,
    .service-row,
    .project-hero__grid,
    .contact-grid,
    .footer-main {
        grid-template-columns: 1fr
    }

    .service-row {
        padding: 24px
    }

    .service-row img {
        height: 280px
    }

    .team-grid,
    .values,
    .stat-band {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .gallery a:first-child {
        grid-row: auto;
        min-height: 320px
    }

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

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

    .top-strip__inner {
        display: none
    }

    .nav-wrap {
        height: 74px
    }

    .hero h1,
    .page-hero h1 {
        font-size: 50px;
        line-height: 1;
    }

    .hero-content {
        margin-left: 14px
    }

    .section {
        padding: 72px 0
    }

    .section-head {
        display: block
    }

    .section-head h2 {
        margin-bottom: 20px;
    }

    .grid-3,
    .team-grid,
    .values,
    .scope-grid,
    .stat-band,
    .form-grid {
        grid-template-columns: 1fr
    }

    .footer-cta__grid,
    .footer-bottom {
        display: block
    }

    .footer-cta h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

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

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.mb-4 {
    margin-bottom: 40px !important;
}