/* About Section Styling */
.about-section {
    padding: 180px 0 100px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Blueprint Grid Detail */
.blueprint-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    z-index: 10;
}

/* Service Cards */
.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.metric-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #10b981;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.highlight-text {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button styles for About page */
.about-btn {
    background: #10b981;
    color: #020304;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-btn:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

@media (max-width: 1024px) {
    .about-section {
        padding: 140px 0 60px 0;
    }

    .glass-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 120px 0 40px 0;
    }

    .glass-panel {
        padding: 30px 20px;
    }

    .spec-card {
        padding: 24px;
    }
}