/* === Hakkımızda — hijyen & sertifikalar === */
.about-trust-section {
  position: relative;
}

.about-trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), rgba(245, 158, 11, 0.35), transparent);
  pointer-events: none;
}

.about-trust-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.2);
}

.about-trust-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  opacity: 0.9;
  pointer-events: none;
}

.about-trust-card--certs::after {
  background: linear-gradient(90deg, #f59e0b, #a78bfa);
}

.about-trust-card__eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.35rem;
}

.about-trust-card--certs .about-trust-card__eyebrow {
  color: #fcd34d;
}

.about-trust-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: 0.06em;
  color: #f8fafc;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.about-trust-card__lead {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.about-hygiene-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-hygiene-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-hygiene-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-hygiene-list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.35);
}

.about-cred-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.about-cred-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(245, 158, 11, 0.15);
  color: #fff;
}

.about-cred-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #38bdf8);
  flex-shrink: 0;
  opacity: 0.95;
}

@media (max-width: 575.98px) {
  .about-trust-card {
    padding: 1.25rem;
  }

  .about-cred-chip {
    font-size: 0.78rem;
    padding: 0.42rem 0.8rem;
  }
}

@media (max-width: 359.98px) {
  .about-trust-card {
    padding: 1rem;
  }
}
