:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --accent-color: #3b82f6;
    --bg-dark: #0f172a;
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #22c55e;
    --container-width: 1100px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-content {
    padding: 60px 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary-color);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.metrics {
    display: flex;
    background: var(--card-bg);
    padding: 24px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.metric-item {
    text-align: center;
}

.metric-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
}

.metric-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

.proof-card {
    position: relative;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--card-bg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.proof-card img {
    width: 100%;
    display: block;
}

.proof-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.form-section {
    padding: 100px 0;
}

.form-container {
    background: var(--card-bg);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0;
    transition: width 0.4s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-step p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-main);
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: var(--primary-color);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    display: block;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.radio-card input:checked + .card-content {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.button-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn-next, .btn-submit {
    flex: 1;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.btn-prev {
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.calendar-wrapper {
    margin-top: 20px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.success-header {
    text-align: center;
    margin-bottom: 30px;
}

.check-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 16px;
    border-radius: 12px;
    color: #f59e0b;
    font-size: 0.875rem;
    margin-top: 20px;
    text-align: left;
}

.bonus-section {
    padding: 80px 0;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .radio-group { grid-template-columns: 1fr; }
    .metrics { flex-direction: column; gap: 20px; }
    .metric-divider { width: 40%; height: 1px; margin: 10px auto; }
    .form-container { padding: 30px 20px; border-radius: 0; }
}
