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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-container {
    background: linear-gradient(135deg, #ffffff 0%, #9933FF 100%);
    padding: 40px 20px;
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.content {
    padding: 40px 30px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.05) 0%, rgba(153, 51, 255, 0.05) 100%);
    border-left: 4px solid #0099FF;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.question-block {
    margin-bottom: 35px;
}

.question-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.question-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099FF 0%, #9933FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #0099FF;
    background: rgba(0, 153, 255, 0.03);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0099FF;
}

.radio-option input[type="radio"]:checked + .radio-label {
    font-weight: 600;
    color: #0099FF;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #0099FF;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(153, 51, 255, 0.08) 100%);
}

.radio-label {
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.email-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #0099FF;
    background: rgba(0, 153, 255, 0.03);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #0099FF 0%, #9933FF 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(0, 153, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 153, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Success/Not Qualified Pages */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0099FF 0%, #9933FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFA500 0%, #FF6B6B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.checkmark, .cross {
    color: white;
    font-weight: bold;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(153, 51, 255, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.cta-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0099FF 0%, #9933FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.details-box {
    background: white;
    border: 2px solid #0099FF;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.details-box p {
    margin-bottom: 10px;
    font-size: 16px;
}

.details-box strong {
    color: #0099FF;
    font-weight: 700;
}

.bonus-list {
    list-style: none;
    margin: 20px 0;
}

.bonus-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.bonus-list li:before {
    content: "🎁 ";
    margin-right: 8px;
}

.webinar-embed {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.next-steps {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.next-steps h3 {
    margin-bottom: 15px;
    color: #333;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0099FF;
    font-weight: bold;
}

.resource-link {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0099FF 0%, #9933FF 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 26px;
    }

    .logo {
        max-width: 280px;
    }

    .question-label {
        font-size: 16px;
    }

    .radio-label {
        font-size: 15px;
    }

    .submit-btn {
        font-size: 16px;
    }
}
