:root{
    --bg1:#0b1220;
    --bg2:#0e1a2f;
    --card:#0f1b31cc;
    --stroke:#2a3a5a;
    --text:#eaf0ff;
    --muted:#b8c4e6;
    --accent:#4da3ff;
    --accent2:#7c5cff;
    --good:#3ddc97;
    --warn:#ffcc66;
    --danger:#ff6b6b;
    --shadow: 0 20px 60px rgba(0,0,0,.45);
    --radius: 18px;
}

*{ box-sizing:border-box; }

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color:var(--text);
    min-height:100vh;
    background:
            radial-gradient(900px 500px at 15% 10%, rgba(77,163,255,.22), transparent 60%),
            radial-gradient(800px 520px at 85% 20%, rgba(124,92,255,.18), transparent 55%),
            radial-gradient(700px 520px at 50% 90%, rgba(61,220,151,.12), transparent 60%),
            linear-gradient(180deg, var(--bg1), var(--bg2));
    padding:28px 14px;
}

a{ color:inherit; }

.wrap{
    width:min(1100px, 100%);
    margin:0 auto;
    display:grid;
    gap:16px;
    grid-template-columns: 1.1fr .9fr;
}

@media (max-width: 980px){
    .wrap{ grid-template-columns: 1fr; }
}

.card{
    background: var(--card);
    border:1px solid rgba(42,58,90,.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    padding: 22px;
}

.brand{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:14px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.mark{
    width:44px;
    height:44px;
    border-radius:14px;
    background: linear-gradient(135deg, rgba(77,163,255,.95), rgba(124,92,255,.9));
    box-shadow: 0 10px 28px rgba(77,163,255,.25);
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.18);
}

.mark svg{ opacity:.95; }

.domain{
    font-size: 34px;
    letter-spacing:.3px;
    margin:0;
    line-height:1.05;
}

.sub{
    margin:6px 0 0;
    color:var(--muted);
    font-size: 14px;
}

.pillrow{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
}

.pill{
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(234,240,255,.92);
    user-select:none;
}

.hero{
    display:grid;
    gap:14px;
    margin-top:14px;
}

.big{
    font-size: 18px;
    color: rgba(234,240,255,.92);
    line-height:1.55;
    margin:0;
}

.grid2{
    display:grid;
    gap:12px;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px){
    .grid2{ grid-template-columns: 1fr; }
}

.mini{
    border:1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255,255,255,.05);
}

.mini h3{
    margin:0 0 6px;
    font-size: 13px;
    color: rgba(234,240,255,.9);
    display:flex;
    align-items:center;
    gap:8px;
    font-weight: 650;
}

.mini p{
    margin:0;
    color: var(--muted);
    font-size: 12.5px;
    line-height:1.45;
}

.icon{
    width:18px;
    height:18px;
    border-radius:6px;
    display:grid;
    place-items:center;
    background: rgba(77,163,255,.16);
    border:1px solid rgba(77,163,255,.26);
    color: rgba(234,240,255,.95);
    flex: 0 0 auto;
}

.pricebox{
    margin-top:14px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    justify-content:space-between;
    padding: 14px;
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, rgba(77,163,255,.12), rgba(124,92,255,.10));
}

.price{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.price .label{
    font-size:12px;
    color: var(--muted);
}

.price .val{
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .2px;
}

.btnrow{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.btn{
    appearance:none;
    border:0;
    cursor:pointer;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: white;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    box-shadow: 0 12px 26px rgba(77,163,255,.18);
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition: transform .16s ease, opacity .16s ease;
}

.btn.secondary{
    background: rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.16);
    box-shadow:none;
    color: rgba(234,240,255,.95);
}

.btn:hover{ transform: translateY(-1px); }
.btn:disabled{ opacity:.7; cursor:not-allowed; transform:none; }

.fine{
    margin-top: 12px;
    color: rgba(184,196,230,.85);
    font-size: 12px;
    line-height:1.5;
}

.formtitle{
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing:.2px;
}

form{
    display:grid;
    gap:10px;
}

label{
    font-size: 12px;
    color: var(--muted);
    display:block;
    margin-bottom:6px;
}

input, textarea{
    width:100%;
    padding: 12px 12px;
    border-radius: 12px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(7,12,22,.45);
    color: rgba(234,240,255,.95);
    outline:none;
}

textarea{
    min-height: 92px;
    resize: vertical;
}

input:focus, textarea:focus{
    border-color: rgba(77,163,255,.55);
    box-shadow: 0 0 0 4px rgba(77,163,255,.14);
}

.row{
    display:grid;
    gap:10px;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px){
    .row{ grid-template-columns:1fr; }
}

.helper{
    font-size: 12px;
    color: rgba(184,196,230,.9);
    line-height:1.45;
    margin-top: 6px;
    margin-bottom: 14px;
}

.note{
    margin-top: 12px;
    border-radius: 14px;
    padding: 12px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    display:grid;
    gap:6px;
    color: rgba(234,240,255,.9);
    font-size: 12.5px;
    line-height: 1.45;
}

.note b{
    color: rgba(234,240,255,.98);
}

.tiny{
    margin-top: 10px;
    font-size: 11.5px;
    color: rgba(184,196,230,.75);
    line-height:1.45;
}

.hp{
    position:absolute;
    left:-9999px;
    top:-9999px;
    height:1px;
    width:1px;
    overflow:hidden;
}

.form-result{
    margin-top:12px;
    font-size:14px;
    line-height:1.5;
    min-height: 22px;
}

.result-success{
    color: var(--good);
}

.result-error{
    color: var(--danger);
}

.seo-block{
    grid-column:1 / -1;
}

.seo-copy{
    font-size:16px;
}

.faq-list{
    display:grid;
    gap:12px;
    margin-top:12px;
}

@media (max-width: 980px){
    .seo-block{
        grid-column:auto;
    }

    .brand{
        flex-direction:column;
        align-items:flex-start;
    }
}