:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #16a34a;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --radius: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 25%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 25%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

header {
    padding: 26px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.2rem;
}

.logo img {
    height: 36px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.back-link {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    transition: .2s;
}

.back-link:hover {
    color: var(--primary);
}

.hero {
    padding: 30px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-weight: 700;
    margin-bottom: 26px;
}

.content h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 12ch;
}

.content p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 34px;
}

.benefits {
    display: grid;
    gap: 18px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.65);
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(14px);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.benefit span {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

.form-card {
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    top: -120px;
    right: -120px;
}

.form-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--muted);
    line-height: 1.7;
}

form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--secondary);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    font-size: .96rem;
    font-family: inherit;
    outline: none;
    transition: .2s;
    background: white;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.submit-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    margin-top: 10px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.secure-note {
    text-align: center;
    margin-top: 16px;
    color: var(--muted);
    font-size: .9rem;
}

.floating-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
    z-index: 1;
}

.card-1 {
    top: 30px;
    left: -40px;
}

.card-2 {
    bottom: 30px;
    right: -40px;
}

.floating-card strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.floating-card span {
    color: var(--muted);
    font-size: .85rem;
}

footer {
    padding: 34px 0 50px;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
}

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

    .content {
        order: 1;
    }

    .form-card {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .content h1 {
        max-width: 100%;
    }

    .floating-card {
        position: relative;
        inset: unset;
        width: 100%;
        margin-bottom: 16px;
    }

    .card-1,
    .card-2 {
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
    }

    .form-card {
        overflow: visible;
    }
}

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

    .hero {
        padding: 10px 0 50px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .content h1 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .content p {
        font-size: 1rem;
    }

    .benefit {
        padding: 16px;
    }

    .form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    input,
    select,
    textarea {
        padding: 14px 16px;
    }
}

@media (max-width: 640px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .content h1 {
        letter-spacing: -1px;
    }
}