:root {
    --c1: #2a4365;
    --c2: #0ea5a0;
    --c3: #f4f0e6;
    --c4: #0b1220;
    --c5: #ffe9a7
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font: 500 16px/1.6 "Urbanist", sans-serif;
    color: #1d2433;
    background: #ffffff
}

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

a {
    color: var(--c2);
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .8
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px
}

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

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid transparent
}

.btn-primary {
    background: var(--c2);
    color: #fff
}

.btn-outline {
    background: transparent;
    border-color: var(--c2);
    color: var(--c2)
}

.header {
    background: linear-gradient(135deg, var(--c1), #1f2c4b);
    color: #fff
}

.header .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .5px
}

nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

nav a {
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px
}

nav a.active, nav a:focus {
    background: rgba(255, 255, 255, .12)
}

.hero {
    background: radial-gradient(1200px 600px at 85% -10%, var(--c2) 0%, transparent 60%), linear-gradient(180deg, #0e1629 0%, #0b1220 100%);
    color: #fff
}

.hero .wrap {
    display: grid;
    gap: 28px;
    grid-template-columns:1.1fr .9fr;
    align-items: center;
    padding: 64px 20px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 8px
}

.hero p {
    opacity: .9;
    margin: 0 0 22px
}

.card {
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 16px;
    padding: 22px
}

.card.dark {
    background: #0f172a;
    color: #dbe4ff;
    border-color: #1f2a44
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8fff6;
    color: #065f46;
    border: 1px solid #99f6e4;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700
}

.feature {
    display: grid;
    gap: 16px;
    grid-template-columns:56px 1fr;
    align-items: flex-start
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--c5);
    color: #6b4f00;
    font-size: 24px
}

.section {
    padding: 64px 0
}

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

.section.dark {
    background: var(--c4);
    color: #eaf2ff
}

.mini {
    font-size: 14px;
    opacity: .85
}

.footer {
    background: #0c101a;
    color: #b8c3d9
}

.footer .top {
    padding: 36px 20px;
    border-bottom: 1px solid #1d2a44
}

.footer .bottom {
    padding: 18px 20px;
    color: #94a3b8;
    font-size: 14px
}

.kicker {
    font-weight: 800;
    letter-spacing: .08em;
    color: #60ffe1;
    text-transform: uppercase
}

.list {
    display: grid;
    gap: 12px
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

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

label {
    font-weight: 700;
    margin-bottom: 6px;
    display: block
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns:1fr 1fr
}

form .agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px
}

hr.sep {
    border: none;
    height: 1px;
    background: #e6e9ee;
    margin: 24px 0
}

.privacy h2, .cookies h2, .tips h2 {
    margin: 0 0 12px
}

.privacy h3, .cookies h3, .tips h3 {
    margin: 20px 0 8px
}

.note {
    background: linear-gradient(135deg, rgba(14, 165, 160, .12), rgba(42, 67, 101, .12));
    border: 1px dashed rgba(14, 165, 160, .45);
    padding: 16px 18px;
    border-radius: 14px
}

.label-2025 {
    background: #111827;
    color: #eee;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 800
}

.floater {
    position: relative;
    isolation: isolate
}

.floater:after {
    content: "";
    position: absolute;
    inset: -30px -14px auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(closest-side, rgba(14, 165, 160, .25), transparent 70%);
    filter: blur(8px);
    z-index: -1;
    border-radius: 50%
}

@media (max-width: 960px) {
    .hero .wrap {
        grid-template-columns:1fr
    }

    .form-row {
        grid-template-columns:1fr
    }
    .grid{
        grid-template-columns: minmax(0,1fr) !important;
    }

    .header nav{
        display: none;
    }

    .hero{
        overflow: hidden;
    }
}
