@font-face{font-family:'Netflix Sans';font-weight:100;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff2) format('woff2')}
@font-face{font-family:'Netflix Sans';font-weight:300;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Lt.woff2) format('woff2')}
@font-face{font-family:'Netflix Sans';font-weight:400;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Rg.woff2) format('woff2')}
@font-face{font-family:'Netflix Sans';font-weight:700;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Md.woff2) format('woff2')}
@font-face{font-family:'Netflix Sans';font-weight:800;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Bd.woff2) format('woff2')}
@font-face{font-family:'Netflix Sans';font-weight:900;font-display:swap;src:url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Blk.woff2) format('woff2')}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --f: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --o: #f97316;
  --o2: #c2580d;
  --bg: #080808;
  --s1: #111111;
  --s2: #181818;
  --bdr: rgba(255,255,255,0.07);
  --txt: #f5f5f5;
  --muted: rgba(245,245,245,0.42);
}

body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 62px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
}

.nav-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

/* Logo — sol */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo-mark svg { display: block; }
.logo-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--txt);
  line-height: 1;
}
.logo-name b { color: var(--o); font-weight: 900; }

/* Orta — menü */
.nav-mid { text-align: center; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--txt); }

/* Sağ — butonlar */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn-outline {
  font-family: var(--f);
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(245,245,245,0.72);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 7px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color .18s, color .18s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--o); color: var(--txt); }

.btn-fill {
  font-family: var(--f);
  font-size: 13.5px;
  font-weight: 700;
  color: #000;
  background: var(--o);
  border: none;
  border-radius: 7px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background .18s, transform .1s;
  white-space: nowrap;
}
.btn-fill:hover { background: var(--o2); }
.btn-fill:active { transform: scale(.97); }

.nav-user-name {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(245,245,245,0.88);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-name--mobile {
  max-width: 120px;
  font-size: 13px;
}

/* Mobil navbar ikonları */
.nav-right-mobile {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.13);
  background: transparent;
  color: rgba(245,245,245,0.85);
  cursor: pointer;
  transition: border-color .18s, color .18s, background .18s, transform .1s;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-icon-btn:hover {
  border-color: var(--o);
  color: var(--txt);
}
.nav-icon-btn:active { transform: scale(.95); }

.nav-icon-btn--fill {
  background: var(--o);
  border-color: transparent;
  color: #000;
}
.nav-icon-btn--fill:hover {
  background: var(--o2);
  color: #000;
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,.11) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 38%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 38%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.22);
  border-radius: 100px;
  padding: 5px 15px 5px 11px;
  font-size: 12px;
  font-weight: 400;
  color: var(--o);
  letter-spacing: .03em;
  margin-bottom: 30px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--o);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:.35; }
}

.hero-h1 {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -2.5px;
  color: var(--txt);
  margin-bottom: 22px;
}
.hero-h1 span { color: var(--o); }

.hero-sub {
  font-size: clamp(14px, 1.8vw, 16.5px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 38px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  background: var(--o);
  border: none;
  border-radius: 9px;
  padding: 14px 30px;
  cursor: pointer;
  transition: background .18s, transform .12s;
}
.btn-hero:hover { background: var(--o2); }
.btn-hero:active { transform: scale(.97); }

.btn-hero-ghost {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--bdr);
  border-radius: 9px;
  padding: 14px 30px;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}
.btn-hero-ghost:hover { color: var(--txt); border-color: rgba(255,255,255,.2); }

/* stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--bdr);
  padding-top: 36px;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 110px;
  max-width: 160px;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--bdr);
}
.stat-n {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--o);
  line-height: 1;
}
.stat-l {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: .03em;
}

/* ─── DUYURULAR ─── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 28px;
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}

.card {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover { border-color: rgba(249,115,22,.28); }

.card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(249,115,22,.1);
  color: var(--o);
  border-radius: 5px;
  padding: 3px 9px;
  width: fit-content;
}

.card h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--txt);
}

.card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
}

.card-date {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(245,245,245,.18);
}

/* ─── NASIL ÇALIŞIR ─── */
.section--steps { padding-top: 48px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color .2s;
}
.step:hover { border-color: rgba(249,115,22,.28); }

.step-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: rgba(249,115,22,.35);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--txt);
}

.step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── AVANTAJLAR ─── */
.section--features {
  border-top: 1px solid var(--bdr);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.feature {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s;
}
.feature:hover { border-color: rgba(249,115,22,.28); }

.feature-icon {
  display: block;
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1;
}

.feature h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--txt);
}

.feature p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── GÖREV KARTLARI ─── */
.section--tasks { border-top: 1px solid var(--bdr); }

.task-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.task-card {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s;
}
.task-card:hover { border-color: rgba(249,115,22,.28); }

.task-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

.task-reward {
  margin-left: auto;
  font-size: 18px;
  font-weight: 900;
  color: var(--o);
  letter-spacing: -.5px;
}

