/* ── Services Module ── */
.svc-section { font-family: 'Inter', sans-serif; }

.svc-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.svc-header { text-align: center; margin-bottom: 56px; }
.svc-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: #0a0a0f; color: #c9a84c;
    padding: 6px 16px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 20px;
}
.svc-badge svg { width: 13px; height: 13px; }
.svc-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
.svc-desc { font-size: 1rem; line-height: 1.8; color: #64748b; max-width: 680px; margin: 0 auto; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.svc-card {
    position: relative; overflow: hidden;
    border-radius: 20px; text-decoration: none;
    display: block; min-height: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); }
.svc-card--stage { background: #0a0a0f; color: #fff; }
.svc-card--sound { background: #1a1a2e; color: #fff; }
.svc-card--light { background: #c9a84c; color: #0a0a0f; }
.svc-card-inner { position: relative; z-index: 2; padding: 36px 32px; height: 100%; display: flex; flex-direction: column; }
.svc-card-icon { width: 48px; height: 48px; margin-bottom: 24px; opacity: 0.9; }
.svc-card-icon svg { width: 100%; height: 100%; }
.svc-card-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; opacity: 0.3; margin-bottom: 12px; text-transform: uppercase; }
.svc-card-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2; }
.svc-card-desc { font-size: 0.875rem; line-height: 1.7; opacity: 0.65; flex: 1; margin-bottom: 28px; }
.svc-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; transition: gap 0.2s; }
.svc-card-link svg { width: 14px; height: 14px; }
.svc-card:hover .svc-card-link { gap: 12px; }
.svc-card-bg-icon { position: absolute; bottom: -20px; right: -20px; width: 160px; height: 160px; opacity: 0.06; z-index: 1; pointer-events: none; }
.svc-card-bg-icon svg { width: 100%; height: 100%; }

.svc-cta-wrap { text-align: center; }
.svc-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; border-radius: 100px;
    background: #0a0a0f; color: #fff;
    font-size: 0.875rem; font-weight: 800;
    letter-spacing: 0.04em; text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.svc-btn-primary svg { width: 16px; height: 16px; }
.svc-btn-primary:hover { background: #1a1a2e; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .svc-container { padding: 0 20px; }
    .svc-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-card { min-height: auto; }
    .svc-card-inner { padding: 28px 24px; }
}
