/* ============================================================
   BirEmek — Tanıtım Sitesi v3
   getviza.ai esintili minimal-premium açılış + scroll-driven
   telefon animasyonları. Aydınlık tema, gerçek marka renkleri.
   ============================================================ */

:root {
  --bg: #F6F9FE;
  --bg-soft: #EDF3FC;
  --white: #FFFFFF;
  --blue: #1E7BF0;
  --blue-deep: #1258C8;
  --blue-logo: #1435D6;
  --indigo: #232E8F;
  --ink: #0F1A4B;
  --muted: #5A6B93;
  --green: #1FAF5A;
  --green-soft: #E4F7EC;
  --sky: #E3F0FF;
  --line: #DCE7F7;
  --card-shadow: 0 18px 44px rgba(18, 72, 180, 0.10);
  --card-shadow-lg: 0 30px 70px rgba(18, 72, 180, 0.16);
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Kaydırma ilerleme çubuğu ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-logo), var(--blue), #53B6FF);
  z-index: 200;
  border-radius: 0 3px 3px 0;
}

/* ---------- Arka plan katmanı ---------- */
.bg-layer { position: fixed; inset: 0; z-index: -1; overflow: hidden; }

.bg-layer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% -12%, rgba(30, 123, 240, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 40% at 105% 68%, rgba(20, 53, 214, 0.07), transparent 65%),
    linear-gradient(180deg, #F8FBFF, var(--bg) 40%, #F1F7FE);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite alternate;
  will-change: transform;
}
.orb-1 { width: 460px; height: 460px; background: rgba(30, 123, 240, 0.22); top: -12%; left: -6%; }
.orb-2 { width: 360px; height: 360px; background: rgba(56, 189, 248, 0.2); bottom: -14%; right: -8%; animation-duration: 24s; animation-delay: -7s; }
.orb-3 { width: 240px; height: 240px; background: rgba(31, 175, 90, 0.12); top: 44%; right: 16%; animation-duration: 28s; animation-delay: -13s; }

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(56px, 38px) scale(1.1); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 123, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 123, 240, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 25%, transparent 72%);
}

/* ---------- Logo ---------- */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-goggles { width: 46px; height: auto; }
.logo-word {
  font-family: var(--font-head); font-size: 1.42rem; color: var(--indigo);
  letter-spacing: -0.02em; font-weight: 300;
}
.logo-word b { font-weight: 800; }

/* ---------- Navigasyon ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(18, 72, 180, 0.10);
}
.nav-inner {
  width: min(1180px, 92%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 600;
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0;
  background: linear-gradient(90deg, var(--blue), #53B6FF);
  border-radius: 2px; transition: width .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta-wrap { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 12px 24px; border-radius: 999px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, #2E9BFF, var(--blue) 55%, var(--blue-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(30, 123, 240, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(30, 123, 240, 0.5), inset 0 1px 0 rgba(255,255,255,.3); transform: translateY(-2px); }
.btn-ghost {
  background: var(--white); color: var(--blue-deep);
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 18px rgba(18, 72, 180, 0.07);
}
.btn-ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- HERO (getviza tarzı: merkezli, minimal, premium) ---------- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  padding: 150px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-copy { max-width: 780px; margin-inline: auto; position: relative; z-index: 5; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 700; color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(18, 72, 180, 0.08);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 175, 90, 0.55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 175, 90, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(31, 175, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 175, 90, 0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.035em;
  margin-bottom: 26px; color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(112%); animation: lineUp .9s cubic-bezier(.22,.9,.3,1) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .14s; }
@keyframes lineUp { to { transform: translateY(0); } }

.grad-text {
  background: linear-gradient(90deg, var(--blue-logo) 0%, var(--blue) 55%, #35A6FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }
.hero-sub strong { color: var(--blue-deep); font-weight: 700; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.trust-item .t-ic {
  width: 28px; height: 28px; border-radius: 9px; flex-shrink: 0;
  background: var(--sky); color: var(--blue-deep);
  display: grid; place-items: center;
}

/* Hero telefon yelpazesi — scroll ile açılır */
.hero-fan {
  position: relative;
  width: min(900px, 96%);
  height: 600px;
  margin-top: 12px;
  pointer-events: none;
}
.fan-phone {
  position: absolute; left: 50%; top: 0;
  will-change: transform;
}
.fan-center { z-index: 3; transform: translateX(-50%); }
.fan-left  { z-index: 2; transform: translateX(-118%) translateY(70px) rotate(-11deg); }
.fan-right { z-index: 2; transform: translateX(18%) translateY(70px) rotate(11deg); }