.task-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--txt);
}

.task-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.task-meta span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdr);
  border-radius: 5px;
  padding: 3px 8px;
}

.task-card-link {
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  color: var(--o);
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color .18s;
}
.task-card-link:hover { color: var(--o2); }

/* ─── GÜVEN ─── */
.section--trust {
  padding-top: 48px;
  padding-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 28px 24px;
}

.trust-item {
  text-align: center;
  padding: 8px 12px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--bdr);
}

.trust-item strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--o);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* ─── CTA ─── */
.cta-band {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  background: linear-gradient(135deg, rgba(249,115,22,.08) 0%, transparent 60%);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* ─── GÖREV VER ─── */
.section--gorev-ver {
  border-top: 1px solid var(--bdr);
  padding-top: 48px;
}

.gorev-ver-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--bdr);
  border-radius: 18px;
  overflow: hidden;
  background: var(--s1);
}

.gorev-ver-content {
  padding: 32px 28px;
}

.gorev-ver-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 18px;
}

.gorev-ver-desc strong {
  color: var(--txt);
  font-weight: 600;
}

.gorev-ver-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.gorev-ver-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.gorev-ver-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o);
}

.gorev-ver-notice {
  font-size: 12.5px;
  line-height: 1.65;
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  max-width: 520px;
}

.gorev-ver-notice strong {
  color: #fecaca;
  font-weight: 700;
}

.gorev-ver-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-gorev-ver {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: #25D366;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  text-decoration: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.35);
}

.btn-gorev-ver:hover {
  background: #1fb855;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.45);
}

.btn-gorev-ver:active { transform: scale(0.98); }

.gorev-ver-phone {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--o);
  font-variant-numeric: tabular-nums;
}

.gorev-ver-side {
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(249,115,22,0.14) 0%, rgba(249,115,22,0.04) 100%);
  border-left: 1px solid var(--bdr);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gorev-ver-badge {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--o);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.gorev-ver-side-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--txt);
  margin-bottom: 10px;
}

.gorev-ver-side-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--bdr);
  padding: 36px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
}
.footer-links a:hover { color: var(--txt); }
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,245,245,.18);
}

/* ─── MODALLER ─── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.overlay.on { opacity: 1; pointer-events: all; }

.modal {
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 36px 30px 32px;
  width: 100%;
  max-width: 390px;
  position: relative;
  transform: translateY(14px) scale(.98);
  transition: transform .25s cubic-bezier(.22,.82,.12,1);
}
.overlay.on .modal { transform: translateY(0) scale(1); }

.modal-x {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  color: var(--muted); font-size: 19px; line-height: 1;
  cursor: pointer; padding: 5px; border-radius: 5px;
  transition: color .15s, background .15s;
}
.modal-x:hover { color: var(--txt); background: rgba(255,255,255,.06); }

.modal-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 5px;
}
.modal-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

.field { margin-bottom: 13px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(245,245,245,.4);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 400;
  color: var(--txt);
  outline: none;
  transition: border-color .18s;
  -webkit-appearance: none;
}
.field input:focus { border-color: rgba(249,115,22,.55); }
.field input::placeholder { color: rgba(245,245,245,.2); }

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 20px;
}
.check-row input[type=checkbox] { accent-color: var(--o); width: 15px; height: 15px; cursor: pointer; }
.check-row label { font-size: 13px; font-weight: 300; color: var(--muted); cursor: pointer; }

.btn-modal {
  width: 100%;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  background: var(--o);
  border: none;
  border-radius: 9px;
  padding: 13px;
  cursor: pointer;
  transition: background .18s, transform .1s;
  margin-bottom: 16px;
}
.btn-modal:hover { background: var(--o2); }
.btn-modal:active { transform: scale(.97); }

.modal-sw {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}
.modal-sw button {
  background: none; border: none;
  color: var(--o);
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

/* ─── MOBİL ALT BAR ─── */
.mob-bar,
.mob-overlay,
.mob-drawer {
  display: none;
}

.mob-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(8,8,8,.97);
  border-top: 1px solid var(--bdr);
  z-index: 600;
  align-items: center;
  justify-content: center;
}

.mob-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}
.mob-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.mob-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-burger.open span:nth-child(2) { opacity: 0; }
.mob-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 590;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.mob-overlay.on { opacity: 1; pointer-events: all; }

.mob-drawer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #111;
  border-top: 1px solid var(--bdr);
  border-radius: 16px 16px 0 0;
  z-index: 595;
  padding: 20px 20px 24px;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.mob-drawer.on { transform: translateY(0); }

.mob-handle {
  width: 34px; height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  margin: 0 auto 22px;
}

