/* ============================================================
   Wand Production — palette
   #3d3b4c koyu · #e9e9ec açık zemin · #f5601e turuncu vurgu
   ============================================================ */
:root {
  --ink: #3d3b4c;
  --ink-soft: #56546a;
  --bg: #e9e9ec;
  --bg-card: #ffffff;
  --bg-alt: #f3f3f5;
  --accent: #f5601e;
  --accent-dark: #d94e12;
  --line: rgba(61, 59, 76, 0.12);
  --shadow: 0 18px 50px -28px rgba(61, 59, 76, 0.45);
  --radius: 20px;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Sora", sans-serif; line-height: 1.12; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(61, 59, 76, 0.06); border: 1px solid var(--line);
}
.eyebrow--orange { color: var(--accent); background: rgba(245, 96, 30, 0.1); border-color: rgba(245, 96, 30, 0.22); }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.95rem;
  background: var(--accent); color: #fff;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--accent);
  cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px -12px rgba(245, 96, 30, 0.7);
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); box-shadow: none; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(233, 233, 236, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled { border-color: var(--line); background: rgba(233, 233, 236, 0.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora", sans-serif; font-weight: 800; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand--footer .brand__logo { height: 30px; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: var(--accent);
}
.brand__text { font-size: 1.12rem; color: var(--ink); }
.brand__text span { color: var(--ink-soft); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); transition: color .18s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: #fff; }
.nav__links a.is-active:not(.btn) { color: var(--ink); }
.nav__links a:not(.btn)::after {
  content: ""; display: block; height: 2px; width: 0; margin-top: 3px;
  background: var(--accent); border-radius: 2px; transition: width .28s ease;
}
.nav__links a.is-active:not(.btn)::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 40px; overflow: hidden; }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 30px;
  min-height: min(78vh, 720px);
}

/* floating blobs */
.hero__blobs { position: absolute; inset: 0; z-index: 1; pointer-events: none; filter: blur(8px); }
.blob { position: absolute; border-radius: 50%; opacity: 0.5; mix-blend-mode: multiply; }
.blob--1 { width: 460px; height: 460px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(245,96,30,0.5), transparent 65%); animation: float1 14s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; bottom: -140px; left: -80px; background: radial-gradient(circle, rgba(61,59,76,0.32), transparent 65%); animation: float2 18s ease-in-out infinite; }
.blob--3 { width: 280px; height: 280px; top: 30%; left: 40%; background: radial-gradient(circle, rgba(245,96,30,0.28), transparent 65%); animation: float3 12s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-30px) scale(1.1); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,30px) scale(0.85); } }