/* Telefon çerçevesi */
.phone {
  position: relative;
  width: 288px;
  background: #0D1224;
  border-radius: 46px;
  padding: 11px;
  box-shadow: 0 40px 90px rgba(9, 33, 84, 0.32), inset 0 0 0 2px #2A3352;
}
.phone::before {
  content: "";
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 21px; border-radius: 12px; background: #0D1224;
  z-index: 2;
}
.phone img { border-radius: 36px; width: 100%; }
.phone-sm { width: 250px; border-radius: 40px; padding: 9px; }
.phone-sm::before { width: 70px; height: 18px; top: 17px; }
.phone-sm img { border-radius: 32px; }

.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg) 78%);
  z-index: 6; pointer-events: none;
}

/* Yüzen mini kartlar (hero) */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
  display: flex; align-items: center; gap: 12px;
  animation: cardFloat 7s ease-in-out infinite;
  z-index: 5;
}
.fc-label { font-weight: 700; font-size: 0.86rem; color: var(--ink); white-space: nowrap; }
.fc-meta { font-size: 0.74rem; color: var(--muted); white-space: nowrap; }
.fc-stars { color: #F6B21B; letter-spacing: 2px; font-size: 0.9rem; }
.card-score { top: 6%; left: 2%; flex-direction: column; align-items: flex-start; gap: 3px; animation-delay: -1s; }
.card-match { top: 14%; right: 2%; animation-delay: -3.5s; }
.fc-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #1FAF5A);
  display: grid; place-items: center; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.fc-price {
  font-family: var(--font-head); font-weight: 800; color: #fff;
  background: var(--green); border-radius: 10px; padding: 4px 12px; font-size: 0.95rem;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 16px 0;
  background: linear-gradient(90deg, var(--blue-logo), var(--blue) 50%, #2E9BFF);
  position: relative; z-index: 7;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: #fff; white-space: nowrap;
}
.marquee-track i { color: #9ED4FF; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bölüm genel ---------- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(227, 240, 255, 0.55) 16%, rgba(227, 240, 255, 0.55) 84%, transparent); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue-deep);
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(18, 72, 180, 0.07);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-head h2, .split-copy h2 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; margin-bottom: 16px; color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- SCROLLY: yapışkan telefon + adımlar ---------- */
.scrolly { position: relative; }
.scrolly-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.scrolly-steps { display: flex; flex-direction: column; }
.s-step {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0.25; transform: translateX(-8px);
  transition: opacity .5s ease, transform .5s ease;
}
.s-step.active { opacity: 1; transform: translateX(0); }
.s-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, #2E9BFF, var(--blue-deep));
  color: #fff; font-family: var(--font-head); font-weight: 800;
  box-shadow: 0 10px 22px rgba(30, 123, 240, 0.32);
  margin-bottom: 20px;
}
.s-step h3 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.s-step p { color: var(--muted); max-width: 420px; margin-bottom: 18px; }
.s-points { list-style: none; display: grid; gap: 10px; }
.s-points li { padding-left: 32px; position: relative; font-size: 0.94rem; font-weight: 500; color: var(--ink); }
.s-points li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--green-soft); color: var(--green);
  font-weight: 800; font-size: 0.75rem;
  display: grid; place-items: center;
}
.s-step .phone { display: none; }

.scrolly-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.scrolly-phone { width: 300px; }
.scrolly-phone .screen-wrap {
  position: relative; overflow: hidden; border-radius: 36px;
  aspect-ratio: 946 / 2048;
}
.scrolly-phone .s-screen {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 36px;
  opacity: 0; transform: translateY(26px) scale(.97);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.9,.3,1);
}
.scrolly-phone .s-screen.on { opacity: 1; transform: translateY(0) scale(1); }

