/* Squeeze Page Specific Styles */

/* Override body for squeeze page */
.squeeze-page {
    background: #0a0a0a;
}

/* Hero Section */
.squeeze-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.squeeze-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Challenge Badge */
.challenge-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #FFD700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.challenge-badge i {
    color: #FFD700;
    font-size: 16px;
}

/* Headlines */
.squeeze-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.squeeze-subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Challenge Benefits */
.challenge-benefits {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.challenge-benefits h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.benefits-grid {
    display: grid;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #FFD700;
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.benefit-text strong {
    display: block;
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.5;
    margin: 0;
}

/* Form Container */
.form-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

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

.form-header h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.form-header p {
    font-size: 18px;
    color: #ccc;
}

.convertkit-form {
    /* ConvertKit form will inject here */
    min-height: 200px;
}

/* Override ConvertKit default styles */
.convertkit-form form {
    max-width: 100% !important;
}

.convertkit-form input[type="email"],
.convertkit-form input[type="text"] {
    background: #1a1a1a !important;
    border: 2px solid rgba(255, 215, 0, 0.3) !important;
    color: #fff !important;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

.convertkit-form input[type="email"]:focus,
.convertkit-form input[type="text"]:focus {
    border-color: #FFD700 !important;
    outline: none !important;
}

.convertkit-form button[type="submit"],
.convertkit-form button[data-element="submit"] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 18px 40px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.convertkit-form button[type="submit"]:hover,
.convertkit-form button[data-element="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: 600;
    font-size: 15px;
}

.trust-item i {
    font-size: 18px;
}

/* Social Proof Section */
.social-proof {
    background: #0f0f0f;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
}

/* About Instructor Section */
.about-instructor {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 80px 0;
}

.instructor-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.instructor-image {
    position: relative;
}

.instructor-image .profile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.instructor-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #fff;
}

.instructor-text .lead {
    font-size: 20px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.credentials li {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.credentials li i {
    color: #FFD700;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 12px;
}

.testimonials-section .section-header p {
    font-size: 22px;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-video {
    background: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

.testimonial-video wistia-player {
    border-radius: 12px;
    overflow: hidden;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.btn-scroll-to-form {
    display: inline-block;
    background: #000;
    color: #FFD700;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-scroll-to-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Updates */
.footer-rating {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
}

.footer-rating i {
    font-size: 18px;
}

.footer-rating span {
    color: #ccc;
    font-size: 14px;
    margin-left: 10px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor-image .profile-img {
        max-width: 250px;
        margin: 0 auto;
    }
    .squeeze-hero {
        padding: 80px 0 60px;
    }

    .squeeze-headline {
        font-size: 32px;
    }

    .squeeze-subheadline {
        font-size: 18px;
    }

    .challenge-benefits {
        padding: 30px 20px;
    }

    .challenge-benefits h3 {
        font-size: 24px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 26px;
    }

    .form-header p {
        font-size: 16px;
    }

    .trust-indicators {
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-section .section-header h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .instructor-text h2 {
        font-size: 32px;
    }

    .instructor-text .lead {
        font-size: 18px;
    }

    .credentials li {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .btn-scroll-to-form {
        padding: 16px 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .squeeze-headline {
        font-size: 28px;
    }

    .squeeze-subheadline {
        font-size: 16px;
    }

    .challenge-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }
}