/* Waitlist Page Specific Styles */

/* Badge */
.waitlist-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8de 100%);
    color: #E04419;
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(224, 68, 25, 0.15);
}

/* Main Content */
.waitlist-content {
    text-align: center;
    padding: 60px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 24px;
}

.waitlist-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #5E4A42;
    line-height: 1.6;
    margin-bottom: 32px;
}

.waitlist-subtitle strong {
    font-weight: 700;
    color: #2d2d2d;
}

/* Benefits List */
.waitlist-benefits-intro {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.waitlist-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    text-align: center;
}

.waitlist-benefits li {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 17px;
    color: #5E4A42;
    line-height: 1.6;
    margin-bottom: 12px;
}

.waitlist-benefits li:last-child {
    margin-bottom: 0;
}

.waitlist-benefits li::before {
    content: "✓";
    color: #E86A1E;
    font-weight: 700;
    margin-right: 10px;
}

/* Form Label */
.form-label {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

/* Custom CTA Button */
.waitlist-cta {
    background: #E86A1E;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 32px;
}

.waitlist-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 106, 30, 0.4);
    background: #d45a10;
}

.form-note {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #5E4A42;
    line-height: 1.6;
}

.form-note strong {
    font-weight: 600;
    color: #2d2d2d;
}


@media (max-width: 768px) {
    .waitlist-title {
        font-size: 40px;
    }

    .waitlist-subtitle {
        font-size: 18px;
        padding: 0 16px;
    }

    .waitlist-benefits-intro {
        font-size: 16px;
    }

    .waitlist-benefits {
        padding: 0 16px;
    }

    .waitlist-benefits li {
        font-size: 15px;
    }

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

    .form-container {
        padding: 32px 24px;
        margin: 0 -8px;
    }
}
