﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --bg: #EAF1FF;
    --bgHint: #DCE7FF;
    --card: #A6C0FF;
    --ink: #0C2458;
    --primary: #0B3EA8;
    --primary2: #061B4A;
    --surfaceInk: #061B4A;
    --shadow: 0 18px 34px rgba(0, 0, 0, .16);
    --ring: rgba(11, 62, 168, .22);
    --radius: 18px;
    --bubbleBorder: rgba(68, 122, 255, .35);
    --bubbleSolid: rgba(61, 126, 255, .20);
    --heroGrad: radial-gradient(900px 550px at 75% 40%, #1A5BFF 0%, #0B3EA8 45%, #061B4A 100%);
    --cardGrad: linear-gradient(180deg, rgba(166,192,255,.96) 0%, rgba(141,176,255,.96) 100%);
    --illusA: #3DDC97;
    --illusB: #2FD3FF;
    --illusAccentA: #FFCC66;
    --illusAccentB: #FF9F43;
    --link: #FFD54A;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 900px at 70% 10%, var(--bgHint) 0%, var(--bg) 55%, var(--bgHint) 100%);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
}

.bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .70;
    z-index: 0;
}

.bubble {
    position: absolute;
    border-radius: 999px;
    border: 3px solid var(--bubbleBorder);
    background: rgba(255,255,255,.14);
}

    .bubble.solid {
        border: none;
        background: var(--bubbleSolid);
    }

.content {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: stretch;
    z-index: 1;
}

.hero {
    position: relative;
    border-radius: 28px;
    background: var(--heroGrad);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 840px;
        height: 840px;
        right: -360px;
        top: -120px;
        background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.00) 0 30%, rgba(255,255,255,.16) 31% 38%, rgba(255,255,255,.00) 39% 50%, rgba(255,255,255,.12) 51% 59%, rgba(255,255,255,.00) 60% 100%);
        border-radius: 50%;
        transform: rotate(6deg);
        opacity: .70;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0 18%, transparent 20%), radial-gradient(circle at 12% 70%, rgba(255,255,255,.12) 0 14%, transparent 16%), radial-gradient(circle at 55% 15%, rgba(255,255,255,.10) 0 10%, transparent 12%), radial-gradient(circle at 82% 78%, rgba(255,255,255,.10) 0 12%, transparent 14%);
        opacity: .48;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    color: #fff;
    text-align: left;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.22);
}

.brand h1 {
    margin: 0;
    font-size: 22px;
    letter-spacing: .2px;
    line-height: 1.1;
}

.brand p {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: .88;
}

.headline {
    margin: 8px 0 10px;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .2px;
}

.sub {
    margin: 0 0 18px;
    font-size: 14px;
    opacity: .90;
    line-height: 1.55;
    max-width: 60ch;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.kpi {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 16px;
    padding: 12px;
    backdrop-filter: blur(6px);
}

    .kpi .num {
        font-weight: 900;
        font-size: 18px;
        margin-bottom: 4px;
    }

    .kpi .lbl {
        font-size: 12px;
        opacity: .88;
        display: flex;
        gap: 8px;
        align-items: center;
        white-space: nowrap;
    }

.card {
    border-radius: 28px;
    background: var(--cardGrad);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .card::before {
        content: "";
        position: absolute;
        inset: -80px -120px auto auto;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.42), rgba(255,255,255,0) 65%);
        transform: rotate(18deg);
        opacity: .55;
    }

    .card h2 {
        margin: 0 0 10px;
        font-size: 26px;
        font-weight: 600;
        color: var(--surfaceInk);
    }

.hint {
    margin: 0 0 18px;
    color: color-mix(in srgb, var(--surfaceInk) 75%, transparent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

form {
    position: relative;
    z-index: 1;
}

.field {
    margin: 10px 0;
}

.label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    color: color-mix(in srgb, var(--surfaceInk) 85%, transparent);
    margin-bottom: 6px;
}

.input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 10px;
    padding: 10px 12px;
    transition: box-shadow .2s, transform .08s, background .2s;
}

    .input:focus-within {
        box-shadow: 0 0 0 4px var(--ring);
        background: rgba(255,255,255,.98);
        transform: translateY(-1px);
    }

    .input input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
        font-size: 14px;
        color: var(--ink);
    }

        .input input::placeholder {
            color: color-mix(in srgb, var(--ink) 45%, transparent);
        }

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 14px;
}

.chk {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: color-mix(in srgb, var(--surfaceInk) 80%, transparent);
    user-select: none;
    font-weight: 800;
}

    .chk input {
        width: 16px;
        height: 16px;
        accent-color: var(--primary);
    }

.link {
    font-size: 14px;
    color: color-mix(in srgb, var(--surfaceInk) 92%, transparent);
    text-decoration: none;
    font-weight: 500;
}

    .link:hover {
        text-decoration: underline;
    }

.btn {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    letter-spacing: .3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
    color: #fff;
    box-shadow: 0 12px 18px rgba(0,0,0,.16);
    transition: transform .08s, filter .2s;
}

    .btn:hover {
        filter: brightness(1.05);
    }

    .btn:active {
        transform: translateY(1px);
    }

.sep {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 10px;
    color: color-mix(in srgb, var(--surfaceInk) 60%, transparent);
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
}

    .sep::before, .sep::after {
        content: "";
        height: 1px;
        flex: 1;
        background: color-mix(in srgb, var(--surfaceInk) 18%, transparent);
    }

.social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.sbtn {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.92);
    background: rgba(255,255,255,.90);
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 900;
    color: var(--surfaceInk);
    transition: transform .08s, background .2s;
}

    .sbtn:hover {
        background: rgba(255,255,255,.98);
    }

    .sbtn:active {
        transform: translateY(1px);
    }

.foot {
    margin-top: 8px;
    text-align: center;
    font-size: 16px;
    color: color-mix(in srgb, var(--surfaceInk) 75%, transparent);
    font-weight: 600;
}

    .foot a {
        color: var(--link);
        font-weight: 600;
        text-decoration: none;
    }

        .foot a:hover {
            text-decoration: underline;
        }

.ico {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    opacity: .95;
}

.ico-white {
    fill: #ffffff;
}

.ico-ink {
    fill: var(--surfaceInk);
}

.text-danger {
    color: #cd4237 !important;
}

    @media (max-width: 980px) {
        body {
            align-items: flex-start;
        }

        .content {
            grid-template-columns: 1fr;
        }

        .hero {
            min-height: 420px;
        }

        .card {
            min-height: auto;
        }

        .kpis {
            grid-template-columns: 1fr;
        }

        .kpi .lbl {
            white-space: normal;
        }
    }
