/* Fiber Delivery Process Preview Page Styles */


/* What's Included Section */

.whats-included-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 48px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.included-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.included-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.included-card:hover::before {
    opacity: 1;
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.included-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.included-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.included-card>p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.preview-content {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.preview-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.preview-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.preview-content li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 6px;
    padding-left: 0;
}

.preview-content li:before {
    content: '•';
    color: #8b5cf6;
    font-weight: bold;
    margin-right: 8px;
}

.email-preview {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.email-preview p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.email-preview p:last-child {
    margin-bottom: 0;
}

.preview-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
}

.preview-note i {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.preview-note span {
    font-size: 0.85rem;
    color: #5b21b6;
    line-height: 1.4;
}


/* Results Section */

.results-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.result-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.result-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.result-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}


/* CTA Section */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1e293b 100%);
    color: var(--text-light);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.cta-content>p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #8b5cf6;
    font-size: 0.8rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 16px;
}

.cta-note i {
    color: #8b5cf6;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .included-card {
        padding: 24px;
    }
    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .result-card {
        padding: 24px 20px;
    }
    .result-number {
        font-size: 2.5rem;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cta-feature {
        justify-content: center;
    }
}