﻿:root {
    --bg: #eef2f7;
    --white: #ffffff;
    --ink: #0e1b2f;
    --text: #48576b;
    --muted: #7c8a9c;
    --line: #e0e6ee;
    --blue: #1a55b8;
    --blue-deep: #0d3a87;
    --blue-dark: #0a2a5e;
    --blue-soft: #e9f0fb;
    --blue-tint: #f3f7fd;
    --steel: #3f5a7d;
    --warn: #9a6321;
    --warn-bg: #fdf6ec;
    --ok: #1f6b46;
    --ok-bg: #eef6f1;
    --maxw: 1180px;
    --r: 10px;
    --sh-sm: 0 1px 3px rgba(14,27,47,.06),0 2px 8px rgba(14,27,47,.05);
    --sh-md: 0 4px 14px rgba(14,27,47,.08),0 12px 34px rgba(14,27,47,.07);
    --sh-blue: 0 10px 30px rgba(13,58,135,.22);
    --sans: -apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 36px
}

h1, h2, h3 {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.17
}

h1 {
    font-size: 44px;
    letter-spacing: -0.03em
}

h2 {
    font-size: 31px
}

h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--blue);
        display: inline-block
    }

.section-head {
    max-width: 740px;
    margin-bottom: 48px
}

    .section-head p {
        font-size: 16.5px;
        color: var(--text);
        margin-top: 14px
    }

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(180%) blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
    flex: 0 0 auto
}

.brand-div {
    width: 1px;
    height: 30px;
    background: var(--line);
    display: block;
    flex: 0 0 auto
}

.brand .name {
    font-size: 13.5px;
    line-height: 1.32;
    color: var(--ink)
}

    .brand .name b {
        font-weight: 700
    }

    .brand .name span {
        color: var(--muted);
        font-size: 12px
    }

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        transition: color .15s;
    }

        .nav-links a:hover {
            color: var(--blue)
        }

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: var(--blue);
    padding: 11px 20px;
    border-radius: 8px;
    box-shadow: var(--sh-sm);
    transition: background .15s,transform .12s;
}

    .nav-cta:hover {
        background: var(--blue-deep);
        transform: translateY(-1px)
    }

/* ---------- Buttons ---------- */
.btn {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    padding: 15px 28px;
    border-radius: 9px;
    display: inline-block;
    border: 1px solid transparent;
    transition: transform .12s,background .15s,box-shadow .15s;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--sh-blue)
}

    .btn-primary:hover {
        background: var(--blue-deep);
        transform: translateY(-2px)
    }

.btn-light {
    background: #fff;
    color: var(--blue-deep);
    box-shadow: var(--sh-sm)
}

    .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: var(--sh-md)
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4)
}

    .btn-outline:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.7)
    }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(160deg,#123b86 0%,var(--blue-dark) 60%,#081f48 100%);
    color: #dfe7f3;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 82% 14%,rgba(56,114,210,.35),transparent 42%), radial-gradient(circle at 8% 92%,rgba(28,76,168,.4),transparent 46%);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px);
        background-size: 100% 56px;
        pointer-events: none;
    }

    .hero .wrap {
        position: relative;
        padding: 88px 36px 92px
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

.hero .eyebrow {
    color: #8fb6e8
}

    .hero .eyebrow::before {
        background: #8fb6e8
    }

.hero h1 {
    color: #fff;
    margin-bottom: 24px;
    max-width: 680px
}

    .hero h1 span {
        background: linear-gradient(120deg,#7fb2f0,#bcd4f5);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-sub {
    font-size: 17.5px;
    color: #b6c4d8;
    max-width: 560px;
    margin-bottom: 36px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

    .hero-badges span {
        font-size: 12.5px;
        color: #cdd9ea;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.14);
        padding: 7px 13px;
        border-radius: 20px;
    }

.hero-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    padding: 8px;
    backdrop-filter: blur(4px);
}

    .hero-card .hc-h {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #8fb6e8;
        padding: 14px 16px 12px;
    }

    .hero-card .hc-item {
        display: flex;
        gap: 13px;
        align-items: flex-start;
        background: rgba(255,255,255,.045);
        border-radius: 9px;
        padding: 14px 16px;
        margin: 6px;
    }

        .hero-card .hc-item .ci {
            width: 26px;
            height: 26px;
            border-radius: 7px;
            flex: 0 0 auto;
            background: rgba(127,178,240,.16);
            color: #a9c8ee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        .hero-card .hc-item p {
            font-size: 13.5px;
            color: #d4ddea;
            line-height: 1.5
        }

/* ---------- Sections ---------- */
section {
    padding: 90px 0
}

.alt {
    background: var(--white)
}

/* ---------- Problem cards ---------- */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.pcard {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 26px;
    box-shadow: var(--sh-sm);
    transition: transform .14s,box-shadow .14s;
}

    .pcard:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-md)
    }

    .pcard .pc-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 14px;
    }

        .pcard .pc-tag::before {
            content: "";
            width: 18px;
            height: 2px;
            background: var(--blue);
            display: inline-block;
            flex: 0 0 auto;
        }

    .pcard h3 {
        margin-bottom: 7px
    }

    .pcard p {
        font-size: 14px;
        color: var(--text)
    }

