/* ═══ SON ═══ */
.son {
  position: relative;
  background: linear-gradient(178deg, #4A7291 0%, #31506E 58%, #22405E 100%);
  text-align: center;
  color: #fff;
  padding: clamp(100px, 14vh, 170px) 24px clamp(90px, 12vh, 150px);
  overflow: hidden;
}
.son::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, rgba(28,49,69,0), var(--gece));
  pointer-events: none;
}
.son > :not(.hero-particles) { position: relative; z-index: 1; }
.son-sapling {
  width: 64px; height: 64px;
  animation: grow 1.2s var(--ease-out) both;
}
.js .son-sapling { animation-play-state: paused; }
.js .son.in-view .son-sapling { animation-play-state: running; }
@keyframes grow {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  60% { transform: scale(1.15) translateY(-4px); }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.son h2 { color: #fff; margin-top: 22px; }
.son-sub {
  margin-top: 14px;
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: rgba(255,255,255,.85);
}
.son-sub strong { font-variant-numeric: tabular-nums; }

.son-form {
  position: relative;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
}
.son-form input {
  width: min(340px, 82vw);
  height: 58px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  padding: 0 24px;
  font-family: var(--font); font-size: 15.5px;
  color: #fff;
  transition: background .3s, border-color .3s;
}
.son-form input::placeholder { color: rgba(255,255,255,.65); }
.son-form input:focus {
  outline: none;
  background: #fff; color: var(--ink);
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}
.son-form input:focus::placeholder { color: var(--soluk-metin); }
.son-form[hidden] { display: none; }
.son-done { margin-top: 22px; font-size: 16px; font-weight: 600; }
.son-note { margin-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* bekleme listesi rıza satırı */
.son-consent {
  display: flex; align-items: flex-start; gap: 9px;
  justify-content: center;
  max-width: 460px;
  margin: 16px auto 0;
  font-size: 12.5px; color: rgba(255,255,255,.85);
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
}
.son-consent input {
  width: 16px; height: 16px; flex: none;
  margin-top: 2px;
  accent-color: var(--filiz);
}
.son-consent a { color: #fff; font-weight: 600; }