.mob-links { display: flex; flex-direction: column; gap: 8px; }
.mob-links a,
.mob-links button {
  display: block;
  width: 100%;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 400;
  color: rgba(245,245,245,.65);
  background: transparent;
  border: 1px solid var(--bdr);
  border-radius: 9px;
  padding: 13px 18px;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: color .18s, border-color .18s;
}
.mob-links a:hover,
.mob-links button:hover { color: var(--txt); border-color: rgba(255,255,255,.14); }

.mob-links .mob-orange {
  background: var(--o);
  color: #000;
  font-weight: 700;
  border-color: transparent;
}
.mob-links .mob-orange:hover { background: var(--o2); border-color: transparent; color: #000; }

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }
  .nav-mid { display: none; }
  .nav-right--desktop { display: none; }
  .nav-right-mobile { display: flex; }
  .mob-bar { display: flex; }
  .mob-overlay { display: block; }
  .mob-drawer { display: block; bottom: 56px; }
  body { padding-bottom: 56px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 16px; }
  .stat + .stat::before { display: none; }
  .stat { padding: 0 12px; }
  .section { padding: 52px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero, .btn-hero-ghost { width: 100%; max-width: 320px; }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
  }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--bdr); }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--bdr); padding-top: 16px; }
  .cta-inner { padding: 48px 20px; }
  .gorev-ver-box { grid-template-columns: 1fr; }
  .gorev-ver-side {
    border-left: none;
    border-top: 1px solid var(--bdr);
  }
  .gorev-ver-content,
  .gorev-ver-side { padding: 24px 20px; }
}

/* Laravel entegrasyonu */
.home-page { min-height: 100vh; }
.field-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 5px;
}
.field-optional {
  color: rgba(245,245,245,.2);
  font-weight: 300;
  font-size: 10px;
}
.home-flash {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.home-flash-ok {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  color: #86efac;
}
a.btn-hero, a.btn-fill { text-align: center; }

/* Tema değiştirici */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(245,245,245,0.75);
  cursor: pointer;
  transition: color .18s, border-color .18s;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--txt); border-color: var(--o); }

.nav-right--desktop .theme-toggle,
.nav-right-mobile .theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

/* Açık tema — anasayfa */
html[data-theme="light"] body.home-page {
  background: #f8fafc;
  color: #0f172a;
  --bg: #f8fafc;
  --s1: #ffffff;
  --s2: #f1f5f9;
  --bdr: rgba(15, 23, 42, 0.08);
  --txt: #0f172a;
  --muted: rgba(15, 23, 42, 0.55);
}

html[data-theme="light"] body.home-page header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .hero-glow { opacity: 0.35; }
html[data-theme="light"] body.home-page .hero-grid { opacity: 0.2; }

html[data-theme="light"] body.home-page .btn-outline,
html[data-theme="light"] body.home-page .btn-hero-ghost {
  color: rgba(15, 23, 42, 0.72);
  border-color: rgba(15, 23, 42, 0.14);
}

html[data-theme="light"] body.home-page .nav-icon-btn,
html[data-theme="light"] body.home-page .theme-toggle {
  border-color: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.7);
}

html[data-theme="light"] body.home-page .nav-user-name {
  color: rgba(15, 23, 42, 0.85);
}

html[data-theme="light"] body.home-page .card,
html[data-theme="light"] body.home-page .step,
html[data-theme="light"] body.home-page .feature,
html[data-theme="light"] body.home-page .task-card,
html[data-theme="light"] body.home-page .trust-grid,
html[data-theme="light"] body.home-page .gorev-ver-box {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .card h3,
html[data-theme="light"] body.home-page .step h3,
html[data-theme="light"] body.home-page .feature h3,
html[data-theme="light"] body.home-page .task-card h3,
html[data-theme="light"] body.home-page .sec-title,
html[data-theme="light"] body.home-page .cta-inner h2 {
  color: #0f172a;
}

html[data-theme="light"] body.home-page footer {
  background: #fff;
  border-top-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .footer-links a {
  color: rgba(15, 23, 42, 0.55);
}

html[data-theme="light"] body.home-page .mob-bar {
  background: rgba(255, 255, 255, 0.98);
  border-top-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .mob-drawer,
html[data-theme="light"] body.home-page .mob-overlay + .mob-drawer {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .mob-links a,
html[data-theme="light"] body.home-page .mob-links button {
  color: rgba(15, 23, 42, 0.65);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .modal {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] body.home-page .modal-title { color: #0f172a; }
html[data-theme="light"] body.home-page .modal-desc,
html[data-theme="light"] body.home-page .field label { color: rgba(15, 23, 42, 0.65); }

html[data-theme="light"] body.home-page .field input {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

html[data-theme="light"] body.home-page .overlay { background: rgba(15, 23, 42, 0.45); }

html[data-theme="light"] body.home-page .cta-band {
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 60%);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] body.home-page .gorev-ver-notice {
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.85);
  border-color: rgba(248, 113, 113, 0.35);
}

html[data-theme="light"] body.home-page .gorev-ver-notice strong {
  color: #991b1b;
}