/* ── INTRO ──────────────────────────────────────────────── */
.services-intro {
  background: var(--off-white);
  padding: 60px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.services-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SERVICES FULL GRID ─────────────────────────────────── */
.services-full-section {
  background: var(--carbon-80);
  padding: var(--section-pad);
  position: relative;
}
.services-full-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(237,199,54,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(237,199,54,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Card */
.service-full-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(237,199,54,0.1);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
  cursor: default;
}

.service-full-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,199,54,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-full-card:hover {
  background: rgba(237,199,54,0.06);
  border-color: rgba(237,199,54,0.3);
  z-index: 1;
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-full-card:hover::before { opacity: 1; }

.sfc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sfc-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  flex-shrink: 0;
}
.sfc-icon svg { width: 100%; height: 100%; }

.sfc-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(237,199,54,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--trans);
}
.service-full-card:hover .sfc-number {
  color: rgba(237,199,54,0.22);
}

.service-full-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-full-card p {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .services-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .services-full-section { padding: var(--section-pad-sm); }
}
@media (max-width: 640px) {
  .services-grid-inner { grid-template-columns: 1fr; }
  .service-full-card { padding: 32px 24px; }
}

/* ── CTA ────────────────────────────────────────────────── */
.services-cta {
  background: var(--gold);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(26,26,26,0.04) 20px,
    rgba(26,26,26,0.04) 21px
  );
}
.services-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .services-cta { padding: 50px 20px; }
  .services-intro { padding: 40px 20px; }
}
