
/* Static Page Layout */
.static-page {
    min-height: 60vh;
}

.static-hero {
    background: linear-gradient(135deg, #211d3e 0%, #7746c0 100%);
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.static-hero h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.static-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.static-hero--service {
    background: linear-gradient(135deg, #1a1640 0%, #ff6b35 100%);
}

/* Content Section */
.static-content {
    padding: 3rem 0 4rem;
    background: #f8f9fa;
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.content-card h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #211d3e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.content-card p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.content-card ul, .content-card ol {
    color: #555;
    line-height: 2;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.25rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7746c0, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #211d3e;
}

.feature-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* Sectors Grid */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0ebf8, #fff5f0);
    color: #211d3e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(119, 70, 192, 0.15);
    transition: all 0.3s ease;
}

.sector-badge:hover {
    background: linear-gradient(135deg, #7746c0, #ff6b35);
    color: white;
    transform: translateY(-2px);
}

/* Advice blocks */
.advice-section {
    margin: 2rem 0;
}

.advice-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #7746c0;
}

.advice-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7746c0, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advice-icon i {
    font-size: 1.3rem;
    color: white;
}

.advice-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.advice-content ul {
    margin-bottom: 0;
}

/* Steps Vertical */
.steps-vertical {
    margin: 2rem 0;
    position: relative;
}

.steps-vertical::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #7746c0, #ff6b35);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7746c0, #ff6b35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0ebf8, #fff5f0);
    border-radius: 16px;
    border: 1px solid rgba(119, 70, 192, 0.1);
}

.cta-section h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #211d3e;
    margin-top: 0;
}

.cta-section p {
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.cta-section .btn-outline-primary {
    border: 2px solid #7746c0;
    color: #7746c0;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-outline-primary:hover {
    background: #7746c0;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .static-hero {
        padding: 5rem 0 2rem;
    }

    .static-hero h1 {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .advice-block {
        flex-direction: column;
        gap: 1rem;
    }

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

    .steps-vertical::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
        gap: 0.75rem;
    }
}
