/* Dropshipping reklam landing page — içerik stilleri + animasyonlar.
   public_base.html'i EXTEND eder (homepage navbar + footer oradan gelir);
   burada yalnız .ld- prefixli içerik/animasyon stilleri. Marka tokenları
   theme-variables.css (--color-primary #0175e4, --color-accent #fd751f). */

:root {
  --ld-primary: var(--color-primary, #0175e4);
  --ld-primary-dark: #0a4fb0;
  --ld-accent: var(--color-accent, #fd751f);
  --ld-ink: #0f172a;
  --ld-muted: #64748b;
  --ld-bg-soft: #f6f9fe;
  --ld-border: #e6edf6;
  --ld-radius: 16px;
  --ld-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ld-shadow-lg: 0 24px 60px rgba(1, 117, 228, 0.16);
}

.ld-page { overflow-x: clip; }
.ld-wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.ld-page img { max-width: 100%; display: block; }

/* ---- Buttons ---- */
.ld-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1; font-family: inherit;
  padding: 15px 30px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap;
}
.ld-btn i, .ld-btn svg { width: 18px; height: 18px; }
.ld-btn--primary {
  background: linear-gradient(135deg, var(--ld-accent) 0%, #f26212 100%);
  color: #fff; box-shadow: 0 8px 22px rgba(253, 117, 31, 0.35);
}
.ld-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(253, 117, 31, 0.48); color: #fff; }
.ld-btn--ghost { background: rgba(1, 117, 228, 0.08); color: var(--ld-primary); }
.ld-btn--ghost:hover { background: rgba(1, 117, 228, 0.14); color: var(--ld-primary); transform: translateY(-2px); }
.ld-btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- Hero ---- */
.ld-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(1, 117, 228, 0.12), transparent 60%),
    radial-gradient(760px 420px at 2% 12%, rgba(253, 117, 31, 0.09), transparent 55%),
    #fff;
  padding: 56px 0 64px;
}
.ld-hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.ld-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(1, 117, 228, 0.09); color: var(--ld-primary);
  font-weight: 700; font-size: .82rem; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.ld-eyebrow .ld-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: ldPulse 2s infinite; }
