/* ============================================
   STATIC PAGES — About, Services, Legal
   ============================================ */

.static-page {
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
}

.static-page-hero {
    padding: 60px 0 50px;
    max-width: 800px;
}

.static-page-hero h1 {
    line-height: 1.1;
}

/* Stats Bar */
.static-page-stats .col-6,
.static-page-stats .col-md-3 {
    transition: background 0.3s ease;
}

.static-page-stats .col-6:hover,
.static-page-stats .col-md-3:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Content Blocks */
.static-content-block {
    padding: 20px 0;
}

.static-content-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #818cf8;
    transition: all 0.3s ease;
}

.static-content-block:hover .static-content-icon {
    background: rgba(129, 140, 248, 0.1);
    border-color: rgba(129, 140, 248, 0.3);
}

/* Value Cards */
.value-card {
    padding: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #818cf8, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

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

.value-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    font-size: 1rem;
    color: #818cf8;
}

/* Service Detail Cards */
.service-detail-card .service-detail-header {
    position: sticky;
    top: 100px;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    font-size: 1.4rem;
    color: #818cf8;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: rgba(129, 140, 248, 0.1);
    border-color: rgba(129, 140, 248, 0.3);
    transform: scale(1.05);
}

/* Project Detail Specific */
.project-detail-image {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.project-detail-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    background: rgba(10, 10, 12, 0.4);
    display: block;
}

.project-detail-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Legal Pages */
.legal-page {
    padding-bottom: 80px;
}

.legal-content {
    max-width: 800px;
    padding-top: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Section */
.static-page-cta {
    padding: 40px 0;
}

/* Gradient text accent (reusable) */
.gradient-text-accent {
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
    .static-page {
        padding-top: 80px;
    }

    .static-page-hero {
        padding: 40px 0 30px;
    }

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

    .value-card {
        padding: 20px;
    }

    .service-detail-card .service-detail-header {
        position: static;
    }

    .legal-content {
        padding-top: 24px;
    }

    .legal-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
}
