/* ==========================================================================
   SERVICES SPECIFIC LAYOUT ENGINES
   ========================================================================== */
html {
    scroll-padding-top: 120px; /* Prevents sticky glass nav from obscuring deep linked anchors */
}

/* ==========================================================================
   PART 2: SERVICES HERO ARCHITECTURE STYLES
   ========================================================================== */
.services-hero {
    width: 100%;
    min-height: 65vh;
    background-color: var(--brand-navy, #0B1F2A); /* Deep rich premium anchor background */
    background-image: radial-gradient(circle at 80% 20%, rgba(30, 212, 198, 0.04) 0%, transparent 50%);
    display: flex;
    align-items: center;
    padding: 160px 5% 100px 5%; /* Generous top padding protects cleanly against fixed main headers */
    position: relative;
    overflow: hidden;
}

.services-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-content {
    max-width: 850px; /* Enforces optimal line lengths (60-75 characters) for premium scannability */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Operational Matrix Badge Style */
.matrix-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 212, 198, 0.06);
    border: 1px solid rgba(30, 212, 198, 0.15);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--brand-cyan, #1ED4C6);
    margin-bottom: 28px;
    text-transform: uppercase;
}

/* Master Typography Hierarchy */
.services-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #f8fafc;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

/* Hardware-Accelerated Typographical Glow System */
.text-glow {
    color: var(--brand-cyan, #1ED4C6);
    text-shadow: 0 0 30px rgba(30, 212, 198, 0.2);
    display: inline-block;
}

/* Editorial Body Text Copy */
.services-lead {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    line-height: 1.6;
    font-weight: 400;
    color: #cbd5e1; /* Premium high-contrast soft slate */
}

/* ==========================================================================
   RESPONSIVE FLUID SCALABILITY BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    .services-hero {
        min-height: auto;
        padding: 140px 4% 80px 4%;
    }
    .services-hero h1 {
        letter-spacing: -0.02em;
    }
}

@media (max-width: 480px) {
    .matrix-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}
.services-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Suites Layout Rig */
.suites-matrix-engine {
    padding: 40px 0 120px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.suite-block-card {
    background: var(--glass-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.suite-block-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.suite-meta-panel {
    position: sticky;
    top: 160px;
}

.suite-index {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-cyan);
    line-height: 1;
    margin-bottom: 16px;
}

.suite-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.suite-meta-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.suite-summary {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Capabilities Inner Grid */
.suite-capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.capability-node {
    background: rgba(6, 19, 26, 0.4);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 16px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.capability-node:hover {
    background: rgba(11, 31, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.capability-node h4 {
    font-size: 1.25rem;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.capability-node p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Viewports Adaptation */
@media (max-width: 1024px) {
    .suite-block-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .suite-meta-panel {
        position: static;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .services-container {
        padding: 0 20px;
    }
    
    .suite-block-card {
        padding: 30px 20px;
    }
}