/* MassiveGRID — NOC and SOC services pages */
.svc-hero {
position: relative; min-height: 70vh; display: flex; flex-direction: column;
justify-content: center; padding: 10rem 3rem 5rem; z-index: 1; text-align: center;
}
.svc-hero-content { max-width: 900px; margin: 0 auto; }
.svc-hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08;
margin-bottom: 1.5rem; letter-spacing: -0.03em;
animation: fadeInUp 0.8s ease forwards;
}
.svc-hero h1 .gradient-text {
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-hero p {
font-size: 1.2rem; color: var(--text-secondary); max-width: 700px;
margin: 0 auto 2.5rem; line-height: 1.8;
animation: fadeInUp 0.8s ease 0.15s forwards; opacity: 0;
}
.svc-hero-cta {
display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
margin-bottom: 3rem;
animation: fadeInUp 0.8s ease 0.25s forwards; opacity: 0;
}
.svc-hero-stats {
display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
padding-top: 2.5rem; border-top: 1px solid var(--border-subtle);
animation: fadeInUp 0.8s ease 0.35s forwards; opacity: 0;
}
.svc-hero-stat { text-align: center; }
.svc-hero-stat-value {
font-family: 'Space Mono', monospace; font-size: 2.25rem; font-weight: 700;
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }

/* Service sections */
.svc-section { position: relative; z-index: 1; padding: 6rem 3rem; }
.svc-section.alt { background: var(--bg-secondary); }
.svc-inner { max-width: 1200px; margin: 0 auto; }

/* Feature cards */
.svc-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1.5rem;
}
.svc-card {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.svc-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.svc-card:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-card-icon {
width: 48px; height: 48px; border-radius: 12px; display: flex;
align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.svc-card-icon.gold { background: var(--accent-gold-dim); color: var(--accent-gold); }
.svc-card-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--accent-blue); }
.svc-card-icon.purple { background: rgba(168, 85, 247, 0.12); color: var(--accent-purple); }
.svc-card-icon.green { background: rgba(34, 197, 94, 0.12); color: var(--accent-green); }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.svc-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* Process / How it works */
.process-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem; counter-reset: process;
}
.process-step {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 16px; padding: 2rem; text-align: center;
transition: all 0.3s ease; position: relative;
}
.process-step:hover { border-color: rgba(245, 166, 35, 0.3); }
.process-num {
font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700;
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
margin-bottom: 1rem; line-height: 1;
}
.process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* FAQ */
.faq-section { position: relative; padding: 6rem 3rem; z-index: 1; background: var(--bg-secondary); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 12px; overflow: hidden; transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(245, 166, 35, 0.2); }
.faq-question {
width: 100%; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between;
align-items: center; background: none; border: none; color: var(--text-primary);
font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
cursor: pointer; text-align: left; gap: 1rem;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question svg { flex-shrink: 0; color: var(--text-muted); transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-content {
padding: 0 1.5rem 1.25rem; color: var(--text-secondary);
font-size: 0.92rem; line-height: 1.7;
}

/* ── Mobile & Tablet Performance (≤1024px) ── */
@media (max-width: 1024px) {
    .svc-hero h1, .svc-hero p, .svc-hero-cta, .svc-hero-stats { animation: none; opacity: 1; }
    .svc-card { backdrop-filter: none; transition: none; }
    .svc-card::before { transition: none; }
    .svc-card:hover { transform: none; }
    .process-step { transition: none; }
    .faq-item { transition: none; }
    .faq-question svg { transition: none; }
    .faq-answer { transition: none; }
}
@media (max-width: 768px) {
.svc-hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
.svc-hero h1 { font-size: 2.25rem; }
.svc-hero-stats { gap: 2rem; }
.svc-hero-stat-value { font-size: 1.75rem; }
.svc-section { padding: 4rem 1.5rem; }
.svc-grid, .process-grid { grid-template-columns: 1fr; }
.faq-section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
.svc-hero { padding: 6rem 1rem 2rem; }
.svc-hero h1 { font-size: 2rem; }
.svc-hero p { font-size: 1rem; }
.svc-hero-cta { flex-direction: column; }
.btn-large { width: 100%; justify-content: center; }
.svc-hero-stats { flex-direction: column; gap: 1.5rem; }
.svc-section { padding: 3rem 1rem; }
.faq-section { padding: 3rem 1rem; }
}
