:root {
  /* Canlı ama kurumsal: indigo → cyan vurgu, sıcak-mavi zemin */
  --bg-page: #eef2ff;
  --bg-card: #ffffff;
  --bg-section: #e4e9fd;
  --bg-accent-soft: #e8eeff;
  --border-default: #c5ceef;
  --border-light: #d0daf5;
  --text-primary: #0f1629;
  --text-body: #1e2438;
  --text-muted: #4a5270;
  --accent: #4353ff;
  --accent-hover: #2f3ddb;
  --accent-soft: #eef1ff;
  --accent-vivid-mid: #6366f1;
  --accent-pop: #06b6d4;
  --success: #059669;
  --success-soft: #d1fae5;
  --danger: #dc2626;
  --shadow-sm: 0 1px 3px rgba(15, 22, 41, 0.06);
  --shadow-md: 0 4px 14px rgba(67, 83, 255, 0.08);
  --shadow-lg: 0 10px 32px rgba(15, 22, 41, 0.1);
  --shadow-accent: 0 4px 14px rgba(67, 83, 255, 0.35), 0 2px 8px rgba(6, 182, 212, 0.2);
}

* {
  box-sizing: border-box;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Opacity 0 kullanma: gözlemci/JS kaçırınca metin görünmez kalıyordu */
.fade-in-up {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    transform: none;
    transition: none;
  }
}

/* app.css koyu gövde stilleri — açık tema (main layout) ile çakışmayı kes */
body.min-h-screen.bg-ugi-bg.text-ugi-text {
  background: linear-gradient(165deg, #f5f7ff 0%, #eef2ff 38%, #e8ecfc 100%) fixed !important;
  color: var(--text-primary) !important;
}

main {
  color: var(--text-body);
}

article .service-prose,
article .service-prose p,
article .service-prose li,
article .legal-prose,
article .legal-prose p {
  color: var(--text-body);
}

article .service-prose strong,
article .legal-prose strong {
  color: var(--text-primary);
}

.legal-prose h2 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.legal-prose p,
.legal-prose li {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.legal-prose ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.ugi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ugi-card:hover {
  border-color: #b8c5ff;
  box-shadow: var(--shadow-md);
}

.ugi-logo-strip img {
  filter: grayscale(0.45);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.ugi-logo-strip a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

.service-prose h2,
.service-prose h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text-primary);
}
.service-prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}
.service-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.service-prose p {
  margin-bottom: 1rem;
  font-size: 0.941rem;
  line-height: 1.65;
  color: var(--text-body);
}
.service-prose a {
  color: var(--accent);
  font-weight: 500;
}
.service-prose a:hover {
  text-decoration: underline;
}
