:root {
    --navy: #031E44;
    --navy2: #062B5F;
    --green: #4B8421;
    --green2: #6FBF2A;
    --soft: #E4F1D4;
    --sky: #F3F6F7;
    --text: #24324a;
    --border: #E4E9EE;
    --white: #fff;
    --shadow: 0 12px 35px rgba(3,30,68,.14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: var(--navy);
    background: #fbfbfb
}

h1,h2,h3 {
    font-family: 'Plus Jakarta Sans',Inter,Arial,sans-serif;
    letter-spacing: -.03em;
    margin: 0
}

p {
    color: var(--text);
    line-height: 1.65
}

.wrap {
    max-width: 1180px;
    margin: auto;
    padding: 0 22px
}

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 800
}

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

.brand small {
    display: block;
    color: var(--green);
    font-weight: 800
}

.links {
    display: flex;
    align-items: center;
    gap: 22px
}

.links a {
    /color:var(--navy);/
    text-decoration: none;
    font-weight: 700;
    /font-size: 14px;/
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg,var(--navy),var(--navy2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(3,30,68,.18)
}

.btn.green {
    background: linear-gradient(135deg,var(--green),var(--green2))
}

.btn.light {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
    box-shadow: none
}

.hero {
    background: linear-gradient(135deg,#fbfbfb 0%,#f3f6f7 58%,#e4f1d4 100%);
    padding: 76px 0
}

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

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--soft);
    padding: 8px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    color: var(--navy)
}

h1 {
    font-size: clamp(40px,6vw,68px);
    line-height: 1.04
}

.greenText {
    color: var(--green)
}

.lead {
    font-size: 18px;
    max-width: 620px
}

.heroCard {
    position: relative;
    background: #fff;
    border-radius: 34px;
    padding: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.heroCard img.photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 26px;
    display: block
}

.logoBadge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: rgba(255,255,255,.5);
    border-radius: 24px;
    padding: 14px 18px;
    box-shadow: 0 10px 25px rgba(3,30,68,.15);
    display: flex;
    align-items: center;
    gap: 12px
}

.logoBadge img {
    width: 65px;
    height: 65px
}

.logoBadge a {
    color: var(--green);
    font-weight: 900;
    text-decoration: none
}

.trust {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 22px 0
}

.trust ul {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none
}

.trust li {
    text-align: center;
    font-weight: 800
}

.section {
    padding: 82px 0
}

.section.alt {
    background: var(--sky)
}

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

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

.center h2 {
    font-size: clamp(31px,4vw,45px)
}

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

.cards.two {
    grid-template-columns: repeat(2,1fr);
    max-width: 760px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(3,30,68,.08)
}

.card h3 {
    font-size: 22px
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,var(--green),var(--green2));
    color: #fff;
    font-size: 25px;
    margin-bottom: 18px
}

.groupTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 44px 0 18px;
    font-weight: 900;
    text-transform: uppercase
}

.groupTitle:before {
    content: "";
    width: 36px;
    height: 5px;
    border-radius: 5px;
    background: var(--green)
}

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

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

.aboutBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 26px
}

.aboutBadges span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 13px
}

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

.faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 12px;
    padding: 18px 22px;
    box-shadow: 0 8px 22px rgba(3,30,68,.06)
}

.faq summary {
    font-weight: 900;
    cursor: pointer
}

.formBox {
    max-width: 760px;
    margin: auto;
    background: #fff;
    border-radius: 32px;
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow)
}

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

.field {
    margin-bottom: 16px
}

.field label {
    display: block;
    font-weight: 900;
    margin-bottom: 7px;
    font-size: 14px
}

.field input,.field select,.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    color: var(--navy);
    background: #fff
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.notice {
    background: var(--soft);
    border: 1px solid #b9dca1;
    color: var(--navy);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 18px;
    font-weight: 800
}

.footer {
    background: var(--navy);
    color: #fff;
    padding: 46px 0 22px
}

.footer p,.footer a {
    color: rgba(255,255,255,.75)
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px
}

.footer a {
    text-decoration: none
}

.copy {
    text-align: center;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    color: rgba(255,255,255,.58)
}

.mobileBtn {
    display: none;
    background: none;
    border: 0;
    font-size: 30px;
    color: var(--navy)
}

@media(max-width: 900px) {
    .grid,.cards,.cards.two,.schedule,.why,.footerGrid,.formGrid {
        grid-template-columns:1fr
    }

    .links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 22px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow)
    }

    .links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start
    }

    .mobileBtn {
        display: block
    }

    .heroCard img.photo {
        height: 330px
    }

    .trust ul {
        grid-template-columns: 1fr 1fr
    }

    .logoBadge {
        position: static;
        margin-top: 14px
    }

    .nav {
        position: relative
    }

    h1 {
        font-size: 40px
    }
}