/* ---------- Risks ---------- */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.risk-card {
    background: #fff;
    border: 1px solid #d6d8dd;
    border-top-width: 4px;
    border-radius: var(--r);
    padding: 30px 32px;
    box-shadow: var(--sh-sm);
}

    .risk-card.warn {
        border-top-color: #a8412f
    }

    .risk-card.safe {
        border-top-color: var(--blue)
    }

    .risk-card .rc-tag {
        display: inline-flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase;
        line-height: 1.5;
        margin-bottom: 16px;
    }

        .risk-card .rc-tag::before {
            content: "";
            width: 18px;
            height: 2px;
            margin-top: 7px;
            display: inline-block;
            flex: 0 0 auto;
        }

    .risk-card.warn .rc-tag {
        color: #a8412f
    }

        .risk-card.warn .rc-tag::before {
            background: #a8412f
        }

    .risk-card.safe .rc-tag {
        color: var(--blue)
    }

        .risk-card.safe .rc-tag::before {
            background: var(--blue)
        }

    .risk-card h3 {
        margin-bottom: 14px
    }

    .risk-card ul {
        list-style: none
    }

    .risk-card li {
        font-size: 14.5px;
        line-height: 1.55;
        color: var(--text);
        padding: 11px 0 11px 28px;
        position: relative;
        border-top: 1px solid rgba(0,0,0,.06);
    }

        .risk-card li:first-of-type {
            border-top: none
        }

        .risk-card li::before {
            position: absolute;
            left: 0;
            top: 13px;
            width: 18px;
            height: 18px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

    .risk-card.warn li::before {
        content: "✕";
        background: #a8412f;
        color: #fff
    }

    .risk-card.safe li::before {
        content: "✓";
        background: var(--blue);
        color: #fff
    }

/* ---------- How it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.scard {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 26px;
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
    transition: transform .14s,box-shadow .14s;
}

    .scard:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-md)
    }

    .scard::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(var(--blue),var(--blue-deep));
    }

    .scard .sc-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px
    }

    .scard .sc-n {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        background: var(--blue);
        width: 34px;
        height: 34px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scard .sc-stage {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--muted)
    }

    .scard h3 {
        margin-bottom: 7px
    }

    .scard p {
        font-size: 14px;
        color: var(--text)
    }

/* ---------- Benefits ---------- */
.ben-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.bcard {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 26px;
    box-shadow: var(--sh-sm);
    transition: transform .14s,box-shadow .14s;
}

    .bcard:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-md)
    }

    .bcard .b-ic {
        width: 46px;
        height: 46px;
        border-radius: 11px;
        margin-bottom: 16px;
        background: linear-gradient(150deg,var(--blue),var(--blue-deep));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--sh-blue);
    }

        .bcard .b-ic svg {
            width: 23px;
            height: 23px;
            display: block
        }

    .bcard h3 {
        margin-bottom: 7px
    }

    .bcard p {
        font-size: 14px;
        color: var(--text)
    }

/* ---------- Trust ---------- */
.trust {
    background: linear-gradient(160deg,#123b86,var(--blue-dark));
    border-radius: 16px;
    padding: 54px 48px;
    color: #cdd9ea;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}

    .trust::after {
        content: "";
        position: absolute;
        right: -120px;
        top: -120px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(86,140,224,.3),transparent 70%);
    }

    .trust .t-inner {
        position: relative
    }

    .trust .eyebrow {
        color: #8fb6e8
    }

        .trust .eyebrow::before {
            background: #8fb6e8
        }

    .trust h2 {
        color: #fff;
        margin-bottom: 36px;
        max-width: 620px
    }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.tcard {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    padding: 28px 26px;
}

    .tcard .tc-l {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase;
        color: #8fb6e8;
        margin-bottom: 14px;
    }

    .tcard .tc-big {
        font-size: 25px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 11px
    }

    .tcard p {
        font-size: 13.5px;
        color: #b6c4d8
    }

.trust-note {
    position: relative;
    margin-top: 26px;
    font-size: 13px;
    color: #9fb1cc;
    border-top: 1px solid rgba(255,255,255,.13);
    padding-top: 22px;
    max-width: 900px;
}

/* ---------- Test access ---------- */
.access {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-md);
    overflow: hidden;
}

