/* ── E-posta Hizmet Sayfası — Özel Stiller ── */

/* DMARC Politika Aşamaları */
.dmarc-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
}

.dmarc-stage {
  padding: 32px 28px;
  border-right: 1px solid var(--gray-100);
  position: relative;
}

.dmarc-stage:last-child { border-right: none; }

.dmarc-stage-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.dmarc-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.dmarc-stage-badge.none       { background: rgba(156, 163, 175, .15); color: #6b7280; }
.dmarc-stage-badge.quarantine { background: rgba(249, 115, 22, .12);  color: #ea580c; }
.dmarc-stage-badge.reject     { background: rgba(85, 0, 196, .1);     color: var(--blue); }

.dmarc-stage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: var(--black);
}

.dmarc-stage-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.dmarc-stage-effect {
  font-size: 12px;
  color: var(--gray-600);
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.55;
}

.dmarc-stage-effect strong { color: var(--black); font-weight: 500; }

.dmarc-arrow {
  display: none;
}

@media (max-width: 980px) {
  .dmarc-stages {
    grid-template-columns: 1fr;
  }
  .dmarc-stage { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .dmarc-stage:last-child { border-bottom: none; }
}
