/* Public Funnel Page Styles */
.public-funnel-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.funnel-step {
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.step-landing {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.step-landing h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.step-landing .step-content {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.step-optin {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.step-optin h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.step-optin .step-content {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.step-sales {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.step-sales h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-sales .step-content {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.step-checkout {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.step-checkout h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.step-thankyou {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 6rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    text-align: center;
    margin-bottom: 2rem;
}

.step-thankyou h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.step-thankyou .step-content {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.step-content {
    max-width: 800px;
    margin: 0 auto;
}

.step-content ::deep p {
    margin-bottom: 1rem;
}

.step-content ::deep ul,
.step-content ::deep ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.step-content ::deep img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Lead Capture Form */
.lead-capture-form {
    max-width: 500px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.lead-capture-form .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.lead-capture-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.lead-capture-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.lead-capture-form .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.lead-capture-form .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .funnel-step {
        padding: 2rem 1rem;
    }

    .step-landing {
        padding: 4rem 1.5rem;
    }

    .step-landing h1 {
        font-size: 2.5rem;
    }

    .step-optin,
    .step-sales,
    .step-checkout {
        padding: 3rem 1.5rem;
    }

    .step-optin h2,
    .step-sales h2,
    .step-checkout h2 {
        font-size: 2rem;
    }

    .step-thankyou {
        padding: 4rem 1.5rem;
    }

    .step-thankyou h2 {
        font-size: 2.5rem;
    }

    .lead-capture-form {
        padding: 1.5rem;
    }
}
