/* === Page: Services === */

/* === PAGE: SERVICES === */
/* ===== SERVICE CATEGORIES ===== */
.categories-section {
    background: var(--navy-deep);
}

.categories-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.categories-intro p {
    font-size: 16px;
    color: var(--text);
    opacity: 0.8;
}

.category-block {
    margin-bottom: 80px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.category-title h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.category-title span {
    
    font-size: 12px;
    color: var(--teal);
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 24px 20px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
    transform: translateY(-4px);
}

.service-card h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-provider {
    
    font-size: 10px;
    color: var(--teal);
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* ===== FEATURED PLATFORM ===== */
.platform-section {
    background: linear-gradient(160deg, #0a1628 0%, #0e3630 50%, #0b2830 100%);
}

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

.platform-content .tag {
    color: rgba(255,255,255,0.7);
}

.platform-content h2 {
    color: #fff;
}

.platform-content .line {
    background: rgba(255,255,255,0.4);
}

.platform-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.platform-stat {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.platform-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.platform-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== INDUSTRIES ===== */
.industries-section {
    background: var(--navy);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--teal);
    background: var(--card-hover);
}

.industry-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--teal);
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.industry-card h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
    background: var(--navy-deep);
}

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

.cert-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 30px 20px;
    text-align: center;
}

.cert-value {
    
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
}

.cert-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== WORKFLOW ===== */
.workflow-section {
    background: var(--navy);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.workflow-step::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 30px;
    color: var(--teal);
    font-size: 20px;
    opacity: 0.5;
}

.workflow-step:last-child::after {
    display: none;
}

.workflow-number {
    width: 56px;
    height: 56px;
    background: rgba(0,201,167,0.1);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
}

.workflow-step h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 12px;
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #0f2240 100%);
    padding: 80px 6%;
}

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

.cta-content h2 {
    color: var(--navy);
}

.cta-content p {
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep);
    padding: 40px 6%;
}

.footer-simple {
    text-align: center;
}

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .workflow-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
    }
}

