/* ============================================================
   Hizmetlerimiz ve Fiyat Listesi sayfası: koyu/altın hero,
   hizmet alanı çipleri, güven şeridi ve fiyat kartları grid'i.
   ============================================================ */

.services-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 0%, rgba(245, 197, 24, .12), transparent),
    var(--ink);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 3.25rem 2rem 2.75rem;
  margin: 1rem 0 2rem;
}
.services-hero .story-kicker { color: var(--gold); }
.services-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: .6rem auto .9rem;
  max-width: 760px;
}
.services-hero > p {
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.services-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.85rem;
}
.services-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .35);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  transition: background-color .15s ease, transform .15s ease;
}
.services-chip:hover { background: rgba(245, 197, 24, .2); transform: translateY(-1px); }

/* ---------- Güven şeridi (Keşif Ücretsiz) ---------- */
.services-trust-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  background: var(--gold-soft);
  border: 1px solid rgba(245, 197, 24, .4);
  border-radius: var(--radius);
  padding: 1.35rem 1.85rem;
  margin-bottom: 3rem;
}
.services-trust-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .35rem .95rem;
  border-radius: 999px;
  margin-bottom: .45rem;
}
.services-trust-headline p { margin: 0; color: var(--text); font-weight: 600; }
.services-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-weight: 700;
  font-size: .88rem;
}

/* ---------- Fiyat kartları ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}
.pricing-grid .pricing-card:nth-child(2n) { transition-delay: .06s; }
.pricing-grid .pricing-card:nth-child(3n) { transition-delay: .12s; }

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .15s ease, transform .15s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .5rem;
}
.pricing-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: .8rem;
  background: var(--gold-soft);
  font-size: 1.5rem;
}
.pricing-card-head h3 { font-size: 1.12rem; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.pricing-card-note { color: var(--text-muted); font-size: .8rem; font-style: italic; }

.pricing-table-label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin: 1.1rem 0 .35rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: .6rem 0 .25rem;
}
.pricing-table th {
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  padding: 0 .4rem .45rem;
  border-bottom: 2px solid var(--border);
}
.pricing-table th:not(:first-child), .pricing-table td:not(:first-child) { text-align: right; }
.pricing-table td {
  padding: .5rem .4rem;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.pricing-table td:first-child { font-weight: 600; }
.pricing-table td:not(:first-child) { font-weight: 800; color: var(--ink); white-space: nowrap; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--gold-soft); }

.pricing-features {
  list-style: none;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .4rem .75rem;
}
.pricing-features li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-muted);
  font-size: .85rem;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .services-trust-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575.98px) {
  .services-hero { padding: 2.25rem 1.25rem 2rem; }
  .pricing-card { padding: 1.35rem 1.25rem 1.5rem; }
  .pricing-table th, .pricing-table td { padding: .4rem .3rem; font-size: .85rem; }
}
