:root {
    --teal: #07858d;
    --teal2: #0aa6a6;
    --dark: #07223c;
    --text: #263648;
    --muted: #64748b;
    --bg: #f3fbfb;
    --card: #fff;
    --line: #e5eef0;
    --shadow: 0 18px 45px rgba(7, 34, 60, .12)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 7%;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    color: var(--dark);
    font-size: 24px
}

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

.brand small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted)
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 700;
    color: var(--dark)
}

.nav a {
    padding: 8px 0
}

.nav a.active,
.nav a:hover {
    color: var(--teal)
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 34px;
    color: var(--dark)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 800;
    border: 0;
    box-shadow: 0 10px 25px rgba(7, 133, 141, .25);
    cursor: pointer
}

.btn.small {
    padding: 10px 18px
}

.btn.ghost {
    background: #fff;
    color: var(--teal) !important;
    border: 1px solid var(--teal);
    box-shadow: none
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 70px 7% 40px;
    background: linear-gradient(135deg, #fff 0%, #effafa 55%, #fff 100%)
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    margin: 0;
    color: var(--dark);
    letter-spacing: -1.5px
}

.hero h1 span {
    color: var(--teal)
}

.hero p {
    font-size: 20px;
    color: var(--text)
}

.eyebrow {
    color: var(--teal);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px !important
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 30px 0
}

.checks {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--dark);
    font-weight: 700
}

.checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hero-card {
    position: relative
}

.hero-card>img {
    height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.floating {
    position: absolute;
    right: 28px;
    bottom: 28px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    font-weight: 900;
    color: var(--dark);
    box-shadow: var(--shadow)
}

.section {
    padding: 75px 7%
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px
}

.section-title p {
    color: var(--teal);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px
}

.section-title h2,
.why h2,
.split h2,
.cta h2,
.contact-panel h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.2;
    margin: 0;
    color: var(--dark)
}

.cards {
    display: grid;
    gap: 24px
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: .25s
}

.card:hover {
    transform: translateY(-6px)
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px
}

.card h3 {
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--dark)
}

.card p {
    color: var(--text)
}

.card a {
    color: var(--teal);
    font-weight: 900
}

.why {
    margin: 40px 7%;
    background: linear-gradient(135deg, #effafa, #fff);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 42px;
    text-align: center
}

.why span {
    color: var(--teal)
}

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

.features div {
    padding: 20px;
    border-right: 1px solid #cfe6e8
}

.features div:last-child {
    border-right: 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 7%
}

.split p {
    font-size: 18px;
    color: var(--text)
}

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

.footer {
    background: var(--dark);
    color: #eaf7f8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 35px 7%;
    margin-top: 40px
}

.page-hero {
    text-align: center;
    padding: 80px 7%;
    background: linear-gradient(135deg, #effafa, #fff)
}

.page-hero p {
    max-width: 760px;
    margin: 18px auto;
    color: var(--text);
    font-size: 20px
}

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

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.service-row h2 {
    margin: 0;
    color: var(--dark)
}

.cta {
    margin: 40px 7%;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff
}

.cta h2 {
    color: #fff
}

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

.timeline div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow)
}

.timeline b {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 22px
}

.faq {
    max-width: 900px;
    margin: auto
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(7, 34, 60, .07)
}

.faq summary {
    font-weight: 900;
    color: var(--dark);
    cursor: pointer;
    font-size: 20px
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    padding: 70px 7%
}

.contact-panel,
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow)
}

.contact-panel a {
    color: var(--teal);
    font-weight: 800
}

.form {
    display: grid;
    gap: 16px
}

.form label {
    font-weight: 800;
    color: var(--dark)
}

.form input,
.form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit
}

.map {
    padding: 0 7% 40px
}

.map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 28px;
    box-shadow: var(--shadow)
}

.list {
    padding-left: 20px;
    margin: 22px 0
}

.list li {
    margin: 10px 0
}

@media(max-width:960px) {
    .menu-btn {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: #fff;
        padding: 20px 7%;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line)
    }

    .nav.open {
        display: flex
    }

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

    .cards.four,
    .cards.three,
    .features,
    .timeline {
        grid-template-columns: 1fr
    }

    .features div {
        border-right: 0;
        border-bottom: 1px solid #cfe6e8
    }

    .features div:last-child {
        border-bottom: 0
    }

    .hero {
        padding-top: 45px
    }

    .hero-card>img {
        height: 380px
    }

    .brand {
        font-size: 20px
    }

    .brand img {
        width: 58px
    }

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

    .service-row {
        grid-template-columns: 1fr
    }

    .site-header {
        padding: 12px 5%
    }
}

@media(max-width:560px) {

    .hero h1,
    .page-hero h1 {
        font-size: 38px
    }

    .section,
    .split,
    .page-hero,
    .contact-grid {
        padding-left: 5%;
        padding-right: 5%
    }

    .actions .btn {
        width: 100%
    }

    .floating {
        left: 18px;
        right: 18px;
        bottom: 18px
    }

    .hero-card>img {
        height: 320px
    }

    .why,
    .cta {
        margin-left: 5%;
        margin-right: 5%;
        padding: 30px
    }

    .brand small {
        display: none
    }
}