.access-main {
    padding: 44px 44px
}

    .access-main h2 {
        margin-bottom: 13px
    }

    .access-main > p {
        font-size: 15px;
        color: var(--text);
        margin-bottom: 24px
    }

    .access-main .a-list {
        list-style: none
    }

        .access-main .a-list li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            font-size: 14.5px;
            color: var(--ink);
            padding: 12px 0;
            border-top: 1px solid var(--line);
        }

            .access-main .a-list li:first-child {
                border-top: none
            }

            .access-main .a-list li .ac {
                width: 24px;
                height: 24px;
                border-radius: 7px;
                flex: 0 0 auto;
                background: var(--blue-soft);
                color: var(--blue-deep);
                font-size: 12px;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
            }

.access-side {
    background: linear-gradient(165deg,#123b86,var(--blue-dark));
    color: #cdd9ea;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .access-side .eyebrow {
        color: #8fb6e8
    }

        .access-side .eyebrow::before {
            background: #8fb6e8
        }

    .access-side h3 {
        color: #fff;
        font-size: 21px;
        margin-bottom: 11px
    }

    .access-side p {
        font-size: 14px;
        color: #b6c4d8;
        margin-bottom: 24px
    }

/* ---------- Form ---------- */
.form-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 52px;
    align-items: start
}

.form-aside h2 {
    margin-bottom: 15px
}

.form-aside > p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 24px
}

.fa-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: var(--sh-sm);
    display: flex;
    gap: 14px;
}

    .fa-card .fa-ic {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        flex: 0 0 auto;
        background: var(--blue-soft);
        color: var(--blue-deep);
        font-weight: 700;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fa-card b {
        display: block;
        font-size: 14px;
        color: var(--ink);
        margin-bottom: 2px
    }

    .fa-card span {
        font-size: 13px;
        color: var(--muted)
    }

form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 36px 38px;
    box-shadow: var(--sh-md);
}

.field {
    margin-bottom: 22px
}

    .field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 8px
    }

        .field label .req {
            color: var(--blue);
            margin-left: 3px
        }

    .field input {
        width: 100%;
        font-family: var(--sans);
        font-size: 15px;
        color: var(--ink);
        padding: 13px 15px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fbfcfe;
        transition: .15s;
    }

        .field input::placeholder {
            color: #a9b3c1
        }

        .field input:focus {
            outline: none;
            border-color: var(--blue);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(26,85,184,.12)
        }

        .field input.invalid {
            border-color: #b6452f;
            background: #fdf4f2
        }

    .field .hint {
        font-size: 12.5px;
        color: var(--muted);
        margin-top: 6px
    }

    .field .err {
        font-size: 12.5px;
        color: #b6452f;
        margin-top: 6px;
        display: none
    }

    .field.has-error .err {
        display: block
    }

.consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 4px 0 24px;
    font-size: 12.5px;
    color: var(--muted);
}

    .consent input {
        margin-top: 3px;
        flex: 0 0 auto
    }

form .btn-primary {
    width: 100%;
    text-align: center
}

.form-ok {
    display: none;
    background: var(--ok-bg);
    border: 1px solid #cbe3d6;
    border-radius: var(--r);
    padding: 24px 26px;
}

    .form-ok.show {
        display: block
    }

    .form-ok .fo-l {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--ok);
        background: #d5eade;
        padding: 5px 11px;
        border-radius: 14px;
        margin-bottom: 11px;
    }

    .form-ok b {
        font-size: 18px;
        color: var(--ink);
        display: block;
        margin-bottom: 6px
    }

    .form-ok p {
        font-size: 14px;
        color: var(--text)
    }

/* ---------- Footer ---------- */
footer {
    background: var(--blue-dark);
    color: #9fb1cc;
    padding: 52px 0 0
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 38px
}

    .foot-grid .fc {
        max-width: 440px
    }

        .foot-grid .fc b {
            font-size: 14px;
            color: #eef2f8
        }

        .foot-grid .fc p {
            font-size: 13px;
            margin-top: 9px;
            line-height: 1.74
        }

.foot-meta {
    font-size: 13px;
    line-height: 2
}

    .foot-meta a {
        color: #9cc0ec;
        text-decoration: none
    }

.foot-legal {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0 34px;
    font-size: 12px;
    color: #7e90ad;
    line-height: 1.7;
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease,transform .55s ease
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

    .reveal.d1 {
        transition-delay: .06s
    }

    .reveal.d2 {
        transition-delay: .12s
    }

/* ---------- Responsive ---------- */
@media(max-width:960px) {
    .hero-grid, .form-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .grid3, .steps, .ben-grid, .trust-grid, .risk-grid {
        grid-template-columns: 1fr
    }

    .access {
        grid-template-columns: 1fr
    }
}

@media(max-width:680px) {
    .wrap {
        padding: 0 20px
    }

    h1 {
        font-size: 32px
    }

    h2 {
        font-size: 25px
    }

    section {
        padding: 60px 0
    }

    .hero .wrap {
        padding: 58px 20px 62px
    }

    .nav-links {
        display: none
    }

    .brand .name, .brand-div {
        display: none
    }

    .trust {
        padding: 36px 24px;
        border-radius: 12px
    }

    .access-main, .access-side, form {
        padding: 28px 22px
    }
}
