/* ─── SERVICES ───────────────────────────────────────────── */
.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.services-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 500;
  max-width: 520px;
}

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

.svc-card {
  padding: 24px 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: opacity 0.3s ease;
  position: relative;
  overflow: visible;
}

.svc-card::before {
  display: none;
}

.svc-card:hover::before {
  display: none;
}

.svc-card:hover {
  opacity: 0.88;
  transform: none;
  box-shadow: none;
}

.svc-chart {
  height: 86px;
  margin: 8px 0 22px;
  border-radius: 12px;
  background: rgba(15,23,42,0.02);
  border: none;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.svc-chart-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px;
}

.svc-chart-bars span {
  flex: 1;
  height: var(--h);
  min-height: 14px;
  border-radius: 4px;
  background: var(--brand);
  opacity: 0.55;
  box-shadow: none;
}

.svc-chart-bars span:nth-child(2) {
  background: var(--green, #10b981);
  opacity: 0.5;
  box-shadow: none;
}

.svc-chart-bars span:nth-child(4) {
  background: var(--coral);
  opacity: 0.5;
  box-shadow: none;
}

.svc-chart-funnel {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
}

.svc-chart-funnel span {
  height: 11px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.55;
  box-shadow: none;
}

.svc-chart-funnel span:nth-child(1) {
  width: 100%;
}

.svc-chart-funnel span:nth-child(2) {
  width: 72%;
  background: var(--green, #10b981);
  opacity: 0.5;
  box-shadow: none;
}

.svc-chart-funnel span:nth-child(3) {
  width: 44%;
  background: var(--coral);
  opacity: 0.5;
  box-shadow: none;
}

.svc-chart-line {
  padding: 12px;
}

.svc-chart-line svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svc-chart-line path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(37,99,235,0.18));
}

.svc-num {
  font-size: 11px;
  color: var(--brand);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  box-shadow: none;
}

.svc-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.svc-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 500;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 22px;
  transition: gap 0.25s ease;
}

.svc-link:hover {
  gap: 8px;
}

/* ─── DASHBOARD VISUAL ───────────────────────────────────── */
.dashboard-section {
  padding: 88px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 52px;
  align-items: center;
  background: transparent;
}

.dashboard-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.dashboard-preview {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.dash-topline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dash-topline div {
  background: transparent;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  padding: 14px 16px;
}

.dash-topline span,
.dash-source span {
  display: block;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.dash-topline strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.dash-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
}

.dash-bars {
  min-height: 250px;
  border-radius: 16px;
  padding: 20px 14px 14px;
  background: rgba(15,23,42,0.02);
  display: flex;
  align-items: end;
  gap: 14px;
}

.dash-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 4px 4px;
  background: var(--brand);
  opacity: 0.55;
  box-shadow: none;
}

.dash-bars span:nth-child(2),
.dash-bars span:nth-child(5) {
  background: var(--green, #10b981);
  opacity: 0.5;
  box-shadow: none;
}

.dash-bars span:nth-child(3),
.dash-bars span:nth-child(6) {
  background: var(--coral);
  opacity: 0.5;
  box-shadow: none;
}

.dash-breakdown {
  display: grid;
  gap: 12px;
}

.dash-source {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  border-radius: 0;
  padding: 12px 4px;
}

.dash-source i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.dash-source strong {
  font-size: 18px;
  color: var(--ink);
}

.source-blue {
  background: var(--brand);
}

.source-green {
  background: var(--green);
}

.source-coral {
  background: var(--coral);
}

/* ─── WHY LUMA STRIP ─────────────────────────────────────── */
.why-strip {
  background: transparent;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.why-icon {
  font-size: 24px;
  color: var(--brand);
  line-height: 1;
  opacity: 0.75;
}

.why-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.65;
}

/* ─── PROCESS ────────────────────────────────────────────── */
.process-title {
  max-width: 680px;
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
  position: relative;
}

.process-grid::before {
  display: none;
}

.step {
  text-align: left;
  padding: 28px 4px 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-top: 1px solid rgba(15,23,42,0.08);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: opacity 0.25s ease;
}

.step::before {
  display: none;
}

.step:hover {
  opacity: 0.9;
  transform: none;
  box-shadow: none;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--brand);
  font-style: normal;
  font-weight: 600;
  box-shadow: none;
}

.step:hover .step-dot {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 500;
}
