:root {
    --p: #073f4a;
    --p2: #0b6270;
    --g: #d5a62a;
    --ink: #10252b;
    --muted: #657a80;
    --bg: #f4f8f9;
    --line: #dce7ea;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.65
}

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

.container {
    width: min(var(--max), 92%);
    margin: auto
}

.top {
    background: var(--p);
    color: #dcebed;
    font-size: 13px
}

.top .container {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    gap: 15px
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

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

.logo {
    width: 240px;
    width:215px;
}

.links {
    display: flex;
    gap: 25px;
    align-items: center;
    font-weight: 700;
    font-size: 14px
}

.links a {
    position: relative
}

.links a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--g);
    transition: .2s
}

.links a:hover:after,
.links a.active:after {
    width: 100%
}

.cta {
    background: var(--p);
    color: #fff !important;
    padding: 10px 17px;
    border-radius: 30px
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 27px;
    color: var(--p)
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    color: #fff
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .8s
}

.slide.active {
    opacity: 1
}

.slide:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 32, 38, .94), rgba(3, 32, 38, .7) 52%, rgba(3, 32, 38, .18))
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 125px
}

.eyebrow,
.kicker {
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 900
}

.eyebrow:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--g);
    vertical-align: middle;
    margin-right: 9px
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    max-width: 760px;
    margin: 15px 0
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: #e5f0f2
}

.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
    border: 1px solid transparent
}

.primary {
    background: var(--g);
    color: #182b30
}

.outline {
    border-color: #fff;
    color: #fff
}

.section {
    padding: 82px 0
}

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

.head {
    max-width: 740px;
    margin-bottom: 38px
}

h2 {
    color: var(--p);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin: 8px 0 13px
}

.lead {
    color: var(--muted);
    font-size: 17px
}

.grid {
    display: grid;
    gap: 22px
}

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

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 25px rgba(7, 63, 74, .05)
}

.card:hover {
    transform: translateY(-3px);
    transition: .2s
}

.icon {
    width: 48px;
    height: 48px;
    background: #e9f2f4;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--p);
    font-weight: 900;
    margin-bottom: 15px
}

.card h3 {
    color: var(--p);
    margin: 0 0 8px
}

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

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

.split img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7, 63, 74, .14)
}

.checks {
    display: grid;
    gap: 13px;
    margin-top: 24px
}

.check {
    display: flex;
    gap: 11px
}

.check i {
    font-style: normal;
    background: #e8f3ef;
    color: #16715c;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    font-size: 12px;
    margin-top: 4px
}

.pagehero {
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    padding: 95px 0 75px
}

.pagehero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    max-width: 800px;
    margin: 10px 0
}

.pagehero p {
    max-width: 760px;
    color: #dbe9eb;
    font-size: 17px
}

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

.tag {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 20px;
    background: #edf4f5;
    color: var(--p);
    font-size: 12px;
    font-weight: 800;
    margin: 12px 4px 0 0
}

.process {
    counter-reset: x
}

.process .card {
    position: relative;
    padding-top: 52px
}

.process .card:before {
    counter-increment: x;
    content: '0' counter(x);
    position: absolute;
    top: 18px;
    left: 25px;
    color: var(--g);
    font-weight: 900
}

.contact {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px
}

.info {
    background: var(--p);
    color: #fff;
    border-radius: 18px;
    padding: 35px
}

.info h2 {
    color: #fff
}

.info p {
    color: #cfe1e4
}

.item {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.item .icon {
    margin: 0;
    background: rgba(255, 255, 255, .1);
    color: var(--g)
}

form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(7, 63, 74, .08)
}

.formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.field {
    margin-bottom: 15px
}

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

label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    color: var(--p);
    margin-bottom: 6px
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cad9dc;
    border-radius: 10px;
    font: inherit
}

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

.notice {
    display: none;
    background: #eaf5f1;
    color: #17604f;
    padding: 11px;
    border-radius: 9px;
    margin-top: 12px;
    font-size: 13px
}

.float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #20b65a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 25px;
    z-index: 30;
    box-shadow: 0 8px 25px #0003
}

footer {
    background: #062f38;
    color: #b9d0d4;
    padding: 52px 0 20px
}

.foot {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px
}

.foot img {
    width: 220px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 13px
}

.foot h3 {
    color: #fff;
    font-size: 15px
}

.foot ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 7px;
    font-size: 13px
}

.copy {
    border-top: 1px solid #ffffff1a;
    margin-top: 30px;
    padding-top: 17px;
    font-size: 12px;
    display: flex;
    justify-content: space-between
}

@media(max-width:950px) {
    .links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start
    }

    .links.open {
        display: flex
    }

    .menu {
        display: block
    }

    .g4,
    .g3,
    .products {
        grid-template-columns: repeat(2, 1fr)
    }

    .split,
    .contact {
        grid-template-columns: 1fr
    }

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

@media(max-width:600px) {
    .top .container {
        flex-direction: column
    }

    .logo {
        width: 200px
    }

    .hero {
        min-height: 600px
    }

    .hero .container {
        padding-top: 105px
    }

    .section {
        padding: 62px 0
    }

    .g4,
    .g3,
    .products,
    .foot,
    .formgrid {
        grid-template-columns: 1fr
    }

    .full {
        grid-column: auto
    }

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