:root{
    --bg: #07111f;
    --bg-soft: #0d1a2c;
    --panel: rgba(13, 25, 43, 0.82);
    --panel-solid: #0f1e33;
    --panel-2: #12233b;
    --text: #e9f1ff;
    --muted: #9fb1cb;
    --line: rgba(255,255,255,0.08);
    --primary: #40c4ff;
    --primary-strong: #12a8ee;
    --accent: #67e8a5;
    --danger: #ff7a7a;
    --success: #64e8a8;
    --shadow: 0 24px 70px rgba(0,0,0,0.35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1220px;
}

*{
    box-sizing: border-box;
}


html{
    scroll-behavior:smooth;
    scroll-padding-top:110px;
}

body{
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(64,196,255,0.14), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(103,232,165,0.10), transparent 24%),
        linear-gradient(180deg, #06101d 0%, #081423 100%);
    color: var(--text);
    min-height: 100vh;
}

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

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

.container{
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-shell{
    position: relative;
    overflow: hidden;
}

.topbar{
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(5, 12, 24, 0.68);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner{
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #06101d;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 10px 30px rgba(64,196,255,0.26);
}

.brand-text{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong{
    font-size: 18px;
    line-height: 1;
}

.brand-text small{
    color: var(--muted);
    font-size: 12px;
}

.topnav{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topnav a{
    color: var(--muted);
    font-size: 14px;
    transition: 0.2s ease;
}

.topnav a:hover{
    color: #fff;
}




        html{scroll-behavior:smooth}
body.modal-open,
body.gdpr-open,
body.legal-open{
    overflow:hidden;
}

body.menu-open{
    overflow:hidden;
}

@supports (height: 100dvh){
    body.menu-open{
        height:100dvh;
    }
}



        .form-panel{
            position: relative;
            background: linear-gradient(180deg, rgba(16,31,52,0.97) 0%, rgba(9,20,35,0.99) 100%);
            border: 1px solid rgba(90,195,255,0.22);
            box-shadow:
                0 26px 70px rgba(0,0,0,0.34),
                0 0 0 1px rgba(255,255,255,0.04) inset,
                0 0 36px rgba(64,196,255,0.10);
            border-radius: 28px;
            padding: 28px;
        }

        .form-panel::before{
            content:"";
            position:absolute;
            inset:0;
            pointer-events:none;
            border-radius:inherit;
            background:radial-gradient(circle at top right, rgba(64,196,255,0.14), transparent 34%);
        }

        .main-form,
        .alert{
            position:relative;
            z-index:1;
        }

        .alert.alert-error{
            margin-bottom:20px;
            border-radius:18px;
            padding:18px 18px;
            background: linear-gradient(180deg, rgba(122, 10, 10, 0.96) 0%, rgba(88, 6, 6, 0.98) 100%);
            border:1px solid rgba(255, 120, 120, 0.45);
            box-shadow:
                0 14px 34px rgba(0,0,0,0.22),
                0 0 0 1px rgba(255,255,255,0.04) inset;
            scroll-margin-top:110px;
        }

        .alert.alert-error strong,
        .alert.alert-error li{
            color:#fff1f1;
        }

        .alert.alert-error ul{
            margin:10px 0 0;
            padding-left:18px;
        }

        .success-modal-backdrop,
        .gdpr-modal-backdrop,
        .legal-modal-backdrop{
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(3, 10, 18, 0.74);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .success-modal,
        .gdpr-modal,
        .legal-modal{
            width: 100%;
            background: linear-gradient(180deg, rgba(12,23,40,0.98) 0%, rgba(9,18,31,0.99) 100%);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 30px 80px rgba(0,0,0,0.45);
            border-radius: 28px;
            color: #e9f1ff;
            position: relative;
        }

        .success-modal{
            max-width: 620px;
            padding: 34px 28px;
            text-align: center;
        }

        .success-modal-icon{
            width: 82px;
            height: 82px;
            margin: 0 auto 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            font-weight: 800;
            color: #07111f;
            background: linear-gradient(135deg, #40c4ff 0%, #67e8a5 100%);
            box-shadow: 0 20px 40px rgba(64,196,255,0.22);
        }

        .success-modal h3,
        .gdpr-modal h3,
        .legal-modal h3{
            margin:0 0 12px;
            line-height:1.14;
        }

        .success-modal h3{font-size:30px}

        .success-modal p,
        .gdpr-modal p,
        .legal-modal p{
            margin:0;
            color:#c8d5ea;
            line-height:1.75;
        }

        .success-modal-ref{
            margin-top:18px;
            padding:12px 16px;
            border-radius:16px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.08);
            font-size:14px;
            color:#dce8f9;
        }

        .success-modal-actions{
            margin-top:24px;
            display:flex;
            justify-content:center;
        }

        .success-modal-btn,
        .gdpr-btn-primary,
        .gdpr-btn-secondary,
        .legal-btn{
            min-height:52px;
            border:0;
            border-radius:999px;
            padding:0 22px;
            cursor:pointer;
            font:inherit;
            font-weight:700;
        }

        .success-modal-btn,
        .gdpr-btn-primary,
        .legal-btn{
            color:#06101d;
            background:linear-gradient(135deg, #40c4ff 0%, #67e8a5 100%);
            box-shadow:0 18px 36px rgba(64,196,255,0.18);
        }

        .gdpr-btn-secondary{
            color:#e9f1ff;
            background:rgba(255,255,255,0.08);
            border:1px solid rgba(255,255,255,0.12);
        }

        .success-modal-close,
        .legal-modal-close{
            position:absolute;
            top:14px;
            right:14px;
            width:42px;
            height:42px;
            border:0;
            border-radius:50%;
            cursor:pointer;
            font-size:22px;
            line-height:1;
            color:#d9e7fb;
            background:rgba(255,255,255,0.07);
        }

        .gdpr-modal{
            max-width:760px;
            padding:28px 24px;
        }

        .gdpr-badge{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:8px 14px;
            border-radius:999px;
            background:rgba(64,196,255,0.12);
            border:1px solid rgba(64,196,255,0.18);
            color:#d7efff;
            font-size:13px;
            font-weight:700;
            margin-bottom:14px;
        }

        .gdpr-list{
            margin:18px 0 0;
            padding-left:18px;
            color:#d6e4f7;
        }

        .gdpr-list li{
            margin-bottom:10px;
            line-height:1.6;
        }

        .gdpr-check{
            margin-top:18px;
            display:flex;
            gap:12px;
            align-items:flex-start;
            padding:16px;
            border-radius:18px;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.08);
        }

        .gdpr-check input{
            margin-top:4px;
            flex:0 0 auto;
        }

        .gdpr-check span{
            color:#dce7f8;
            line-height:1.6;
            font-size:14px;
        }

        .gdpr-actions{
            margin-top:20px;
            display:flex;
            flex-wrap:wrap;
            gap:12px;
            justify-content:flex-end;
        }

        .gdpr-note{
            margin-top:12px !important;
            font-size:13px;
            color:#9fb3cc !important;
        }

        .gdpr-error{
            margin-top:16px;
            padding:14px 16px;
            border-radius:16px;
            background:rgba(145, 12, 12, 0.96);
            border:1px solid rgba(255, 118, 118, 0.34);
            color:#fff1f1;
            display:none;
        }

        .legal-modal{
            max-width:900px;
            padding:28px 24px 24px;
        }

        .legal-modal-body{
            max-height:68vh;
            overflow:auto;
            padding-right:8px;
            margin-top:8px;
        }

        .legal-modal-body h4{
            margin:22px 0 10px;
            font-size:18px;
            color:#f2f7ff;
        }

        .legal-modal-body p,
        .legal-modal-body li{
            color:#cdd9ea;
            line-height:1.72;
            font-size:15px;
        }

        .legal-modal-body ul{
            margin:0 0 10px;
            padding-left:18px;
        }

        .legal-modal-actions{
            margin-top:18px;
            display:flex;
            justify-content:flex-end;
        }

        .footer-link-btn{
            appearance:none;
            border:0;
            background:none;
            color:inherit;
            cursor:pointer;
            font:inherit;
            padding:0;
        }

.topbar{
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(16px);
}

.topbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:72px;
    flex-wrap: nowrap;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-right:auto;
    text-decoration:none;
    flex:1 1 auto;
    min-width:0;
    overflow:hidden;
}

.brand-text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.brand-text strong,
.brand-text small{
    display:block;
}

.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    min-width:48px;
    border:1px solid rgba(255,255,255,0.14);
    background:rgba(255,255,255,0.06);
    border-radius:14px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    padding:0;
    flex-direction:column;
    gap:5px;
    margin-left:auto;
    order:3;
}

.mobile-menu-btn span{
    display:block;
    width:20px;
    height:2px;
    border-radius:999px;
    background:#eef6ff;
}

.mobile-menu-overlay{
    display:none;
    position:fixed;
    inset:0;
    z-index:1000;
    background:rgba(2, 8, 16, 0.68);
}

@media (max-width: 920px){
    .topbar-inner{
        gap:12px;
    }

    .brand{
        order:1;
        flex:1 1 auto;
        margin-right:auto;
    }

    .mobile-menu-btn{
        display:flex;
        order:2;
    }

    .mobile-menu-overlay{
        display:block;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:opacity .25s ease, visibility .25s ease;
    }

.topnav{
    position:fixed;
    top:0;
    right:-100%;
    width:min(320px, 86vw);
    height:100vh;
    z-index:3000;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:88px 22px 22px;
    background:linear-gradient(180deg, rgba(9,18,31,0.99) 0%, rgba(7,14,24,0.995) 100%);
    box-shadow:-20px 0 50px rgba(0,0,0,0.45);
    transition:right .25s ease;
}

    body.menu-open .topnav{
        right:0;
        visibility:visible;
        pointer-events:auto;
    }

    body.menu-open .mobile-menu-overlay{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .topnav a{
        width:100%;
        display:block;
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,0.08);
        color:#f3f8ff !important;
        text-decoration:none;
        font-weight:600;
        opacity:1 !important;
        pointer-events:auto;
        -webkit-tap-highlight-color: transparent;
    }

    .topnav a:visited,
    .topnav a:hover,
    .topnav a:active{
        color:#ffffff !important;
    }

    .topnav .nav-btn{
        margin-top:16px;
        width:100%;
        text-align:center;
        color:#06101d !important;
    }

    .brand-text small{
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:calc(100vw - 150px);
    }
}
        @media (max-width: 640px){
            .form-panel{padding:20px;border-radius:22px}
            .success-modal{padding:28px 20px;border-radius:22px}
            .success-modal h3{font-size:24px}
            .success-modal p{font-size:15px}
            .success-modal-btn{width:100%}
            .gdpr-modal{padding:22px 18px}
            .legal-modal{padding:22px 18px 18px}
            .gdpr-actions,
            .legal-modal-actions{justify-content:stretch}
            .gdpr-btn-primary,
            .gdpr-btn-secondary,
            .legal-btn{width:100%}
        }



.nav-btn{
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.hero{
    position: relative;
    padding: 76px 0 44px;
}

.hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.panel-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(64,196,255,0.10);
    border: 1px solid rgba(64,196,255,0.16);
    color: #b6e8ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-copy h1{
    margin: 18px 0 18px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.hero-lead{
    margin: 0;
    max-width: 730px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    cursor: pointer;
}

.btn:hover{
    transform: translateY(-1px);
}

.btn-primary{
    color: #06101d;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 18px 36px rgba(64,196,255,0.22);
}

.btn-secondary{
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

.btn-large{
    min-height: 58px;
    padding: 0 26px;
    font-size: 15px;
}

.hero-trust{
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
}

.trust-item{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dbe7f9;
    font-size: 14px;
}

.trust-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(103,232,165,0.12);
}

.hero-panel{
    position: relative;
}

.glass-card{
    position: relative;
    border-radius: var(--radius-xl);
    padding: 26px;
    background: linear-gradient(180deg, rgba(15, 31, 52, 0.94) 0%, rgba(11, 23, 40, 0.94) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.glass-card h3{
    margin: 16px 0 18px;
    font-size: 24px;
    line-height: 1.2;
}

.flow-list{
    display: grid;
    gap: 16px;
}

.flow-item{
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
}

.flow-step{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(64,196,255,0.18), rgba(103,232,165,0.18));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.flow-item strong{
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.flow-item p{
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.hero-bg{
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.42;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-1{
    width: 360px;
    height: 360px;
    background: rgba(64,196,255,0.18);
    top: 60px;
    left: -120px;
}

.hero-bg-2{
    width: 320px;
    height: 320px;
    background: rgba(103,232,165,0.16);
    right: -80px;
    top: 120px;
}

.section{
    padding: 44px 0 80px;
    position: relative;
}

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

.section-head.align-left{
    margin: 0 0 22px;
    text-align: left;
}

.section-head h2{
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-head p{
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

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

.type-card{
    background: linear-gradient(180deg, rgba(16,31,52,0.86) 0%, rgba(10,20,34,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.type-card-accent{
    border-color: rgba(64,196,255,0.20);
    box-shadow: 0 22px 60px rgba(64,196,255,0.10);
}

.type-icon{
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(64,196,255,0.10);
    color: #d8f5ff;
    font-size: 24px;
    margin-bottom: 16px;
}

.type-card h3{
    margin: 0 0 10px;
    font-size: 24px;
}

.type-card p{
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.form-wrap{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.info-card{
    margin-top: 20px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15,31,52,0.86) 0%, rgba(11,21,37,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.07);
}

.info-card h3{
    margin: 0 0 12px;
    font-size: 20px;
}

.info-card ul{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.85;
}

.form-panel{
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(180deg, rgb(35 23 10 / 96%) 0%, rgba(9, 18, 31, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
}

.alert{
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.alert strong{
    display: block;
    margin-bottom: 6px;
}

.alert p,
.alert ul{
    margin: 0;
    color: #d9e7ff;
}

.alert ul{
    padding-left: 18px;
}

.alert-success{
    background: rgba(100,232,168,0.10);
    border-color: rgba(100,232,168,0.20);
}

.alert-error{
    background: rgba(255,122,122,0.10);
    border-color: rgba(255,122,122,0.20);
}

.main-form{
    display: grid;
    gap: 18px;
}

.field-group,
.field{
    display: block;
}

.label{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #ddebff;
}

.field-grid{
    display: grid;
    gap: 16px;
}

.field-grid.two{
    grid-template-columns: repeat(2, 1fr);
}

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

.input,
.select,
.textarea,
.file-input{
    width: 100%;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    color: #e9f1ff;
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.input::placeholder,
.textarea::placeholder{
    color: #7f93b1;
}

.input:focus,
.select:focus,
.textarea:focus,
.file-input:focus{
    border-color: rgba(64,196,255,0.52);
    box-shadow: 0 0 0 4px rgba(64,196,255,0.12);
    background: rgba(255,255,255,0.05);
}

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

.select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #e9f1ff;
    background-image:
        linear-gradient(45deg, transparent 50%, #9fc6da 50%),
        linear-gradient(135deg, #9fc6da 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.select option{
        background:  rgba(22, 15, 6, 0.96);
    color: #f3f8ff;
}

.select option[value=""]{
    color: #9fb1cb;
}

.file-input{
    padding: 13px 14px;
}

.field-help{
    display: block;
    margin-top: 8px;
    color: #89a1c0;
    font-size: 12px;
}

.type-switch{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.switch-option{
    position: relative;
    display: block;
}

.switch-option input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-option span{
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    color: #d8e7fa;
    font-weight: 700;
    transition: 0.18s ease;
    cursor: pointer;
}

.switch-option input:checked + span{
    background: linear-gradient(135deg, rgba(64,196,255,0.18), rgba(103,232,165,0.18));
    border-color: rgba(64,196,255,0.34);
    box-shadow: 0 0 0 4px rgba(64,196,255,0.10);
}

.stack-options{
    display: grid;
    gap: 10px;
}

.stack-option{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dbe7f6;
}

.stack-option input{
    margin-top: 3px;
    accent-color: var(--primary);
}

.check-row{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

.check-row input{
    margin-top: 4px;
    accent-color: var(--primary);
}

.form-actions{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}

.form-note{
    margin: 0;
    color: #9cb0c9;
    font-size: 13px;
}

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

.step-card{
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15,31,52,0.86) 0%, rgba(11,21,37,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.07);
}

.step-number{
    display: inline-block;
    margin-bottom: 16px;
    color: #8fcbec;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.step-card h3{
    margin: 0 0 10px;
    font-size: 20px;
}

.step-card p{
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.safe-grid{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.safe-copy h2{
    margin: 14px 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.safe-copy p{
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.safe-cards{
    display: grid;
    gap: 18px;
}

.safe-card{
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15,31,52,0.86) 0%, rgba(11,21,37,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.07);
}

.safe-card h3{
    margin: 0 0 8px;
    font-size: 20px;
}

.safe-card p{
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.site-footer{
    padding: 28px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-inner p{
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-links{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a{
    color: var(--muted);
    font-size: 14px;
}

.footer-links a:hover{
    color: #fff;
}

@media (max-width: 1100px){
    .hero-grid,
    .form-wrap,
    .safe-grid{
        grid-template-columns: 1fr;
    }

    .steps-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px){
    .topbar-inner{
        min-height: auto;
        padding: 16px 0;
        flex-direction: row;
        align-items: center;
    }

    .hero{
        padding-top: 48px;
    }

    .hero-copy h1{
        font-size: 38px;
    }

    .field-grid.two,
    .field-grid.three,
    .type-switch,
    .steps-grid{
        grid-template-columns: 1fr;
    }

    .form-panel,
    .glass-card,
    .type-card,
    .step-card,
    .safe-card,
    .info-card{
        padding: 22px;
    }
}

@media (max-width: 560px){
    .container{
        width: min(100% - 20px, var(--container));
    }

    .hero-copy h1{
        font-size: 32px;
    }

    .hero-lead{
        font-size: 16px;
    }

    .section{
        padding: 34px 0 58px;
    }

    .btn,
    .btn-large{
        width: 100%;
    }

    .hero-actions{
        flex-direction: column;
    }

    .hero-trust{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner{
        flex-direction: column;
        align-items: flex-start;
    }
}

#cum-functioneaza,
#trimite,
#siguranta{
    scroll-margin-top: 110px;
}

html,
body{
    overscroll-behavior-y: none;
}

.topbar{
    will-change: transform;
}

@media (max-width: 920px){
    .topnav{
        overscroll-behavior: contain;
    }
}