/* EMEKTAR küçük detay: yapışkan telefonun yanındaki mini rozet */
.emektar-mini {
  position: absolute; right: 6%; bottom: 18%;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px 8px 8px;
  box-shadow: var(--card-shadow);
  animation: cardFloat 6s ease-in-out infinite;
}
.emektar-mini img { width: 40px; height: 40px; object-fit: contain; }
.emektar-mini span { font-size: 0.8rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.emektar-mini small { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 500; }

/* ---------- Özellik kartları ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  transform-style: preserve-3d;
}
.feature-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(30, 123, 240, 0.08), transparent 45%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { box-shadow: var(--card-shadow-lg); }
.f-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, #2E9BFF, var(--blue-deep));
  box-shadow: 0 10px 22px rgba(30, 123, 240, 0.35);
  display: grid; place-items: center; color: #fff;
  margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.12rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Split bölümler ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-copy .eyebrow { margin-bottom: 16px; }
.split-copy p { color: var(--muted); margin-bottom: 24px; }

.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { padding-left: 34px; position: relative; color: var(--ink); font-size: 0.97rem; font-weight: 500; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--green-soft);
  color: var(--green); font-weight: 800; font-size: 0.8rem;
  display: grid; place-items: center;
}

/* İtibar kartı */
.rep-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--card-shadow-lg);
  max-width: 460px; margin-inline: auto;
  will-change: transform;
}
.rep-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #53B6FF);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; color: #fff;
}
.rep-head b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.rep-head span { font-size: 0.8rem; color: var(--muted); }
.badge-uygun {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700; color: var(--green);
  background: var(--green-soft); border-radius: 999px; padding: 4px 12px;
}
.badge-uygun::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.rep-score-row { display: flex; gap: 26px; align-items: center; margin-bottom: 24px; }
.score-ring-wrap { position: relative; flex-shrink: 0; }
.score-ring { transform: rotate(-90deg); }
.ring-progress { transition: stroke-dashoffset 1.6s cubic-bezier(.22,.9,.3,1); }
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-center b { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.ring-center span { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.sub-scores { flex: 1; display: grid; gap: 14px; }
.sub { display: grid; grid-template-columns: 72px 1fr 30px; align-items: center; gap: 10px; font-size: 0.8rem; }
.sub span { color: var(--muted); font-weight: 600; }
.sub b { text-align: right; color: var(--blue-deep); }
.bar { height: 7px; border-radius: 4px; background: var(--sky); overflow: hidden; }
.bar i {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), #53B6FF);
}
html.js .in-view .bar i, html:not(.js) .bar i { width: var(--w); transition: width 1.4s cubic-bezier(.22,.9,.3,1) .3s; }

.ai-summary {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 8px;
}
.ai-summary p { color: var(--ink); font-size: 0.88rem; margin: 0; min-height: 3.4em; }
.ai-summary p::after { content: "▍"; color: var(--blue); animation: blink 1s steps(1) infinite; }
.ai-summary p.done::after { content: ""; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- PODCAST ---------- */
.podcast-card {
  background: linear-gradient(160deg, #0F1A4B, #16277E 55%, var(--blue-deep));
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(15, 26, 75, 0.35);
  max-width: 480px; margin-inline: auto;
  color: #fff;
  position: relative; overflow: hidden;
}
.podcast-card::before {
  content: "";
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 182, 255, 0.35), transparent 65%);
  top: -120px; right: -80px;
}
.pod-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; position: relative; }
.pod-cover {
  width: 74px; height: 74px; border-radius: 18px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid; place-items: center;
}
.pod-cover svg { width: 46px; }
.pod-head b { font-family: var(--font-head); font-size: 1.1rem; display: block; }
.pod-head span { font-size: 0.8rem; color: #B9CCF2; }

.eq { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-bottom: 22px; position: relative; }
.eq span {
  flex: 1; border-radius: 3px;
  background: linear-gradient(180deg, #53B6FF, #2E9BFF);
  animation: eqBounce 1.2s ease-in-out infinite alternate;
  min-height: 15%;
}
.eq span:nth-child(3n)   { animation-duration: 0.9s; animation-delay: -0.3s; }
.eq span:nth-child(3n+1) { animation-duration: 1.4s; animation-delay: -0.6s; }
.eq span:nth-child(5n)   { animation-duration: 1.1s; animation-delay: -0.9s; }
@keyframes eqBounce { from { height: 15%; } to { height: 100%; } }

.pod-episodes { display: grid; gap: 10px; position: relative; }
.pod-ep {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 12px 16px;
  transition: background .25s ease, transform .25s ease;
}
.pod-ep:hover { background: rgba(255, 255, 255, 0.14); transform: translateX(4px); }
.pod-ep .ep-play {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid; place-items: center; color: #fff;
}
.pod-ep b { font-size: 0.88rem; font-weight: 700; display: block; }
.pod-ep span { font-size: 0.72rem; color: #9DB4E8; }
.pod-ep .ep-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #53B6FF; background: rgba(83, 182, 255, 0.14);
  border-radius: 999px; padding: 4px 10px;
}

.pod-feats { display: grid; gap: 14px; }
.pf {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(18, 72, 180, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pf:hover { transform: translateX(6px); box-shadow: var(--card-shadow); }
.pf-ic {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--sky); color: var(--blue-deep);
  display: grid; place-items: center;
}
.pf b { font-family: var(--font-head); font-size: 0.97rem; display: block; }
.pf span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sektörler ---------- */
.sector-cloud {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  max-width: 880px; margin: 0 auto 70px;
}
.chip {
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(18, 72, 180, 0.06);
  padding: 12px 22px; border-radius: 999px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: default;
}
.chip:hover { transform: translateY(-4px) scale(1.04); border-color: var(--blue); box-shadow: var(--card-shadow); }
.chip-hot {
  background: linear-gradient(135deg, #2E9BFF, var(--blue-deep));
  border-color: transparent; color: #fff;
  box-shadow: 0 10px 24px rgba(30, 123, 240, 0.3);
}

.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: linear-gradient(135deg, var(--blue-logo), var(--blue) 55%, #2E9BFF);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  box-shadow: 0 26px 60px rgba(20, 53, 214, 0.3);
}
.stat { text-align: center; color: #fff; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
.stat span { font-size: 0.85rem; color: #CBE4FF; }

/* ---------- CTA (merkezli, minimal) ---------- */
.cta-section { padding-bottom: 130px; }
.cta-box {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #0F1A4B, #16277E 45%, var(--blue-deep));
  border-radius: 32px;
  padding: 72px 40px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(15, 26, 75, 0.4);
}
.cta-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 182, 255, 0.32), transparent 65%);
  top: -260px; left: 50%; transform: translateX(-50%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: .75; transform: translateX(-50%) scale(.97); } to { opacity: 1; transform: translateX(-50%) scale(1.05); } }
.cta-copy { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-emektar {
  width: 76px; height: 76px; object-fit: contain; margin: 0 auto 18px;
  animation: cardFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}
.cta-copy h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: #fff; }
.cta-copy h2 .grad-text { background: linear-gradient(90deg, #53B6FF, #9ED4FF); -webkit-background-clip: text; background-clip: text; }
.cta-copy p { color: #B9CCF2; margin-bottom: 32px; }

.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px; padding: 12px 22px;
  color: #fff; text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.store-btn:hover { background: rgba(255, 255, 255, 0.16); border-color: #53B6FF; transform: translateY(-3px); }
.store-btn small { display: block; font-size: 0.68rem; color: #9DB4E8; line-height: 1.2; }
.store-btn b { font-family: var(--font-head); font-size: 1.02rem; }

.cta-socials { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.cta-socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; place-items: center; color: #fff;
  transition: transform .25s ease, background .25s ease;
}
.cta-socials a:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.2); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col b { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 6px; color: var(--ink); }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color .25s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.8rem;
}

/* ---------- Reveal animasyonları ---------- */
html.js .reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s ease var(--d, 0s), transform .8s cubic-bezier(.22,.9,.3,1) var(--d, 0s);
}
html.js .reveal.in-view, html.js .in-view .reveal { opacity: 1; transform: translateY(0); }

/* Not: İşletim sistemi "hareket azaltma" ayarı bilinçli olarak dikkate
   alınmıyor — animasyonlar sitenin kimliğinin parçası (site sahibi tercihi). */

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .fan-left  { transform: translateX(-112%) translateY(70px) rotate(-11deg); }
  .fan-right { transform: translateX(12%) translateY(70px) rotate(11deg); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-rev .split-visual { order: 0; }
  .hero { padding-top: 130px; }
  .hero-fan { height: auto; padding-bottom: 30px; }
  .fan-phone { position: relative; left: auto; top: auto; }
  .fan-left, .fan-right { display: none; }
  .fan-center { transform: none !important; margin-inline: auto; }
  .card-score { left: -1%; top: 2%; }
  .card-match { right: -1%; top: auto; bottom: 8%; }

  /* Scrolly: mobilde her adımın kendi telefonu */
  .scrolly-grid { grid-template-columns: 1fr; }
  .scrolly-sticky { display: none; }
  .s-step { min-height: 0; padding: 40px 0; opacity: 1; transform: none; }
  .s-step .phone { display: block; margin: 28px auto 0; }

  .cta-box { padding: 56px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; top: 64px; right: 4%; left: 4%;
    flex-direction: column; gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px; padding: 18px;
    box-shadow: var(--card-shadow-lg);
    opacity: 0; pointer-events: none; transform: translateY(-12px);
    transition: opacity .3s, transform .3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 10px 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--sky); }
  .nav-links a::after { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hero-trust { gap: 12px; }
  .float-card { transform: scale(.85); }
  .rep-score-row { flex-direction: column; align-items: center; text-align: center; }
  .sub-scores { width: 100%; }
  .phone { width: 260px; }
  .scrolly-phone { width: 260px; }
}

/* ============================================================
   v4 — Fare takibi, kıvılcımlar, parlamalar
   ============================================================ */

/* Özel imleç: nokta + iz bırakan halka (yalnızca fare + JS) */
html.custom-cursor, html.custom-cursor * { cursor: none !important; }

.cursor-dot {
  position: fixed; left: -100px; top: -100px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  opacity: 0.9;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 300;
  transition: opacity .3s ease;
}
.cursor-ring {
  position: fixed; left: -100px; top: -100px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(30, 123, 240, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 299;
  transition: width .25s ease, height .25s ease, background .25s ease, border-color .25s ease, opacity .3s ease;
}
.cursor-ring.hovering {
  width: 40px; height: 40px;
  background: rgba(30, 123, 240, 0.05);
  border-color: rgba(30, 123, 240, 0.6);
}

/* Arka plan katmanı fareyle süzülür (JS transform basar) */
.bg-layer { will-change: transform; }

/* Hero kıvılcımları */
.spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #9ED4FF, rgba(30, 123, 240, 0.55));
  box-shadow: 0 0 10px rgba(83, 182, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  animation: sparkFloat 8s linear infinite;
  z-index: 1;
}
@keyframes sparkFloat {
  0%   { transform: translateY(0) scale(.4); opacity: 0; }
  12%  { opacity: .9; }
  55%  { opacity: .5; }
  100% { transform: translateY(-46vh) scale(1.1); opacity: 0; }
}

/* Telefon ekranlarında cam parlaması süpürmesi */
.phone { overflow: hidden; }
.phone::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.13) 50%, transparent 58%);
  background-size: 240% 240%;
  background-position: 120% 120%;
  animation: glareSweep 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes glareSweep {
  0%, 55%  { background-position: 130% 130%; }
  85%, 100% { background-position: -40% -40%; }
}

/* Gradyan başlıklar ışıldar */
.grad-text {
  background-size: 220% 100%;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 90% 0; }
}

/* Ana butonlarda parlama süpürmesi */
.btn { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 40%;
  left: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(320%) skewX(-18deg); }

/* Marquee kaydırma hızıyla eğilir (JS skew basar) */
.marquee { transition: transform .22s ease-out; will-change: transform; }

/* Dokunmatik cihazlarda imleç efektleri kapalı */
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   AÇILIŞ EKRANI — logo ortada büyür, parlar, sol üstteki
   yerine yumuşakça uçar
   ============================================================ */
.intro-bg {
  position: fixed; inset: 0; z-index: 400;
  background: linear-gradient(180deg, #F8FBFF, #EEF4FC 60%, #EAF1FB);
  transition: opacity .7s ease .12s;
}
.intro-bg.fade { opacity: 0; }

.intro-wrap {
  position: fixed; inset: 0; z-index: 401;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.intro-core {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  transform: scale(0.55);
  transition: transform 1s cubic-bezier(.22, .9, .3, 1), opacity .65s ease;
  will-change: transform, opacity;
}
.intro-core.fly {
  transition: transform .85s cubic-bezier(.62, .05, .28, 1), opacity .65s ease;
}

/* Logonun arkasındaki yumuşak ışık halesi */
.intro-halo {
  position: absolute; left: 50%; top: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 123, 240, 0.16), rgba(83, 182, 255, 0.07) 45%, transparent 68%);
  filter: blur(4px);
  animation: haloPulse 1.8s ease-in-out infinite alternate;
  z-index: -1;
  transition: opacity .35s ease;
}
@keyframes haloPulse {
  from { transform: translate(-50%, -50%) scale(.9); opacity: .75; }
  to   { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
.intro-core.fly .intro-halo { opacity: 0; }

/* Logo üzerinden geçen parlama süpürmesi */
.intro-shine {
  position: absolute; inset: -14% -8%;
  overflow: hidden;
  pointer-events: none;
  border-radius: 14px;
}
.intro-shine::after {
  content: "";
  position: absolute; top: -30%; bottom: -30%;
  width: 30%; left: -45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: skewX(-18deg);
  animation: introShine 1s ease .55s forwards;
}
@keyframes introShine { to { left: 140%; } }

/* Açılış sürerken: gerçek nav logosu gizli, hero bekler */
html.intro-play .nav .nav-logo { opacity: 0; }
html.intro-done .nav .nav-logo { opacity: 1; }
html.js.intro-play .hero .reveal {
  transition: none !important;
  opacity: 0 !important;
  transform: translateY(34px) !important;
}
html.js.intro-play .hero-title .line > span { animation-play-state: paused; }
html.js.intro-play .hero-fan { opacity: 0; }
html.js .hero-fan { transition: opacity .8s ease .15s; }