.hero__content { position: relative; }
.eyebrow--live { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow--live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(245,96,30,0.6); animation: livePulse 1.8s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(245,96,30,0.55); } 70% { box-shadow: 0 0 0 9px rgba(245,96,30,0); } 100% { box-shadow: 0 0 0 0 rgba(245,96,30,0); } }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; margin: 20px 0 30px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .grad {
  background: linear-gradient(100deg, var(--accent), #ff9a4d, var(--accent));
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift { to { background-position: 220% 0; } }
.hero__title .wand { position: relative; white-space: nowrap; }
.hero__title .wand::after { content: "✦"; color: var(--accent); font-size: 0.5em; vertical-align: super; margin-left: 6px; display: inline-block; animation: spinStar 4s linear infinite; }
@keyframes spinStar { to { transform: rotate(360deg); } }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 44px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Sora", sans-serif; font-size: 2rem; color: var(--ink); font-weight: 800; }
.hero__stats span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Motion graphics stage ---------- */
.hero__stage { position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto; width: 100%; }
.stage__ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1.5px dashed rgba(61,59,76,0.18); }
.stage__ring--1 { width: 96%; height: 96%; animation: spin 26s linear infinite; }
.stage__ring--2 { width: 70%; height: 70%; border-color: rgba(245,96,30,0.3); border-style: solid; animation: spin 18s linear infinite reverse; }
.stage__ring--3 { width: 46%; height: 46%; border-color: rgba(61,59,76,0.14); animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.stage__orbit { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.stage__orbit .chip {
  position: absolute; width: 64px; height: 64px; display: grid; place-items: center; font-size: 1.7rem;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  animation: counterspin 22s linear infinite;
}
@keyframes counterspin { to { transform: rotate(-360deg); } }
.chip--a { top: -6%; left: 50%; margin-left: -32px; }
.chip--b { top: 50%; right: -6%; margin-top: -32px; }
.chip--c { bottom: -6%; left: 50%; margin-left: -32px; }
.chip--d { top: 50%; left: -6%; margin-top: -32px; }

.stage__core { position: absolute; inset: 0; margin: auto; width: 120px; height: 120px; display: grid; place-items: center; }
.stage__core .pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(245,96,30,0.18); animation: pulseRing 2.6s ease-out infinite; }
.stage__core .pulse--2 { animation-delay: 1.3s; }
@keyframes pulseRing { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }
.play {
  position: relative; width: 92px; height: 92px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; display: grid; place-items: center; padding-left: 6px;
  box-shadow: 0 18px 40px -14px rgba(245,96,30,0.8); transition: transform .2s ease;
  animation: bob 4s ease-in-out infinite;
}
.play:hover { transform: scale(1.08); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.reelcard {
  position: absolute; width: 92px; height: 64px; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 12px; display: flex; flex-direction: column; gap: 7px; justify-content: center;
}
.reelcard__bar { height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--accent), #ff9a4d); }
.reelcard__dot { width: 22px; height: 6px; border-radius: 4px; background: rgba(61,59,76,0.2); }
.reelcard--1 { top: 4%; left: -8%; animation: floatCard 6s ease-in-out infinite; }
.reelcard--2 { bottom: 6%; right: -8%; animation: floatCard 7s ease-in-out infinite reverse; }
@keyframes floatCard { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }

.wave { position: absolute; bottom: -4%; left: 50%; transform: translateX(-50%); display: flex; align-items: flex-end; gap: 4px; height: 34px; }
.wave i { width: 5px; background: var(--accent); border-radius: 3px; animation: eq 1.1s ease-in-out infinite; }
.wave i:nth-child(odd) { background: var(--ink); opacity: 0.55; }
.wave i:nth-child(1){animation-delay:0s}.wave i:nth-child(2){animation-delay:.1s}.wave i:nth-child(3){animation-delay:.2s}.wave i:nth-child(4){animation-delay:.3s}.wave i:nth-child(5){animation-delay:.15s}.wave i:nth-child(6){animation-delay:.25s}.wave i:nth-child(7){animation-delay:.05s}.wave i:nth-child(8){animation-delay:.35s}.wave i:nth-child(9){animation-delay:.2s}.wave i:nth-child(10){animation-delay:.1s}.wave i:nth-child(11){animation-delay:.3s}.wave i:nth-child(12){animation-delay:.15s}
@keyframes eq { 0%,100% { height: 8px; } 50% { height: 32px; } }

/* scroll cue */
.scrollcue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid var(--line); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; z-index: 3; }
.scrollcue span { width: 4px; height: 8px; border-radius: 3px; background: var(--accent); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }

/* ---------- Marquee (sade) ---------- */
.marquee {
  background: var(--bg-alt); padding: 18px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__row { display: flex; }
.marquee__track {
  display: flex; align-items: center; gap: 22px; white-space: nowrap; flex-shrink: 0; padding-right: 22px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.02em;
  animation: scrollX 45s linear infinite;
}
.marquee__track span { color: var(--ink-soft); }
.marquee__track b { color: var(--accent); font-size: 0.7em; opacity: 0.7; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__head h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); font-weight: 700; margin: 16px 0 12px; }
.section__head p { color: var(--ink-soft); font-size: 1.05rem; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* ---------- Services ---------- */
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(245, 96, 30, 0.3); }
.service__icon {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(245, 96, 30, 0.1); border-radius: 14px; margin-bottom: 18px;
}
.service h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing { align-items: stretch; }
.plan {
  display: flex; flex-direction: column; position: relative;
  background:
    radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(245, 96, 30, 0.13), transparent 62%),
    var(--bg-card);
}

/* logo damgası (tatlı tatlı) */
.plan::before, .onetime__card::before {
  content: ""; position: absolute; top: 24px; right: 24px; width: 52px; height: 37px; z-index: 2;
  background: url("assets/wand-logo-trim.png") center / contain no-repeat;
  opacity: 0.06; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
}
.plan:hover::before, .onetime__card:hover::before { opacity: 0.14; transform: rotate(-4deg) scale(1.05); }
.plan--featured::before { background-image: url("assets/wand-logo-white-trim.png"); opacity: 0.16; }
.plan--featured:hover::before { opacity: 0.26; }
.plan__head h3 { font-size: 1.4rem; }
.plan__desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan__price .amount { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--ink); }
.plan__price .cur { font-weight: 600; color: var(--ink-soft); }
.plan__price .cur small { display: block; font-size: 0.7rem; }
/* fiyat yerine teklif */
.plan__price--quote { flex-direction: column; align-items: flex-start; gap: 2px; }
.plan__price--quote .quote { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.55rem; color: var(--ink); }
.plan__price--quote .cur { font-size: 0.9rem; }
.plan--featured .plan__price--quote .quote { color: #fff; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__features li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.96rem; }
.plan__features li::before { content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: rgba(245, 96, 30, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5601e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }
.plan__features li b { color: var(--ink); font-weight: 700; }
.plan--featured {
  background:
    radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(233, 233, 236, 0.24), transparent 62%),
    var(--ink);
  border-color: var(--ink); color: #fff; box-shadow: var(--shadow); transform: translateY(-8px);
}
.plan--featured .plan__desc, .plan--featured .plan__features li, .plan--featured .plan__price .cur { color: rgba(255,255,255,0.7); }
.plan--featured .plan__price { border-color: rgba(255,255,255,0.16); }
.plan--featured .plan__price .amount, .plan--featured .plan__features li b { color: #fff; }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: "Sora", sans-serif; font-weight: 600;
  font-size: 0.75rem; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(245,96,30,0.8);
}

/* ---------- One-time ---------- */
.onetime { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.onetime__card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
}
.onetime__card h3 { font-size: 1.35rem; margin: 12px 0 6px; }
.onetime__card p { color: var(--ink-soft); font-size: 0.95rem; }
.onetime__features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 22px 0 24px; padding-top: 22px; border-top: 1px solid var(--line); width: 100%; }
.onetime__features li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.45; }
.onetime__features li::before { content: ""; width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; border-radius: 50%; background: rgba(245, 96, 30, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5601e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }
.onetime__cta { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1rem; color: var(--accent); white-space: nowrap; margin-top: auto; transition: opacity .2s ease; }
.onetime__cta:hover { opacity: 0.75; }
.note { text-align: center; color: var(--ink-soft); font-size: 0.88rem; margin-top: 28px; }

/* ---------- Steps ---------- */
.steps { gap: 20px; }
.step { padding: 8px 4px; }
.step__no { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); opacity: 0.9; }
.step h3 { font-size: 1.2rem; margin: 8px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Extras ---------- */
.extras { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 860px; margin: 0 auto; }
.extra {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px;
  transition: border-color .18s ease, transform .18s ease;
}
.extra:hover { border-color: rgba(245, 96, 30, 0.35); transform: translateX(3px); }
.extra span { font-size: 0.96rem; }
.extra b { font-family: "Sora", sans-serif; color: var(--accent); white-space: nowrap; font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; padding: 86px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(245, 96, 30, 0.35), rgba(245, 96, 30, 0) 65%);
}
.cta__inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
.cta p { color: rgba(255,255,255,0.75); margin: 16px auto 32px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: 40px 0; border-top: 1px solid var(--line); }
.footer__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.brand--footer .brand__mark { width: 34px; height: 34px; }
.footer__copy { color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: var(--ink); color: var(--accent);
  transition: transform .8s cubic-bezier(.76,0,.24,1), visibility 0s linear .8s;
}
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader__logo { width: 210px; max-width: 56vw; height: auto; opacity: 0; transform: scale(.92) translateY(8px); animation: logoIn 1s cubic-bezier(.16,1,.3,1) .12s forwards; }
@keyframes logoIn { to { opacity: 1; transform: none; } }
.preloader__mark { animation: plPop 1.6s cubic-bezier(.16,1,.3,1) forwards; }
.pl-w {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: plDraw 1.1s cubic-bezier(.65,0,.35,1) .15s forwards;
}
.pl-star { opacity: 0; transform-origin: 92px 41px; animation: plStar .5s ease .95s forwards; }
.preloader__text {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff;
  opacity: 0; transform: translateY(10px); animation: plText .6s ease 1.1s forwards;
}
.preloader__text span { color: rgba(255,255,255,0.55); font-weight: 600; }
@keyframes plDraw { to { stroke-dashoffset: 0; } }
@keyframes plStar { 0% { opacity: 0; transform: scale(0) rotate(-40deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes plText { to { opacity: 1; transform: none; } }
@keyframes plPop { 0%,70% { transform: scale(1); } 85% { transform: scale(1.08); } 100% { transform: scale(1); } }

/* page locked while preloader runs */
body.is-loading { overflow: hidden; }

/* ---------- Reveal / section transitions ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal].is-visible { opacity: 1; transform: none; }
/* Paket kartlarında hover tilt'i Core gibi anında çalışsın:
   reveal'dan kalan staggered transition-delay'i sıfırla */
.plan[data-reveal] { transition-delay: 0s; }

/* hero entrance (after preloader) */
.hero__content > *, .hero__stage { opacity: 0; transform: translateY(30px); }
body.ready .hero__content > * { animation: heroUp .8s cubic-bezier(.16,1,.3,1) forwards; }
body.ready .hero__content > *:nth-child(1) { animation-delay: .05s; }
body.ready .hero__content > *:nth-child(2) { animation-delay: .15s; }
body.ready .hero__content > *:nth-child(3) { animation-delay: .25s; }
body.ready .hero__content > *:nth-child(4) { animation-delay: .35s; }
body.ready .hero__stage { animation: stageIn 1s cubic-bezier(.16,1,.3,1) .3s forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
@keyframes stageIn { from { opacity: 0; transform: scale(.86) translateY(20px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero__content > *, .hero__stage { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .preloader { display: none; }
}

/* ============================================================
   Bölüm motion efektleri (hero dili ile uyumlu, ince)
   ============================================================ */
.section { position: relative; overflow: hidden; }
/* yumuşak yüzen arka plan orb'ları */
.section::before {
  content: ""; position: absolute; z-index: 0; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,96,30,0.10), transparent 65%);
  top: -160px; right: -140px; pointer-events: none; animation: float1 20s ease-in-out infinite;
}
.section--alt::before {
  background: radial-gradient(circle, rgba(61,59,76,0.10), transparent 65%);
  top: auto; bottom: -180px; left: -140px; right: auto; animation: float2 24s ease-in-out infinite;
}
.section .container { position: relative; z-index: 1; }
.section__head h2 .grad,
.section__head .grad {
  background: linear-gradient(100deg, var(--accent), #ff9a4d, var(--accent));
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 5s linear infinite;
}

/* Hizmet ikonları — yüzen + hover'da pop */
.service__icon {
  background: linear-gradient(135deg, rgba(245,96,30,0.16), rgba(245,96,30,0.06));
  animation: iconFloat 5s ease-in-out infinite; transition: transform .25s ease;
}
.service:nth-child(2n) .service__icon { animation-delay: -1.6s; }
.service:nth-child(3n) .service__icon { animation-delay: -3.2s; }
.service:hover .service__icon { transform: translateY(-2px) rotate(-6deg) scale(1.08); }
@keyframes iconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Hizmet kartına ışıltı */
.service::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,0%), rgba(245,96,30,0.10), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.service { position: relative; overflow: hidden; }
.service:hover::after { opacity: 1; }

/* Süreç — animasyonlu bağlantı çizgisi + numara nabzı */
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  background-size: 220% 100%; animation: gradShift 6s linear infinite; opacity: 0.4;
}
.step { position: relative; z-index: 1; }
.step__no {
  display: inline-block; position: relative;
  background: linear-gradient(120deg, var(--accent), #ff9a4d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Tüm paket kartları — canlı, hareketli parıltı */
.plan::after {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius); z-index: -1; pointer-events: none;
  background: linear-gradient(130deg, rgba(245,96,30,0.5), transparent 40%, transparent 60%, rgba(245,96,30,0.5));
  background-size: 200% 200%; animation: glowMove 6s ease infinite; filter: blur(9px);
  opacity: 0.32; transition: opacity .4s ease;
}
.plan:hover::after { opacity: 0.62; }
.plan--featured::after { opacity: 0.62; }
.plan--featured:hover::after { opacity: 0.85; }
@keyframes glowMove { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Ek hizmet satırı — turuncu kenar vurgusu */
.extra { position: relative; }
.extra::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0;
  background: var(--accent); border-radius: 3px; transition: height .3s ease;
}
.extra:hover::before { height: 60%; }

@media (prefers-reduced-motion: reduce) {
  .section::before, .steps::before { animation: none !important; }
}

/* ============================================================
   3D Slider (Hizmetler)
   ============================================================ */
.slider3d { position: relative; margin-top: 6px; }
.slider3d__viewport { position: relative; perspective: 1500px; overflow: hidden; padding: 26px 0; }
.slider3d__track { position: relative; height: 300px; transform-style: preserve-3d; }
.slider3d__slide {
  position: absolute; top: 0; left: 50%; width: min(660px, 80%); height: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  transform: translateX(-50%);
  transition: transform .65s cubic-bezier(.16,1,.3,1), opacity .55s ease;
  will-change: transform, opacity; backface-visibility: hidden;
}
.slider3d__slide .service { height: 100%; margin: 0; }
.slider3d__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg-card); color: var(--ink); font-family: "Sora", sans-serif; font-size: 1.7rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center; padding-bottom: 4px;
  box-shadow: var(--shadow); transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.slider3d__nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.slider3d__nav:active { transform: translateY(-50%) scale(.92); }
.slider3d__nav--prev { left: 6px; }
.slider3d__nav--next { right: 6px; }
.slider3d__dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.slider3d__dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line);
  cursor: pointer; transition: width .25s ease, background .25s ease;
}
.slider3d__dots button.is-active { width: 26px; border-radius: 5px; background: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 10px; min-height: auto; padding-top: 10px; }
  .hero__content { order: 1; }
  .hero__stage { order: 2; max-width: 360px; margin-top: 20px; }
  .hero__cta, .hero__stats { justify-content: center; }
  .scrollcue { display: none; }
  .steps::before { display: none; }
  .section::before { width: 280px; height: 280px; }
}
@media (max-width: 720px) {
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 6px;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 24px 22px;
    display: none;
  }
  .nav__links.is-open { display: flex; align-items: stretch; }
  .nav__links a { padding: 8px 0; }
  .nav__links a.btn { justify-content: center; }
  .nav__toggle { display: flex; }
  .grid--3, .grid--4, .extras, .onetime { grid-template-columns: 1fr; }
  /* 3D slider → dikey liste */
  .slider3d__viewport { perspective: none; overflow: visible; padding: 0; }
  .slider3d__track { position: static; height: auto; display: flex; flex-direction: column; gap: 18px; }
  .slider3d__slide {
    position: static; width: auto; height: auto; margin: 0; grid-template-columns: 1fr; gap: 18px;
    transform: none !important; opacity: 1 !important; pointer-events: auto !important;
  }
  .slider3d__nav, .slider3d__dots { display: none; }
  .hero__stats { gap: 24px; }
  .hero__stats strong { font-size: 1.6rem; }
  .hero__stage { max-width: 280px; }
  .reelcard--1 { left: -2%; } .reelcard--2 { right: -2%; }
  .onetime__card { flex-direction: column; align-items: flex-start; }
}
