/* Lead Page Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0f14;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* Header */
.lead-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 56px;
    background: rgba(10, 15, 20, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}
.lead-header .lead-logo {
    display: flex;
    align-items: center;
}
.lead-header .back-link {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.lead-header .back-link:hover { color: #00B1EB; }
.lead-header .back-link svg { width: 16px; height: 16px; }

/* Main Layout */
.lead-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 65px);
}

/* Left Side - Hero */
.lead-hero {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f14 0%, #0d1520 50%, #0a1018 100%);
    position: relative;
    overflow: hidden;
}
.lead-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,177,235,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lead-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B1EB;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.lead-hero-badge::before {
    content: '';
    width: 32px;
    height: 2px;
    background: #00B1EB;
}
.lead-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.lead-hero > p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Benefits */
.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lead-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lead-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0,177,235,0.1);
    border: 1px solid rgba(0,177,235,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lead-benefit-icon svg {
    width: 20px;
    height: 20px;
    color: #00B1EB;
}
.lead-benefit h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.lead-benefit p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* Trust Bar */
.lead-trust {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 32px;
}
.lead-trust-item {
    text-align: center;
}
.lead-trust-item .num {
    font-size: 24px;
    font-weight: 700;
    color: #00B1EB;
}
.lead-trust-item .label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side - Form */
.lead-form-container {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.lead-form-card {
    width: 100%;
    max-width: 480px;
}
.lead-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 6px;
}
.lead-form-card .subtitle {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 32px;
}

/* Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0a0f14;
    margin-bottom: 6px;
}
.form-group label .required {
    color: #ef4444;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #0a0f14;
    background: #f8f9fa;
    border: 1px solid #e0e3e8;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00B1EB;
    box-shadow: 0 0 0 3px rgba(0,177,235,0.1);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa0a6;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235f6368' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #00B1EB;
    cursor: pointer;
}
.form-checkbox label {
    font-size: 12px;
    color: #5f6368;
    line-height: 1.5;
    cursor: pointer;
}
.form-checkbox label a {
    color: #00B1EB;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #00B1EB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.form-submit:hover { background: #0095c8; }
.form-submit:disabled {
    background: #9aa0a6;
    cursor: not-allowed;
}
.form-submit svg { width: 18px; height: 18px; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* Messages */
.form-message {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}
.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}
.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Footer */
.lead-footer {
    padding: 24px 56px;
    background: rgba(10, 15, 20, 0.95);
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.lead-footer a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.lead-footer a:hover { color: #00B1EB; }
.lead-footer-links {
    display: flex;
    gap: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .lead-layout {
        grid-template-columns: 1fr;
    }
    .lead-hero {
        padding: 60px 40px;
    }
    .lead-trust {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .lead-header { padding: 16px 24px; }
    .lead-hero { padding: 40px 24px; }
    .lead-hero h1 { font-size: 28px; }
    .lead-form-container { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .lead-trust { gap: 24px; }
    .lead-footer {
        padding: 20px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
