/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */

.services-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
}

.services-hero .section-subtitle {
  margin: 0 auto;
}

/* ── Services Grid ───────────────────────────────────────── */
.services-main {
  padding-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Service Card ────────────────────────────────────────── */
.service-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover {
  border-color: rgba(255,107,26,0.45);
  box-shadow: 0 0 36px var(--accent-glow), 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-6px) scale(1.01);
}

.sc-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,107,26,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.service-card:hover .sc-icon {
  background: rgba(255,107,26,0.2);
  box-shadow: 0 0 20px var(--accent-glow);
}

.sc-icon svg {
  width: 100%;
  height: 100%;
}

.sc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sc-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.sc-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.35);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sc-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-features span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.service-card:hover .sc-features span {
  border-color: rgba(255,107,26,0.25);
  color: rgba(255,255,255,0.75);
}

.sc-expand-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.sc-expand-btn svg {
  transition: transform 0.35s ease;
}

.sc-expand-btn.expanded svg {
  transform: rotate(180deg);
}

/* ── Expanded Panel ──────────────────────────────────────── */
.sc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
  margin-top: -8px;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -32px;
}

.sc-panel.open {
  max-height: 600px;
  opacity: 1;
}

.sc-panel-inner {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
  padding: 28px 32px 24px;
}

.sc-panel-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.panel-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.panel-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-col li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.panel-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.panel-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner-section { padding-top: 0; }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .panel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .sc-panel.open { max-height: 1200px; }
}
