/* Marketing Enhancement Styles */

/* Experience Proof Section */
.experience-proof-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.experience-content {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ccd6f6;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #8892b0;
    font-size: 1rem;
}

.technologies-used {
    max-width: 800px;
    margin: 0 auto;
}

.tech-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccd6f6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
}

.tech-icon {
    font-size: 1.5rem;
}

.tech-name {
    color: #ccd6f6;
    font-weight: 500;
}

/* Credentials Section */
.credentials-section {
    padding: 100px 0;
    background: #0a0a0f;
}

.credentials-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
}

.alan-photo {
    position: relative;
}

.photo-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    border: 3px solid #64ffda;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-icon {
    font-size: 4rem;
}

.credentials-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ccd6f6;
}

.credentials-subtitle {
    font-size: 1.2rem;
    color: #64ffda;
    margin-bottom: 40px;
}

.credentials-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    color: #8892b0;
    font-size: 1rem;
}

.credentials-description {
    margin-bottom: 30px;
}

.credentials-description p {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Problem Validation Section */
.problem-validation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.problem-card {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #2a2a3e;
    text-align: center;
    transition: all 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 15px;
}

.problem-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.problem-impact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.impact-label {
    color: #8892b0;
    font-size: 0.9rem;
}

.impact-value {
    color: #e74c3c;
    font-weight: 700;
}

.solution-preview {
    text-align: center;
    background: rgba(100, 255, 218, 0.05);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid rgba(100, 255, 218, 0.2);
}

.solution-title {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 20px;
}

.solution-description {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-magnet-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ccd6f6;
}

.lead-magnet-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 40px;
}

.assessment-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    color: #8892b0;
    font-size: 1rem;
}

.lead-magnet-form {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #2a2a3e;
}

.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 15px;
    background: #0a0a0f;
    border: 2px solid #2a2a3e;
    border-radius: 8px;
    color: #ccd6f6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #64ffda;
    background: rgba(100, 255, 218, 0.05);
}

.form-input::placeholder {
    color: #8892b0;
}

.form-submit {
    background: linear-gradient(135deg, #64ffda, #4dc9b0);
    color: #0a0a0f;
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.form-disclaimer {
    color: #8892b0;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

/* FAQ Enhancement */
.strong-guarantee {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(100, 255, 218, 0.05));
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 12px;
}

.strong-guarantee .faq-question {
    color: #64ffda;
}

.strong-guarantee .faq-answer strong {
    color: #64ffda;
    text-decoration: underline;
}

/* Enhanced Risk Reversal Styling */
.packages-guarantee .guarantee-text {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(100, 255, 218, 0.05));
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .credentials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .photo-icon {
        font-size: 3rem;
    }
    
    .solution-preview {
        padding: 40px 20px;
    }
    
    .lead-magnet-form {
        padding: 30px 20px;
    }
}