/* ============================================================
   Zekiya — Landing Page (NM odaklı, Bold-Marketing)
   Faz 16 (2026-05-24) — yeni 10 bölümlü tasarım
   - Hero NM odaklı, telefon mockup
   - Problem / Solution / How it works / Ad magic (full-bleed)
   - Templates / Brand assistant / Pricing (DB-driven) / FAQ
   ============================================================ */

/* ---- Reset + Tokens ---- */
*,*::before,*::after { box-sizing: border-box; }
:root {
    /* Faz 16 — Bold-Marketing renk paleti */
    --l-indigo: #6C63FF;
    --l-indigo-700: #5249e6;
    --l-indigo-50: #EEEDFF;
    --l-violet: #8B5CF6;
    --l-pink: #EC4899;
    --l-amber: #F59E0B;
    --l-wa: #25D366;
    --l-wa-dark: #075E54;
    --l-wa-bg: #E5DDD5;
    --l-blue: #3B82F6;
    --l-ink: #0F172A;
    --l-muted: #475569;
    --l-bg-soft: #F8FAFC;
    --l-card: #FFFFFF;
    --l-border: #E2E8F0;

    --l-shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
    --l-shadow-md: 0 8px 24px rgba(15,23,42,.08);
    --l-shadow-glow: 0 14px 50px rgba(108,99,255,.28);
    --l-shadow-glow-soft: 0 8px 40px rgba(108,99,255,.18);

    --l-r-card: 18px;
    --l-r-card-lg: 22px;
    --l-r-btn: 12px;
    --l-r-pill: 100px;
    --l-maxw: 1180px;
}

/* ---- Container ---- */
.l-wrap { max-width: var(--l-maxw); margin: 0 auto; padding: 0 22px; }

/* ---- Reveal animation ---- */
.l-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.l-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .l-reveal { opacity: 1; transform: none; transition: none; } }

.l-fade-up { opacity: 0; transform: translateY(18px); animation: lFadeUp .6s .05s ease forwards; }
.l-fade-up.d1 { animation-delay: .12s; }
.l-fade-up.d2 { animation-delay: .22s; }
.l-fade-up.d3 { animation-delay: .32s; }
.l-fade-up.d4 { animation-delay: .42s; }
.l-fade-up.d5 { animation-delay: .52s; }
@keyframes lFadeUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .l-fade-up { opacity: 1; transform: none; animation: none; } }

/* ---- Scroll progress ---- */
.l-progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--l-indigo), var(--l-pink));
    z-index: 200; transition: width .08s linear;
}

