/* =========================================================
   DEĞİŞİM GRUP — Yapım Aşamasında (sade sürüm)
   Sayfada yalnızca başlık + yasal bağlantılar bulunur.
   ========================================================= */

:root {
  --orange: #f58220;
  --orange-2: #ff9d3d;
  --orange-dark: #dd6c0a;
  --ink: #23262b;
  --ink-2: #4a4f57;
  --gray: #7b818b;
  --line: #e8eaee;
  --bg: #ffffff;
  --ff-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1000px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Arka plan katmanları ---------- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  will-change: transform;
}
.blob--1 {
  width: 46vw; height: 46vw; min-width: 320px; min-height: 320px;
  top: -14vw; right: -10vw;
  background: radial-gradient(circle at 35% 35%, rgba(245,130,32,.42), rgba(245,130,32,0) 68%);
  animation: drift1 22s ease-in-out infinite;
}
.blob--2 {
  width: 40vw; height: 40vw; min-width: 280px; min-height: 280px;
  bottom: -16vw; left: -12vw;
  background: radial-gradient(circle at 60% 40%, rgba(123,129,139,.30), rgba(123,129,139,0) 70%);
  animation: drift2 26s ease-in-out infinite;
}
.blob--3 {
  width: 28vw; height: 28vw; min-width: 220px; min-height: 220px;
  top: 40%; left: 44%;
  background: radial-gradient(circle at 50% 50%, rgba(255,157,61,.22), rgba(255,157,61,0) 70%);
  animation: drift1 30s ease-in-out infinite reverse;
}

@keyframes drift1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-4%, 5%, 0) scale(1.08); }
}
@keyframes drift2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(5%, -4%, 0) scale(1.1); }
}

.grid-tex {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(35,38,43,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,38,43,.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 42%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 42%, #000 20%, transparent 78%);
}

/* ---------- İskelet ---------- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Başlık alanı ---------- */
.hero {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 0 70px;
}

.hero h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 7.6vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero h1 .shine {
  background: linear-gradient(100deg, var(--orange-dark) 8%, var(--orange) 38%, #ffc48a 50%, var(--orange) 62%, var(--orange-dark) 92%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6.5s linear infinite;
}
@keyframes shine {
  0%   { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}

/* başlığın altındaki ince akan çizgi */
.line {
  display: block;
  width: min(220px, 46vw);
  height: 2px;
  margin: 38px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(245,130,32,0), var(--orange), rgba(245,130,32,0));
  background-size: 220% 100%;
  animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { background-position: 130% 0; opacity: .35; }
  50%      { background-position: -30% 0; opacity: 1; }
}

/* ---------- Yasal alan ---------- */
.site-foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: rgba(255,255,255,.86);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 38px 0 30px;
}

.foot-title {
  font-family: var(--ff-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 18px;
  text-align: center;
}

.legal-links {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
}
.legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14.2px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.legal-links a:hover {
  color: var(--orange-dark);
  background: rgba(245,130,32,.07);
  border-color: rgba(245,130,32,.2);
  transform: translateY(-1px);
}
.legal-links .ext { width: 12.5px; height: 12.5px; opacity: .55; flex: none; }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12.8px;
  color: var(--gray);
}
.foot-bottom .legal-name { color: var(--ink-2); font-weight: 500; }
.foot-bottom .mersis b { color: var(--ink-2); font-weight: 600; }
.foot-bottom .sep { color: var(--line); }

/* ---------- Giriş animasyonu ---------- */
.rise {
  opacity: 0;
  transform: translateY(24px);
  animation: rise .95s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .5s; }

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 64px 0 52px; }
  .hero h1 { letter-spacing: -.025em; }
  .line { margin-top: 30px; }
  .site-foot { padding: 30px 0 26px; }
  .legal-links a { font-size: 13.6px; padding: 6px 11px; }
  .foot-bottom .sep { display: none; }
  .foot-bottom { flex-direction: column; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rise { opacity: 1; transform: none; }
}
