

.page-intro {
    background: #f8fafc;
    text-align: center;
}

.page-intro h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.page-intro p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.process-stepper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 200px;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    color: #1a1a1a;
}

.step-content {
    flex: 1;
    padding-top: var(--spacing-sm);
}

.step-content p {
    margin-bottom: var(--spacing-md);
    color: #4b5563;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6b7280;
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.deliverables {
    background: #f8fafc;
}

.deliverables h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tabs {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid #e5e7eb;
}

.tab-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(37, 99, 235, 0.05);
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    position: relative;
}

.tab-button:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.tab-button.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.15);
    border-bottom-color: #2563eb;
    box-shadow: 0 -2px 8px rgba(37, 99, 235, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    color: #2563eb;
    margin-bottom: var(--spacing-md);
}

.tab-panel ul {
    list-style: none;
    padding: 0;
}

.tab-panel li {
    padding: var(--spacing-sm) 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.tab-panel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
}

.timeline {
    background: #fff;
}

.timeline h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.timeline-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.timeline-item {
    padding: var(--spacing-lg);
    border-left: 3px solid #2563eb;
    background: #f8fafc;
    border-radius: var(--border-radius);
    margin-left: var(--spacing-md);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.timeline-header h4 {
    margin: 0;
    color: #1a1a1a;
}

.timeline-badge {
    background: #2563eb;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.timeline-content p {
    color: #4b5563;
    margin: 0;
}

.timeline-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: var(--spacing-xl);
    font-style: italic;
}


.faq {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-2xl) 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    border-radius: 2px;
}

.faq .accordion {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq .accordion-item {
    margin-bottom: var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.faq .accordion-item:last-child {
    margin-bottom: 0;
}

.faq .accordion-trigger {
    width: 100%;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
    margin-bottom: 0;
}

.faq .accordion-trigger:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-color: #2563eb;
    color: #2563eb;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.faq .accordion-trigger::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #2563eb;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.faq .accordion-item.is-open .accordion-trigger {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #2563eb;
    color: #1e40af;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.faq .accordion-item.is-open .accordion-trigger::after {
    content: '−';
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    transform: rotate(180deg);
}

.faq .accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-lg);
}

.faq .accordion-item.is-open .accordion-panel {
    padding: var(--spacing-lg);
    background: #fff;
    border-top: 2px solid #e5e7eb;
    margin-top: var(--spacing-sm);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.faq .accordion-panel p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}


@media (max-width: 768px) {
    .page-intro h1 {
        font-size: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .step-header {
        min-width: auto;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .timeline-item {
        margin-left: 0;
        border-left: none;
        border-top: 3px solid #2563eb;
    }
}