/* ---- Common pill ---- */
.l-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: var(--l-r-pill);
    font-weight: 600; font-size: 13px;
    background: var(--l-indigo-50); color: var(--l-indigo);
}
.l-pill--green { background: #DCFCE7; color: #166534; }
.l-pill--gold  { background: linear-gradient(135deg, #FDE68A, #F59E0B); color: #7c2d12; }
.l-pill--dark  { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(6px); }
.l-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; display: inline-block; }

/* ---- Eyebrow ---- */
.l-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 700;
    color: var(--l-indigo); letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 14px;
}

/* ---- Section head ---- */
.l-sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.l-sec-head h2 {
    font-size: clamp(34px, 5vw, 60px); font-weight: 900;
    letter-spacing: -.025em; line-height: 1.05; margin: 0 0 14px;
}
.l-sec-head h2 .grad {
    background: linear-gradient(90deg, var(--l-indigo), var(--l-pink));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.l-sec-head p { color: var(--l-muted); font-size: 18px; margin: 0; }

/* ---- Section spacing ---- */
.l-section { padding: 96px 0; position: relative; }
@media (max-width: 900px) { .l-section { padding: 72px 0; } }
@media (max-width: 600px) { .l-section { padding: 56px 0; } }

/* ---- Buttons (landing scope, prefix l-btn to avoid clash with main.css .btn) ---- */
.l-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: 14px 22px; border-radius: var(--l-r-btn);
    font-weight: 700; font-size: 15px; min-height: 48px; line-height: 1;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap; text-decoration: none; cursor: pointer;
    border: 0; font-family: inherit;
}
.l-btn--primary { background: var(--l-indigo); color: #fff; box-shadow: 0 4px 14px rgba(108,99,255,.35); }
.l-btn--primary:hover { background: var(--l-indigo-700); box-shadow: var(--l-shadow-glow); transform: translateY(-1px); }
.l-btn--ghost { background: #fff; color: var(--l-indigo); border: 1.5px solid var(--l-indigo); }
.l-btn--ghost:hover { background: var(--l-indigo-50); }
.l-btn--dark { background: var(--l-ink); color: #fff; }
.l-btn--dark:hover { background: #1f2a44; }
.l-btn--lg { padding: 18px 28px; font-size: 17px; min-height: 56px; border-radius: 14px; }

/* ============================================================
   1. NAV
   ============================================================ */
.l-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.l-nav.scrolled { border-bottom-color: var(--l-border); background: rgba(255,255,255,.88); }
.l-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 14px 22px; max-width: var(--l-maxw); margin: 0 auto;
}
.l-nav-logo { font-weight: 900; font-size: 22px; letter-spacing: -.02em; color: var(--l-indigo); text-decoration: none; }
.l-nav-logo span {
    background: linear-gradient(90deg, var(--l-indigo), var(--l-pink));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.l-nav-links { display: flex; gap: 30px; align-items: center; }
.l-nav-links a { font-weight: 500; color: var(--l-ink); font-size: 15px; text-decoration: none; }
.l-nav-links a:hover { color: var(--l-indigo); }
.l-nav-cta { display: flex; align-items: center; gap: 14px; }
.l-nav-cta .login {
    font-weight: 600; font-size: 15px; color: var(--l-ink); text-decoration: none;
    padding: 12px 8px; min-height: 44px; display: inline-flex; align-items: center;
}
.l-nav-cta .login:hover { color: var(--l-indigo); }
.l-hamb {
    display: none; width: 44px; height: 44px; border-radius: 10px;
    align-items: center; justify-content: center;
    border: 1px solid var(--l-border); background: #fff; cursor: pointer;
}
.l-hamb span,
.l-hamb span::before,
.l-hamb span::after {
    content: ""; display: block; width: 20px; height: 2px;
    background: var(--l-ink); position: relative; border-radius: 2px;
}
.l-hamb span::before { position: absolute; top: -6px; }
.l-hamb span::after  { position: absolute; top: 6px; }

/* Drawer */
.l-drawer {
    position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 340px;
    background: #fff; z-index: 150; transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(15,23,42,.18);
    padding: 24px; display: flex; flex-direction: column; gap: 6px;
}
.l-drawer.open { transform: translateX(0); }
.l-drawer a { padding: 14px 12px; border-radius: 12px; font-weight: 600; color: var(--l-ink); text-decoration: none; }
.l-drawer a:hover { background: var(--l-indigo-50); color: var(--l-indigo); }
.l-drawer .l-btn { margin-top: 10px; }
.l-drawer-close {
    align-self: flex-end; width: 44px; height: 44px; border-radius: 10px;
    font-size: 24px; color: var(--l-muted); background: none; border: 0; cursor: pointer;
}
.l-scrim {
    position: fixed; inset: 0; background: rgba(15,23,42,.45);
    z-index: 140; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.l-scrim.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
    .l-nav-links, .l-nav-cta .login, .l-nav-cta > .l-btn { display: none; }
    .l-hamb { display: flex; }
    /* Nav dropdown'ı gizle — drawer versiyonu devreye girer */
    .l-nav-cta .ls-wrap { display: none; }
}

/* ============================================================
   Lang Switcher (ls-*)
   Masaüstü: dropdown pill  |  Mobil drawer: yatay satır
   ============================================================ */
.ls-wrap { position: relative; display: inline-block; }

/* Pill butonu */
.ls-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 12px; border-radius: 20px;
    background: transparent;
    border: 1.5px solid var(--l-border, #E5E7EB);
    color: var(--l-ink, #0F172A);
    font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: background .15s, border-color .15s;
    min-height: 36px;
}
.ls-btn:hover,
.ls-btn--open { background: var(--l-indigo-50, #EEF2FF); border-color: var(--l-indigo, #6366F1); color: var(--l-indigo, #6366F1); }

.ls-globe    { font-size: 14px; line-height: 1; }
.ls-cur-region { font-size: 11px; font-weight: 700; color: var(--l-muted, #64748B); letter-spacing: .3px; }
.ls-cur-name   { font-size: 13px; }
.ls-caret    { opacity: .5; transition: transform .2s; flex-shrink: 0; }
.ls-btn--open .ls-caret { transform: rotate(180deg); }

/* Dropdown listesi */
.ls-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--l-border, #E5E7EB);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(15,23,42,.12);
    list-style: none; margin: 0; padding: 6px;
    z-index: 200;
}
.ls-dropdown[hidden] { display: none; }

.ls-opt { border-radius: 8px; overflow: hidden; }
.ls-opt + .ls-opt { margin-top: 2px; }

.ls-opt-inner {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px;
    text-decoration: none; color: var(--l-ink, #0F172A);
    transition: background .12s;
    cursor: default;
}
a.ls-opt-inner { cursor: pointer; }
a.ls-opt-inner:hover { background: var(--l-indigo-50, #EEF2FF); color: var(--l-indigo, #6366F1); }

.ls-opt--active .ls-opt-inner { background: var(--l-indigo-50, #EEF2FF); }
.ls-opt--active .ls-opt-code,
.ls-opt--active .ls-opt-name { color: var(--l-indigo, #6366F1); }

.ls-opt-code {
    font-size: 10px; font-weight: 800; letter-spacing: .4px;
    color: var(--l-muted, #64748B);
    min-width: 22px;
}
.ls-opt-name  { font-size: 14px; font-weight: 600; flex: 1; }
.ls-check     { margin-left: auto; color: var(--l-indigo, #6366F1); flex-shrink: 0; }

/* Drawer satırı */
.ls-drawer-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding: 10px 12px; border-radius: 12px;
    background: var(--l-indigo-50, #EEF2FF);
    margin-top: 4px;
}
.ls-drawer-opt {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    text-decoration: none; color: var(--l-ink, #0F172A);
    border: 1.5px solid transparent;
    transition: border-color .15s, background .15s;
    min-height: 40px;
}
.ls-drawer-opt:hover { background: #fff; border-color: var(--l-indigo, #6366F1); color: var(--l-indigo, #6366F1); }
.ls-drawer-opt--active {
    background: var(--l-indigo, #6366F1); color: #fff;
    pointer-events: none;
}
.ls-drawer-opt--active .ls-opt-code { color: rgba(255,255,255,.7); }

/* ============================================================
   2. HERO
   ============================================================ */
.l-hero { padding-top: 56px; padding-bottom: 48px; overflow: hidden; position: relative; }
.l-hero::before {
    content: ""; position: absolute; inset: -20% -10% auto -10%; height: 80%;
    background:
        radial-gradient(40% 60% at 12% 30%, rgba(108,99,255,.18), transparent 60%),
        radial-gradient(40% 60% at 88% 20%, rgba(236,72,153,.14), transparent 60%),
        radial-gradient(40% 60% at 50% 80%, rgba(245,158,11,.10), transparent 60%);
    z-index: -1; pointer-events: none;
}
.l-hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: 64px; align-items: center;
}
@media (max-width: 1000px) { .l-hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.l-hero-tag { margin-bottom: 24px; }
.l-hero h1 {
    font-size: clamp(40px, 6.8vw, 84px);
    line-height: .98; letter-spacing: -.035em; font-weight: 900;
    margin: 0 0 18px;
}
.l-hero h1 .grad {
    background: linear-gradient(100deg, var(--l-indigo) 0%, var(--l-violet) 45%, var(--l-pink) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.l-hero-sub {
    font-size: clamp(19px, 2vw, 26px);
    color: var(--l-ink); font-weight: 700; letter-spacing: -.015em;
    margin: 0 0 20px; line-height: 1.25;
}
.l-hero p.body { color: var(--l-muted); font-size: 17px; max-width: 560px; margin: 0 0 12px; }
.l-hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.l-hero .trust {
    color: var(--l-muted); font-size: 13.5px;
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.l-hero .trust .g { color: #15803d; font-weight: 700; }
.l-hero .escape { margin-top: 22px; font-size: 14px; color: var(--l-muted); }
.l-hero .escape a { color: var(--l-muted); text-decoration: underline; text-underline-offset: 3px; }
.l-hero .escape a:hover { color: var(--l-indigo); }

/* Compliance flag (NM özelinde) */
.l-compliance {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600; color: var(--l-blue);
    background: #EFF6FF; border: 1px solid #DBEAFE;
    padding: 5px 10px; border-radius: var(--l-r-pill);
}

/* ---- Phone mockup (CSS only) ---- */
.l-phone-wrap { display: flex; justify-content: center; position: relative; }
.l-phone-wrap::before {
    content: ""; position: absolute; width: 120%; height: 120%; left: -10%; top: -10%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(108,99,255,.22), transparent 70%);
    z-index: -1; filter: blur(20px);
}
.l-phone {
    width: 320px; height: 660px; background: #0F172A; border-radius: 50px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(15,23,42,.28), 0 0 0 1px rgba(0,0,0,.05);
    position: relative;
}
.l-phone-screen {
    width: 100%; height: 100%; background: #fff;
    border-radius: 38px; overflow: hidden; position: relative;
}
.l-phone-island {
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 28px; background: #0F172A; border-radius: 20px; z-index: 5;
}
.l-mini-nav {
    position: absolute; top: 0; left: 0; right: 0; height: 62px;
    display: flex; align-items: center; gap: 10px; padding: 32px 16px 0;
    background: rgba(255,255,255,.85); backdrop-filter: blur(8px); z-index: 3;
}
.l-mini-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #EC4899);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 13px;
}
.l-mini-meta { font-size: 12px; font-weight: 700; line-height: 1.2; }
.l-mini-meta small { font-weight: 500; color: var(--l-muted); font-size: 10.5px; }
.l-phone-hero {
    margin-top: 60px; height: 200px;
    background: linear-gradient(135deg, #6C63FF 0%, #A855F7 55%, #EC4899 100%);
    position: relative; color: #fff; padding: 24px 18px;
    display: flex; align-items: flex-end;
}
.l-phone-hero::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 80% 20%, rgba(255,255,255,.25), transparent 70%);
}
.l-phone-hero h4 {
    font-size: 18px; font-weight: 800; line-height: 1.15;
    margin: 0; position: relative; letter-spacing: -.01em;
}
.l-phone-prods { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.l-prod {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: 12px; padding: 8px; font-size: 11px;
}
.l-prod .thumb { height: 64px; border-radius: 8px; margin-bottom: 8px; background: linear-gradient(135deg, #FCE7F3, #FEF3C7); }
.l-prod:nth-child(2) .thumb { background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.l-prod .name { font-weight: 700; color: var(--l-ink); font-size: 11.5px; margin-bottom: 2px; }
.l-prod .price { color: var(--l-indigo); font-weight: 800; font-size: 12.5px; }
.l-fab {
    position: absolute; right: 14px; bottom: 18px; width: 54px; height: 54px;
    border-radius: 50%; background: var(--l-wa); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 4;
}
.l-fab::before {
    content: ""; position: absolute; inset: -6px; border-radius: 50%;
    border: 3px solid rgba(37,211,102,.45);
    animation: lPulse 2.4s ease-out infinite;
}
@keyframes lPulse { 0% { transform: scale(1); opacity: .9; } 80%, 100% { transform: scale(1.6); opacity: 0; } }
.l-fab svg { width: 26px; height: 26px; }
.l-ai-bubble {
    position: absolute; left: 12px; bottom: 18px;
    background: #fff; border: 1px solid var(--l-border);
    border-radius: 14px 14px 14px 4px; padding: 8px 11px;
    font-size: 11px; color: var(--l-ink);
    box-shadow: 0 6px 18px rgba(15,23,42,.10); z-index: 4;
    display: flex; gap: 6px; align-items: center;
    max-width: 180px; font-weight: 500;
}
.l-ai-bubble .av {
    width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--l-indigo), var(--l-pink));
    flex-shrink: 0;
}

/* ============================================================
   3. PROBLEM
   ============================================================ */
.l-problem { background: var(--l-bg-soft); }
.l-problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .l-problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .l-problem-grid { grid-template-columns: 1fr; } }
.l-problem-card {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: var(--l-r-card); padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.l-problem-card:hover { transform: translateY(-3px); box-shadow: var(--l-shadow-md); }
.l-problem-card .ic {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
    background: linear-gradient(135deg, #EEEDFF, #FCE7F3);
}
.l-problem-card:nth-child(2) .ic { background: linear-gradient(135deg, #FEF3C7, #FED7AA); }
.l-problem-card:nth-child(3) .ic { background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.l-problem-card:nth-child(4) .ic { background: linear-gradient(135deg, #DCFCE7, #A7F3D0); }
.l-problem-card h3 {
    font-size: 17px; font-weight: 800; margin: 0 0 6px;
    line-height: 1.25; letter-spacing: -.01em;
}
.l-problem-card p { margin: 0; font-size: 14.5px; color: var(--l-muted); line-height: 1.45; }

/* ============================================================
   4. SOLUTION
   ============================================================ */
.l-solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .l-solution-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 640px)  { .l-solution-grid { grid-template-columns: 1fr; } }
.l-sol-card {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: var(--l-r-card-lg); padding: 26px 22px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative; overflow: hidden;
}
.l-sol-card:hover {
    transform: translateY(-4px); box-shadow: var(--l-shadow-glow-soft);
    border-color: #cfccff;
}
.l-sol-card .icbox {
    width: 60px; height: 60px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff;
    background: linear-gradient(135deg, var(--l-indigo), var(--l-violet));
    box-shadow: 0 10px 22px rgba(108,99,255,.32);
}
.l-sol-card:nth-child(2) .icbox { background: linear-gradient(135deg, #06B6D4, var(--l-indigo)); box-shadow: 0 10px 22px rgba(6,182,212,.32); }
.l-sol-card:nth-child(3) .icbox { background: linear-gradient(135deg, var(--l-amber), var(--l-pink)); box-shadow: 0 10px 22px rgba(236,72,153,.32); }
.l-sol-card:nth-child(4) .icbox { background: linear-gradient(135deg, #8B5CF6, #6366F1); box-shadow: 0 10px 22px rgba(139,92,246,.32); }
.l-sol-card h3 {
    font-size: 21px; font-weight: 900; letter-spacing: -.02em;
    margin: 0; line-height: 1.2;
}
.l-sol-card ul {
    list-style: none; padding: 0; margin: 6px 0 0;
    display: flex; flex-direction: column; gap: 8px;
    color: var(--l-muted); font-size: 14px;
}
.l-sol-card li { position: relative; padding-left: 22px; }
.l-sol-card li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--l-indigo-50); border: 2.5px solid var(--l-indigo);
}
.l-sol-card:nth-child(2) li::before { background: #CFFAFE; border-color: #06B6D4; }
.l-sol-card:nth-child(3) li::before { background: #FED7AA; border-color: var(--l-amber); }
.l-sol-card:nth-child(4) li::before { background: #EDE9FE; border-color: #8B5CF6; }

/* Tier badge — kart üst-sağ köşe (PRO = amber, BUSINESS = mor) */
.l-sol-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .03em;
    color: #fff;
    text-transform: uppercase;
}
.l-sol-badge--pro {
    background: linear-gradient(135deg, var(--l-amber), var(--l-pink));
    box-shadow: 0 4px 12px rgba(245, 158, 11, .3);
}
.l-sol-badge--business {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, .3);
}

/* ============================================================
   5. HOW IT WORKS
   ============================================================ */
.l-how { background: linear-gradient(180deg, #fff 0%, var(--l-bg-soft) 100%); }
.l-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
@media (max-width: 900px) { .l-steps { grid-template-columns: 1fr; } }
.l-step {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: var(--l-r-card-lg); padding: 26px 22px;
    position: relative; z-index: 1;
}
.l-step .num {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--l-indigo), var(--l-pink));
    color: #fff; font-weight: 900; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(108,99,255,.35); margin-bottom: 14px;
}
.l-step h4 { font-size: 17px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
.l-step p { font-size: 13.5px; color: var(--l-muted); margin: 0 0 16px; line-height: 1.45; }
.l-step .mock {
    background: #F8FAFC; border: 1px dashed var(--l-border); border-radius: 12px;
    padding: 12px; min-height: 128px;
    display: flex; align-items: center; justify-content: center;
}
.l-tmbgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; }
.l-tmb { height: 48px; border-radius: 7px; }
.l-tmb:nth-child(1) { background: linear-gradient(135deg, #A855F7, #EC4899); }
.l-tmb:nth-child(2) { background: linear-gradient(135deg, #06B6D4, #6366F1); }
.l-tmb:nth-child(3) { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.l-tmb:nth-child(4) { background: linear-gradient(135deg, #10B981, #06B6D4); }
.l-chat { display: flex; flex-direction: column; gap: 6px; width: 100%; font-size: 11.5px; }
.l-chat .b { padding: 6px 10px; border-radius: 10px; max-width: 80%; }
.l-chat .ai { background: var(--l-indigo-50); color: var(--l-indigo); align-self: flex-start; border-bottom-left-radius: 3px; font-weight: 600; }
.l-chat .u { background: var(--l-ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.l-live { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.l-check {
    width: 42px; height: 42px; border-radius: 50%; background: #DCFCE7; color: #15803d;
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px;
}
.l-url-badge {
    background: #fff; border: 1px solid var(--l-border); border-radius: 8px;
    padding: 6px 10px; font-family: ui-monospace, Menlo, monospace;
    font-size: 11px; color: var(--l-ink); box-shadow: var(--l-shadow-sm);
}
.l-wa-msg {
    background: #fff; border-radius: 8px 8px 8px 2px; padding: 8px 10px;
    font-size: 11px; box-shadow: 0 1px 1px rgba(15,23,42,.08);
    max-width: 90%; align-self: flex-start; border: 1px solid #d8e4d3;
}
.l-wa-msg::before {
    content: ""; display: block; width: 6px; height: 6px;
    background: var(--l-wa); border-radius: 50%; margin-bottom: 4px;
}
.l-step .mock.wa-fake { background: var(--l-wa-bg); justify-content: flex-start; }

.l-steps::before {
    content: ""; position: absolute; top: 42px; left: 8%; right: 8%; height: 2px;
    background-image: linear-gradient(90deg, #cbd5e1 50%, transparent 50%);
    background-size: 10px 2px; z-index: 0;
}
@media (max-width: 900px) { .l-steps::before { display: none; } }

/* ============================================================
   6. AD MAGIC (full-bleed, File 1 stilinde)
   ============================================================ */
.l-magic {
    background: linear-gradient(135deg, #4338CA 0%, #6C63FF 35%, #8B5CF6 75%, #3F2B96 100%);
    color: #fff; padding: 96px 0; position: relative; overflow: hidden;
}
.l-magic::before {
    content: ""; position: absolute; right: -10%; top: -30%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
    pointer-events: none;
}
.l-magic::after {
    content: ""; position: absolute; left: -15%; bottom: -30%;
    width: 50%; height: 70%;
    background: radial-gradient(circle, rgba(252,211,77,.15), transparent 60%);
    pointer-events: none;
}
.l-magic-inner { position: relative; z-index: 1; }
.l-magic .l-eyebrow { color: #FDE68A; }
.l-magic h2 {
    font-size: clamp(34px, 5vw, 56px); font-weight: 900;
    letter-spacing: -.025em; line-height: 1.05; margin: 14px 0 14px;
}
.l-magic .lead { font-size: 19px; color: rgba(255,255,255,.85); margin: 0 0 48px; max-width: 680px; }
.l-magic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1000px) { .l-magic-grid { grid-template-columns: 1fr; gap: 40px; } }
.l-magic-steps { display: flex; flex-direction: column; gap: 24px; }
.l-mstep { display: flex; gap: 18px; align-items: flex-start; }
.l-mstep .n {
    width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.3);
    color: #fff; font-weight: 900; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
}
.l-mstep .body { padding-top: 10px; font-size: 17px; line-height: 1.45; color: rgba(255,255,255,.95); font-weight: 500; }
.l-mstep .body strong { color: #FDE68A; font-weight: 700; }
@media (max-width: 900px) { .l-magic { padding: 64px 0; } }

/* WhatsApp screen mockup */
.l-wa-screen {
    background: var(--l-wa-bg); border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
    border: 8px solid #0F172A;
    max-width: 420px; margin: 0 auto;
}
.l-wa-header {
    background: var(--l-wa-dark); color: #fff;
    display: flex; align-items: center; gap: 10px; padding: 14px 16px;
}
.l-wa-header .av {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--l-indigo), var(--l-pink));
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
}
.l-wa-header .nm { font-weight: 700; font-size: 15px; line-height: 1.1; }
.l-wa-header .nm small { font-weight: 400; color: rgba(255,255,255,.7); font-size: 11px; display: block; margin-top: 1px; }
.l-wa-body {
    padding: 18px 14px; display: flex; flex-direction: column; gap: 6px;
    min-height: 380px;
    background:
        linear-gradient(rgba(229,221,213,.92), rgba(229,221,213,.92)),
        repeating-conic-gradient(from 0deg, #d9cfc0 0deg 10deg, #e5ddd5 10deg 20deg);
}
.l-wa-bub {
    padding: 8px 10px; border-radius: 8px;
    font-size: 13.5px; line-height: 1.4; max-width: 78%;
    box-shadow: 0 1px .5px rgba(0,0,0,.13); color: var(--l-ink);
}
.l-wa-bub.in { background: #fff; align-self: flex-start; border-top-left-radius: 0; }
.l-wa-bub.out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 0; font-weight: 600; }
.l-wa-time { font-size: 10px; color: #667781; float: right; margin-left: 6px; margin-top: 4px; }
.l-wa-card { background: #fff; border-radius: 8px; padding: 8px; margin-top: 4px; border: 1px solid #e5e0d6; }
.l-wa-card .img {
    height: 84px; border-radius: 6px; margin-bottom: 6px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F59E0B 100%);
    position: relative;
}
.l-wa-card .img::after {
    content: "FORM PROGRAMI"; position: absolute; left: 8px; bottom: 6px;
    color: #fff; font-weight: 900; font-size: 11px; letter-spacing: .02em;
}
.l-wa-card .ttl { font-weight: 800; font-size: 13px; color: var(--l-ink); margin-bottom: 2px; }
.l-wa-card .meta { font-size: 11.5px; color: var(--l-muted); }

/* ============================================================
   7. TEMPLATES
   ============================================================ */
.l-tpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .l-tpl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .l-tpl-grid { grid-template-columns: 1fr; } }
.l-tpl {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: var(--l-r-card); overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative; cursor: pointer;
}
.l-tpl:hover { transform: translateY(-6px); box-shadow: var(--l-shadow-glow-soft); }
.l-tpl-preview { height: 200px; position: relative; overflow: hidden; }
.l-tpl-preview .lines { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.l-tpl-preview .ln { height: 6px; background: rgba(255,255,255,.55); border-radius: 3px; }
.l-tpl-preview .ln.w70 { width: 70%; }
.l-tpl-preview .ln.w90 { width: 90%; }
.l-tpl-preview .ln.w50 { width: 50%; }
.l-tpl-preview .ttl {
    position: absolute; left: 14px; top: 14px; right: 14px;
    color: #fff; font-weight: 900; font-size: 18px;
    letter-spacing: -.01em; line-height: 1.1;
}
.l-tpl-preview .chip {
    position: absolute; right: 14px; top: 14px;
    background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
    padding: 4px 10px; border-radius: 100px;
    font-size: 10px; font-weight: 700; color: #fff;
}
.l-tpl-info { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.l-tpl-info h4 { font-size: 16px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.l-tpl-info .cat { font-size: 12px; color: var(--l-muted); font-weight: 600; }
/* Template preview gradient themes */
.l-tpl-1 .l-tpl-preview { background: linear-gradient(135deg, #6C63FF 0%, #A855F7 60%, #EC4899 100%); }
.l-tpl-2 .l-tpl-preview { background: linear-gradient(135deg, #F472B6 0%, #FB923C 100%); }
.l-tpl-3 .l-tpl-preview { background: linear-gradient(135deg, #0F172A 0%, #6366F1 100%); }
.l-tpl-4 .l-tpl-preview { background: linear-gradient(135deg, #065F46 0%, #10B981 100%); }
.l-tpl-5 .l-tpl-preview { background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%); }
.l-tpl-6 .l-tpl-preview { background: linear-gradient(135deg, #FBBF24 0%, #F472B6 60%, #A78BFA 100%); }

/* ============================================================
   8. BRAND ASSISTANT
   ============================================================ */
.l-brand { background: linear-gradient(180deg, var(--l-bg-soft) 0%, #fff 100%); }
.l-brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .l-brand-grid { grid-template-columns: 1fr; } }
.l-brand-card {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: var(--l-r-card); padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
}
.l-dlg { display: flex; flex-direction: column; gap: 8px; }
.l-dlg .u, .l-dlg .a {
    padding: 10px 14px; border-radius: 14px;
    font-size: 14px; line-height: 1.4; max-width: 88%;
}
.l-dlg .u {
    background: var(--l-ink); color: #fff;
    align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600;
}
.l-dlg .a {
    background: var(--l-indigo-50); color: var(--l-indigo);
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.l-brand-card .ph-img {
    height: 120px; border-radius: 12px;
    background: linear-gradient(135deg, #A78BFA, #F472B6 50%, #FBBF24);
    position: relative; display: flex; align-items: flex-end; justify-content: space-between;
    padding: 10px 12px;
}
.l-brand-card .ph-img::before {
    content: "AI Görsel"; color: rgba(255,255,255,.85);
    font-weight: 700; font-size: 12px;
}
.l-brand-card .dl {
    background: rgba(255,255,255,.92); color: var(--l-ink);
    font-weight: 700; font-size: 11px;
    padding: 5px 10px; border-radius: 100px;
}
.l-brand-cta { text-align: center; margin-top: 36px; font-weight: 700; color: var(--l-indigo); font-size: 16px; }
.l-brand-cta a { text-decoration: none; color: inherit; }
.l-brand-cta a:hover { text-decoration: underline; }

/* ============================================================
   9. PRICING (DB-driven foreach ile render, mevcut paketler korunur)
   Selector'lar mevcut HTML class adlarıyla uyumlu (#paketler kapsamı dışında!)
   ============================================================ */
.l-pricing { background: #fff; }
.l-toggle-wrap { display: flex; justify-content: center; }
.l-toggle {
    display: inline-flex; background: var(--l-bg-soft);
    border: 1px solid var(--l-border); border-radius: 100px;
    padding: 5px; margin: 0 auto 40px; align-items: center;
}
.l-toggle button {
    padding: 12px 22px; border-radius: 100px;
    font-weight: 700; font-size: 14px; color: var(--l-muted);
    min-height: 44px; background: none; border: 0; cursor: pointer;
    transition: all .2s ease; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px;
}
.l-toggle button.active { background: var(--l-ink); color: #fff; }
.l-toggle .save {
    display: inline-block;
    background: linear-gradient(135deg, #A78BFA, var(--l-pink));
    color: #fff; font-size: 10.5px; font-weight: 800;
    padding: 2px 7px; border-radius: 100px; vertical-align: middle;
}

.l-price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; align-items: stretch;
}
@media (max-width: 900px) {
    .l-price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.l-price {
    background: #fff; border: 1.5px solid var(--l-border);
    border-radius: var(--l-r-card-lg); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative; transition: border-color .2s, box-shadow .2s;
}
.l-price.l-price--featured {
    border-color: var(--l-indigo); box-shadow: var(--l-shadow-glow);
    transform: translateY(-8px); background: linear-gradient(180deg, #fff, #FAFAFF);
}
.l-price.l-price--current { border-color: #10B981; }
.l-price.l-price--featured::before {
    content: "⭐ En Popüler"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--l-indigo), var(--l-pink));
    color: #fff; padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 800; letter-spacing: .01em;
    box-shadow: 0 6px 18px rgba(108,99,255,.4); white-space: nowrap;
}
.l-price.l-price--current::before {
    content: "✓ Mevcut Paketiniz";
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: #10B981; color: #fff;
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 800; white-space: nowrap;
}
@media (max-width: 900px) { .l-price.l-price--featured { transform: none; } }
.l-price .nm { font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.l-price .desc { color: var(--l-muted); font-size: 14px; margin: -6px 0 0; min-height: 40px; }
.l-price-amount {
    display: flex; align-items: baseline; gap: 6px;
    font-size: clamp(38px, 4vw, 52px); font-weight: 900;
    letter-spacing: -.03em; line-height: 1;
}
.l-price-amount .per { font-size: 15px; font-weight: 600; color: var(--l-muted); letter-spacing: 0; }
.l-price-yearly-note { font-size: 12px; color: var(--l-muted); margin-top: -10px; display: none; }
.l-price-save { font-size: 13px; color: #15803d; font-weight: 600; margin-top: -10px; display: none; }
.l-price ul {
    list-style: none; padding: 0; margin: 6px 0 0;
    display: flex; flex-direction: column; gap: 10px;
    font-size: 14.5px; color: var(--l-ink);
}
.l-price li {
    display: flex; gap: 10px; align-items: flex-start; line-height: 1.4;
}
.l-price li .y { color: #15803d; font-weight: 700; flex-shrink: 0; }
.l-price li .n { color: var(--l-border); font-weight: 700; flex-shrink: 0; }
.l-price li.dim { color: var(--l-muted); }

/* Welcome bonus block — mevcut paketler.php tasarımıyla uyumlu */
.l-bonus {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1.5px solid #F59E0B; border-radius: 12px;
    padding: 12px 14px; margin: 4px 0;
    display: flex; flex-direction: column; gap: 6px;
}
.l-bonus-badge {
    display: inline-block; align-self: flex-start;
    background: #B45309; color: #fff;
    font-size: 10px; font-weight: 800; letter-spacing: 1px;
    padding: 3px 8px; border-radius: 4px;
}
.l-bonus-line1 { color: #78350F; font-size: 14px; line-height: 1.45; }
.l-bonus-line1 strong { color: #B45309; font-size: 16px; font-weight: 800; }
.l-bonus-line2 { color: #92400E; font-size: 12px; opacity: .9; line-height: 1.4; }
.l-bonus-line2 strong { color: #78350F; }

.l-price .l-btn { margin-top: auto; width: 100%; }

/* ============================================================
   10. FAQ
   ============================================================ */
.l-faq { background: var(--l-bg-soft); }
.l-faq-wrap { max-width: 780px; margin: 0 auto; }
.l-faq-item {
    background: #fff; border: 1px solid var(--l-border);
    border-radius: 14px; margin-bottom: 10px; overflow: hidden;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.l-faq-item[open] { box-shadow: var(--l-shadow-md); border-color: #cfccff; }
.l-faq-item summary {
    cursor: pointer; list-style: none;
    padding: 20px 22px; font-size: 16px; font-weight: 700;
    color: var(--l-ink); display: flex; justify-content: space-between;
    align-items: center; gap: 16px; min-height: 64px;
}
.l-faq-item summary::-webkit-details-marker { display: none; }
.l-faq-item summary::after {
    content: "+"; width: 28px; height: 28px; border-radius: 50%;
    background: var(--l-indigo-50); color: var(--l-indigo);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 20px; font-weight: 700;
    transition: transform .25s ease;
}
.l-faq-item[open] summary::after { content: "−"; background: var(--l-indigo); color: #fff; transform: rotate(180deg); }
.l-faq-item .ans {
    padding: 0 22px 22px; color: var(--l-muted);
    font-size: 15px; line-height: 1.6;
}
.l-faq-item .ans a { color: var(--l-indigo); font-weight: 600; }
.l-faq-item .ans strong { color: var(--l-ink); }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.l-cta {
    background: linear-gradient(135deg, #6C63FF 0%, #8B5CF6 50%, #EC4899 100%);
    color: #fff; text-align: center; padding: 96px 24px;
}
.l-cta h2 {
    font-size: clamp(34px, 5vw, 60px); font-weight: 900;
    letter-spacing: -.025em; margin: 0 0 20px; line-height: 1.05;
}
.l-cta p { color: rgba(255,255,255,.88); font-size: 17px; margin: 0 0 32px; }
.l-cta .l-btn--primary { background: #fff; color: var(--l-indigo); }
.l-cta .l-btn--primary:hover { background: #FFFBEB; color: var(--l-ink); }
.l-cta .micro { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.75); }

.l-footer { background: #0F172A; color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.l-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .l-foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 420px) { .l-foot-grid { grid-template-columns: 1fr; } }
.l-foot-brand .l-nav-logo { color: #fff; }
.l-foot-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); margin: 14px 0 0; max-width: 280px; line-height: 1.5; }
.l-foot-col h5 {
    font-size: 13px; font-weight: 800; letter-spacing: .06em;
    text-transform: uppercase; color: #fff; margin: 0 0 14px;
}
.l-foot-col a {
    display: block; font-size: 14px; padding: 5px 0;
    color: rgba(255,255,255,.65); text-decoration: none;
}
.l-foot-col a:hover { color: #fff; }
.l-foot-bottom {
    margin-top: 36px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.45);
}
.l-socials { display: flex; gap: 12px; }
.l-socials a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
}
.l-socials a:hover { background: var(--l-indigo); color: #fff; }

/* ============================================================
   11. MID-PAGE CTA (between Magic and Templates)
   ============================================================ */
.l-midcta {
    padding: 56px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 100%);
    border-top: 1px solid rgba(108,99,255,.08);
    border-bottom: 1px solid rgba(108,99,255,.08);
}
.l-midcta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.l-midcta-text { flex: 1 1 320px; }
.l-midcta-text h3 {
    font-size: clamp(22px, 3vw, 30px); font-weight: 800;
    line-height: 1.2; letter-spacing: -.02em; margin: 0 0 8px;
    color: var(--l-ink);
}
.l-midcta-text p {
    margin: 0; font-size: 15px; color: var(--l-muted); line-height: 1.55;
}
@media (max-width: 640px) {
    .l-midcta { padding: 40px 0; }
    .l-midcta-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 20px; }
    .l-midcta-inner .l-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   12. TRUST BAND (above pricing grid)
   ============================================================ */
.l-trust-band {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 10px 22px; margin: 18px auto 28px; max-width: 920px;
    padding: 14px 20px; border-radius: 14px;
    background: #F8FAFC; border: 1px solid #E2E8F0;
    font-size: 13px; font-weight: 600; color: #475569;
}
.l-trust-band span {
    display: inline-flex; align-items: center; gap: 6px;
}
.l-trust-band svg { color: #10B981; flex-shrink: 0; }
@media (max-width: 640px) {
    .l-trust-band {
        gap: 8px 14px; font-size: 12px; padding: 12px 14px; margin: 14px 14px 22px;
    }
}

/* ============================================================
   13. PRICE CARD GUARANTEE BADGE
   ============================================================ */
.l-price-guarantee {
    margin-top: 12px; text-align: center;
    font-size: 12px; font-weight: 600; color: var(--l-muted);
    letter-spacing: .01em;
}

/* ============================================================
   14. MOBILE STICKY BOTTOM CTA
   ============================================================ */
.l-mobile-sticky-cta {
    position: fixed; left: 12px; right: 12px; bottom: 12px;
    z-index: 100;
    display: none;
    align-items: center; justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, #6C63FF 0%, #5B52E6 100%);
    color: #fff; text-decoration: none;
    border-radius: 14px;
    font-weight: 700; font-size: 15px;
    box-shadow: 0 12px 30px rgba(108,99,255,.4), 0 4px 12px rgba(15,23,42,.12);
    transform: translateY(120%); opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}
.l-mobile-sticky-cta .arrow {
    font-size: 18px; font-weight: 800; line-height: 1;
}
.l-mobile-sticky-cta.show {
    transform: translateY(0); opacity: 1;
}
@media (max-width: 760px) {
    .l-mobile-sticky-cta { display: flex; }
    /* iOS safe-area + footer padding so sticky doesn't cover content */
    body { padding-bottom: 70px; }
    .l-mobile-sticky-cta { bottom: calc(12px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   17. PROMISE BAND (after hero — 4 şeffaf vaat)
   2026-05-25: Şeffaf vaat şeridi. Hero ile problem section arasında,
   kullanıcı landing'e girer girmez 4 net taahhüdü görsün.
   ============================================================ */
.l-promise {
    padding: 16px 20px 0;
}

.l-promise-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 36px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15,23,42,.06);
}
.l-promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0F172A;
    flex: 1;
    padding: 0 16px;
}
.l-promise-item svg {
    flex-shrink: 0;
}
.l-promise-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.l-promise-title {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: #0F172A;
}
.l-promise-sub {
    display: block;
    font-size: 12.5px;
    color: #64748B;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}
.l-promise-divider {
    width: 1px;
    height: 36px;
    background: #E2E8F0;
}
@media (max-width: 900px) {
    .l-promise-band {
        grid-template-columns: 1fr 1fr;
        gap: 20px 28px;
        padding: 24px 26px;
    }
    .l-promise-divider {
        display: none;
    }
}
@media (max-width: 480px) {
    .l-promise {
        padding: 24px 14px 0;
    }
    .l-promise-band {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 18px;
    }
    .l-promise-item {
        font-size: 13.5px;
    }
}

/* ============================================================
   Faz 16b — Superpowers section + landing additions (2026-06-03)
   ============================================================ */

/* ── Hero AI bubble typewriter ── */
.l-ai-bubble span { display: inline; }
.l-typing-active::after {
    content: '|';
    color: #6366F1;
    font-weight: 300;
    animation: l-blink-cur 0.65s step-end infinite;
    margin-left: 1px;
}
@keyframes l-blink-cur {
    from, to { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Karşılaştırma tablosu ── */
.l-cmp-table {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(15,23,42,.06);
}
.l-cmp-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border-bottom: 1px solid #F1F5F9;
}
.l-cmp-row:last-child { border-bottom: 0; }
.l-cmp-head {
    background: #F8FAFC;
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
}
.l-cmp-row--hl { background: #F5F3FF; }
.l-cmp-cell {
    padding: 14px 16px;
    font-size: 13.5px;
    color: #475569;
    display: flex;
    align-items: center;
    border-right: 1px solid #F1F5F9;
}
.l-cmp-cell:last-child { border-right: 0; }
.l-cmp-label { font-weight: 600; color: #0F172A; font-size: 13px; }
.l-cmp-cell--no  { color: #94A3B8; }
.l-cmp-cell--mid { color: #64748B; }
.l-cmp-cell--zekiya {
    font-weight: 700;
    color: #6366F1;
    background: rgba(99,102,241,.04);
}
.l-cmp-head .l-cmp-cell--zekiya {
    color: #fff;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    font-size: 14px;
}

@media (max-width: 640px) {
    .l-cmp-row { grid-template-columns: 1fr 1fr 1fr; }
    .l-cmp-cell:nth-child(2) { display: none; } /* DIY gizle mobilde */
    .l-cmp-cell { padding: 11px 10px; font-size: 12.5px; }
    .l-cmp-label { font-size: 12px; }
}

/* ── Solution kartı gizli güç maddesi ── */
.l-sol-extra {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(99,102,241,.18);
    font-size: 13px;
    color: #6366F1;
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.l-sol-extra-icon { flex-shrink: 0; font-style: normal; }

/* ── Templates all-plans note ── */
.l-tpl-note {
    margin-top: 8px;
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
}

/* ── Sadece Zekiya'da — Superpowers section ── */
.l-superpower {
    background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 60%, #0F172A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.l-superpower::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.35) 0%, transparent 70%);
    pointer-events: none;
}
.l-superpower .l-sec-head { position: relative; }
.l-superpower .l-eyebrow {
    background: rgba(99,102,241,.25);
    color: #A5B4FC;
    border-color: rgba(99,102,241,.4);
}
.l-superpower h2 { color: #fff; }
.l-superpower p  { color: #94A3B8; }

.l-sp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    position: relative;
}
.l-sp-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 22px 20px 20px;
    transition: transform .2s, background .2s, border-color .2s;
}
.l-sp-card:hover {
    transform: translateY(-4px);
    background: rgba(99,102,241,.15);
    border-color: rgba(99,102,241,.4);
}
.l-sp-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.l-sp-card h3 { font-size: 15px; font-weight: 700; color: #E2E8F0; margin: 0 0 8px; }
.l-sp-card p  { font-size: 13px; color: #94A3B8; line-height: 1.55; margin: 0; }

.l-sp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
}
.l-sp-cta-note {
    font-size: 12.5px;
    color: #64748B;
}

/* ── Pricing — reklam şeffaflık bandı ── */
.l-ad-note {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #78350F;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.6;
}
.l-ad-note strong { color: #92400E; }

/* ── Responsive: Superpowers ── */
@media (max-width: 1000px) {
    .l-sp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .l-sp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .l-sp-card { padding: 16px 14px; }
    .l-sp-icon { font-size: 24px; }
    .l-sp-card h3 { font-size: 14px; }
}
@media (max-width: 480px) {
    .l-sp-grid { grid-template-columns: 1fr; }
    .l-ad-note { font-size: 12.5px; padding: 10px 14px; text-align: left; }
}