.ld-h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); line-height: 1.07; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 18px; color: var(--ld-ink); }
.ld-h1 .ld-grad, .ld-h2 .ld-grad { background: linear-gradient(120deg, var(--ld-primary), #22a4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ld-lead { font-size: 1.2rem; color: var(--ld-muted); margin: 0 0 28px; max-width: 36ch; }
.ld-hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ld-trust { display: flex; align-items: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; color: var(--ld-muted); font-size: .92rem; font-weight: 600; }
.ld-trust span { display: inline-flex; align-items: center; gap: 6px; }
.ld-trust i { width: 17px; height: 17px; color: #16a34a; }

/* Hero görsel — yüzen panel mock + üstte mini kartlar */
.ld-hero__visual { position: relative; }
.ld-hero__visual .ld-shot { animation: ldFloat 6s ease-in-out infinite; }
.ld-float-card {
  position: absolute; background: #fff; border: 1px solid var(--ld-border);
  border-radius: 14px; box-shadow: var(--ld-shadow); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .9rem;
}
.ld-float-card small { display: block; color: var(--ld-muted); font-weight: 600; font-size: .74rem; }
.ld-float-card .ld-fc-ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ld-float-card .ld-fc-ic i { width: 18px; height: 18px; }
.ld-float-card--a { top: 8%; left: -22px; animation: ldFloat 5s ease-in-out infinite; }
.ld-float-card--a .ld-fc-ic { background: rgba(22,163,74,.12); color: #16a34a; }
.ld-float-card--b { bottom: 10%; right: -18px; animation: ldFloat 7s ease-in-out infinite reverse; }
.ld-float-card--b .ld-fc-ic { background: rgba(253,117,31,.14); color: var(--ld-accent); }

/* Tarayıcı çerçevesi */
.ld-shot { border-radius: var(--ld-radius); overflow: hidden; border: 1px solid var(--ld-border); box-shadow: var(--ld-shadow-lg); background: #fff; }
.ld-shot__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f1f5fb; border-bottom: 1px solid var(--ld-border); }
.ld-shot__bar span { width: 10px; height: 10px; border-radius: 50%; }
.ld-shot__bar span:nth-child(1) { background: #ff5f57; }
.ld-shot__bar span:nth-child(2) { background: #febc2e; }
.ld-shot__bar span:nth-child(3) { background: #28c840; }
.ld-shot img { width: 100%; }

/* ---- Stats band (kendim oluşturdum, animasyonlu sayaç) ---- */
.ld-stats { background: linear-gradient(135deg, var(--ld-primary) 0%, var(--ld-primary-dark) 100%); color: #fff; }
.ld-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; text-align: center; }
.ld-stat .ld-stat__num { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.ld-stat .ld-stat__lbl { color: rgba(255,255,255,.82); font-size: .95rem; margin-top: 4px; }

/* ---- Section shell ---- */
.ld-section { padding: 72px 0; }
.ld-section--soft { background: var(--ld-bg-soft); }
.ld-section__head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.ld-h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--ld-ink); }
.ld-sub { color: var(--ld-muted); font-size: 1.08rem; margin: 0; }

/* ---- SVG akış illüstrasyonu (kendim oluşturdum) ---- */
.ld-flow { max-width: 860px; margin: 0 auto 40px; }
.ld-flow svg { width: 100%; height: auto; }
.ld-flow .ld-flow-path { stroke-dasharray: 8 8; animation: ldDash 1.1s linear infinite; }
.ld-flow .ld-flow-dot { animation: ldMove 3.4s ease-in-out infinite; }

/* ---- 3 adım ---- */
.ld-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ld-step { position: relative; background: #fff; border: 1px solid var(--ld-border); border-radius: var(--ld-radius); padding: 32px 26px; box-shadow: var(--ld-shadow); transition: transform .2s ease, box-shadow .2s ease; }
.ld-step:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow-lg); }
.ld-step__num { position: absolute; top: -16px; left: 26px; width: 34px; height: 34px; border-radius: 10px; background: var(--ld-primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: .95rem; box-shadow: 0 6px 14px rgba(1,117,228,.35); }
.ld-step__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(1,117,228,.09); color: var(--ld-primary); display: flex; align-items: center; justify-content: center; margin: 8px 0 16px; }
.ld-step__icon i { width: 24px; height: 24px; }
.ld-step h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 8px; color: var(--ld-ink); }
.ld-step p { color: var(--ld-muted); margin: 0; font-size: .98rem; }

/* ---- Pazaryerleri ---- */
.ld-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.ld-logo { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--ld-border); border-radius: 12px; padding: 12px 18px; font-weight: 700; color: #334155; box-shadow: var(--ld-shadow); transition: transform .18s ease, box-shadow .18s ease; }
.ld-logo:hover { transform: translateY(-3px); box-shadow: var(--ld-shadow-lg); }
.ld-logo img { width: 26px; height: 26px; object-fit: contain; }
/* "Yakında" — henüz gerçekten çalışmayan pazaryerleri (dürüstlük): görünür ama
   pasif; logo soluk (grayscale), turuncu marka pill'i "Yakında" etiketi. */
.ld-logo--soon { position: relative; opacity: .62; color: #94a3b8; }
.ld-logo--soon:hover { transform: none; box-shadow: var(--ld-shadow); }
.ld-logo--soon img { filter: grayscale(1); }
.ld-soon-badge { display: inline-block; font-size: 11px; font-weight: 800; line-height: 1; letter-spacing: .2px; color: #fff; background: var(--ld-accent); border-radius: 999px; padding: 4px 8px; margin-left: 2px; }

/* ---- Kargo modeli ---- */
.ld-model { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.ld-model__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.ld-model__list li { display: flex; gap: 14px; align-items: flex-start; }
.ld-model__list .ld-ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: rgba(253,117,31,.12); color: var(--ld-accent); display: flex; align-items: center; justify-content: center; }
.ld-model__list .ld-ic i { width: 21px; height: 21px; }
.ld-model__list b { display: block; margin-bottom: 2px; color: var(--ld-ink); }
.ld-model__list span { color: var(--ld-muted); font-size: .97rem; }

/* ---- Final CTA ---- */
.ld-final { text-align: center; }
.ld-final__card { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ld-primary) 0%, var(--ld-primary-dark) 100%); color: #fff; border-radius: 24px; padding: 60px 32px; box-shadow: var(--ld-shadow-lg); }
.ld-final__card::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 65%); }
.ld-final__card h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 12px; font-weight: 800; position: relative; }
.ld-final__card p { color: rgba(255,255,255,.9); font-size: 1.12rem; margin: 0 0 26px; position: relative; }
.ld-final .ld-btn { position: relative; }

/* ---- WhatsApp floating ---- */
.ld-wa { position: fixed; right: 20px; bottom: 20px; z-index: 1080; display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; font-weight: 700; padding: 13px 18px; border-radius: 999px; box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .15s ease; }
.ld-wa:hover { transform: translateY(-2px); color: #fff; }
.ld-wa i, .ld-wa svg { width: 22px; height: 22px; }

/* ---- Scroll reveal ---- */
.ld-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.ld-reveal.ld-in { opacity: 1; transform: none; }

/* ---- Keyframes ---- */
@keyframes ldFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ldPulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); } 70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
@keyframes ldDash { to { stroke-dashoffset: -16; } }
@keyframes ldMove { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }

/* ---- Özellikler (features) ---- */
.ld-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ld-feature { background: #fff; border: 1px solid var(--ld-border); border-radius: var(--ld-radius); padding: 28px 24px; box-shadow: var(--ld-shadow); transition: transform .2s ease, box-shadow .2s ease, opacity .6s ease; }
.ld-feature:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow-lg); }
.ld-features .ld-feature.ld-reveal:nth-child(2) { transition-delay: .08s; }
.ld-features .ld-feature.ld-reveal:nth-child(3) { transition-delay: .16s; }
.ld-feature__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(1,117,228,.09); color: var(--ld-primary); display: flex; align-items: center; justify-content: center; }
.ld-feature__icon i, .ld-feature__icon svg { width: 26px; height: 26px; }
.ld-feature h3 { font-size: 1.18rem; font-weight: 700; margin: 16px 0 8px; color: var(--ld-ink); }
.ld-feature p { color: var(--ld-muted); margin: 0; font-size: .98rem; line-height: 1.55; }
.ld-feature__demo { height: 66px; margin-top: 16px; border-radius: 12px; background: var(--ld-bg-soft); border: 1px solid var(--ld-border); display: flex; padding: 10px 14px; overflow: hidden; }
/* 1) chat typing */
.ld-feature__demo--chat { flex-direction: column; align-items: stretch; justify-content: center; gap: 6px; }
.ld-chat-q { align-self: flex-start; background: #fff; border: 1px solid var(--ld-border); border-radius: 10px 10px 10px 2px; padding: 4px 10px; font-size: .76rem; color: var(--ld-ink); }
.ld-chat-a { align-self: flex-end; background: var(--ld-primary); border-radius: 10px 10px 2px 10px; padding: 7px 12px; }
.ld-typing { display: inline-flex; gap: 3px; }
.ld-typing span { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: ldTyping 1.2s infinite ease-in-out; }
.ld-typing span:nth-child(2) { animation-delay: .2s; }
.ld-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes ldTyping { 0%,60%,100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
/* 2) upload */
.ld-feature__demo--upload { flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; }
.ld-upload-row { display: flex; justify-content: space-between; font-size: .78rem; color: var(--ld-muted); font-weight: 600; }
.ld-upload-pct { color: var(--ld-primary); }
.ld-upload-bar { height: 8px; border-radius: 999px; background: #e2ebf7; overflow: hidden; }
.ld-upload-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--ld-primary), #22a4ff); transform-origin: left; animation: ldUpload 2.6s infinite ease-in-out; }
@keyframes ldUpload { 0% { transform: scaleX(0); } 55% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
.ld-spin { animation: ldSpin 2.2s linear infinite; }
@keyframes ldSpin { to { transform: rotate(360deg); } }
/* 3) chart */
.ld-feature__demo--chart { align-items: flex-end; gap: 8px; padding: 12px 16px; }
.ld-feature__demo--chart span { flex: 1; height: var(--h); min-height: 8px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--ld-accent), #f26212); transform-origin: bottom; animation: ldBar 1.5s ease-out both; }
.ld-feature__demo--chart span:nth-child(2) { animation-delay: .1s; }
.ld-feature__demo--chart span:nth-child(3) { animation-delay: .2s; }
.ld-feature__demo--chart span:nth-child(4) { animation-delay: .3s; }
.ld-feature__demo--chart span:nth-child(5) { animation-delay: .4s; }
@keyframes ldBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---- Fiyatlandırma (pricing) ---- */
.ld-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; max-width: 980px; margin: 0 auto; }
.ld-plan { position: relative; background: #fff; border: 1px solid var(--ld-border); border-radius: var(--ld-radius); padding: 30px 26px; box-shadow: var(--ld-shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.ld-plan:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow-lg); }
.ld-plan--featured { border-color: var(--ld-primary); box-shadow: var(--ld-shadow-lg); }
.ld-plan__badge { position: absolute; top: -12px; left: 26px; background: var(--ld-primary); color: #fff; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.ld-plan__name { font-weight: 800; font-size: 1.12rem; color: var(--ld-ink); }
.ld-plan__dur { font-size: .82rem; font-weight: 600; color: var(--ld-muted); }
.ld-plan__price { font-size: 2rem; font-weight: 800; color: var(--ld-ink); margin: 10px 0 2px; }
.ld-plan__price small { font-size: .9rem; font-weight: 600; color: var(--ld-muted); }
.ld-plan__orig { font-size: 1rem; font-weight: 600; color: var(--ld-muted); text-decoration: line-through; margin-right: 8px; }
.ld-plan__meq { font-size: .86rem; font-weight: 600; color: var(--ld-accent); margin: 0 0 4px; }
.ld-plan__list { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; }
.ld-plan__list li { display: flex; gap: 8px; align-items: flex-start; color: var(--ld-muted); font-size: .94rem; }
.ld-plan__list i, .ld-plan__list svg { width: 16px; height: 16px; color: #16a34a; flex: 0 0 auto; margin-top: 3px; }
.ld-plan .ld-btn { margin-top: auto; justify-content: center; }
.ld-pricing-note { text-align: center; color: var(--ld-muted); margin: 24px 0 0; font-size: .95rem; }

/* ---- SSS (faq) — native details/summary ---- */
.ld-faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.ld-faq { background: #fff; border: 1px solid var(--ld-border); border-radius: 12px; box-shadow: var(--ld-shadow); overflow: hidden; }
.ld-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ld-ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ld-faq summary::-webkit-details-marker { display: none; }
.ld-faq summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--ld-muted); border-bottom: 2px solid var(--ld-muted); transform: rotate(45deg); transition: transform .25s ease; flex: 0 0 auto; }
.ld-faq[open] summary::after { transform: rotate(-135deg); }
.ld-faq__body { padding: 0 22px 18px; color: var(--ld-muted); line-height: 1.6; font-size: .98rem; }
.ld-faq[open] .ld-faq__body { animation: ldFaqIn .28s ease; }
@keyframes ldFaqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .ld-features, .ld-plans { grid-template-columns: 1fr; }
  .ld-hero__grid, .ld-model { grid-template-columns: 1fr; gap: 34px; }
  .ld-steps { grid-template-columns: 1fr; }
  .ld-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ld-lead { max-width: none; }
  .ld-section { padding: 52px 0; }
  .ld-hero { padding: 28px 0 40px; }
  .ld-float-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ld-hero__visual .ld-shot, .ld-float-card, .ld-eyebrow .ld-dot,
  .ld-flow .ld-flow-path, .ld-flow .ld-flow-dot,
  .ld-typing span, .ld-upload-bar span, .ld-spin, .ld-feature__demo--chart span { animation: none !important; }
  .ld-upload-bar span { transform: scaleX(1); }
  .ld-feature__demo--chart span { transform: scaleY(1); }
  .ld-reveal { opacity: 1; transform: none; transition: none; }
  .ld-faq[open] .ld-faq__body { animation: none; }
}
