/* =====================================================================
   LikedWin — /ozellikler pazarlama sayfası
   marketing.css primitiflerinin (mk-*) üzerine kurulur.
   Panel görselleri CSS maketi (.ft-mock*) — raster ekran görüntüsü yok.
   ===================================================================== */

/* =====================================================================
   1) HERO — ortalanmış başlık + geniş panel maketi
   ===================================================================== */
.ft-hero__copy { max-width: 780px; margin: 0 auto; text-align: center; }
.ft-hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(31px, 4.6vw, 56px); font-weight: 800; line-height: 1.08;
    letter-spacing: -.03em; color: var(--mk-ink); margin: 0 0 16px; text-wrap: balance;
}
.ft-hero__sub {
    font-size: clamp(15px, 1.7vw, 18px); line-height: 1.68; color: var(--muted);
    font-weight: 500; margin: 0 auto 26px; max-width: 600px; text-wrap: pretty;
}
.ft-hero__cta { justify-content: center; }
.ft-hero__trust { justify-content: center; }

/* ---------- Geniş görev paneli maketi ---------- */
.ft-mock {
    position: relative; max-width: 940px; margin: clamp(34px, 5vw, 58px) auto 0;
    background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
    box-shadow: 0 46px 90px -46px rgba(15, 22, 51, .55), 0 2px 6px rgba(15, 22, 51, .05);
    padding: 18px;
    overflow: hidden;
}
.ft-mock__bar { display: flex; align-items: center; gap: 6px; padding: 2px 4px 16px; }
.ft-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.ft-mock__dot:nth-child(1) { background: #ff6058; }
.ft-mock__dot:nth-child(2) { background: #ffbe2f; }
.ft-mock__dot:nth-child(3) { background: #2ac940; }
.ft-mock__url {
    flex: 1; margin-left: 10px; padding: 5px 12px; border-radius: 999px;
    background: var(--bg-soft); color: var(--muted-2);
    font-size: 11px; font-weight: 600; text-align: center;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.ft-mock__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 16px; }
.ft-panel { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%); }
.ft-panel__t {
    display: flex; align-items: center; gap: 8px; margin: 0 0 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 13.5px; font-weight: 800; color: var(--mk-ink);
}
.ft-panel__t i { color: var(--brand); font-size: 13px; }

.ft-opt { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--surface); }
.ft-opt + .ft-opt { margin-top: 8px; }
.ft-opt.is-on { border-color: var(--brand); background: rgba(37, 68, 216, .04); }
.ft-opt__ic { flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: #fff; font-size: 13px; }
/* Blok olmalı: inline kalırsa başlık ve açıklama aynı satıra akıp sarıyor */
.ft-opt__tx { display: block; flex: 1; min-width: 0; }
.ft-opt__n { display: block; font-size: 13px; font-weight: 700; color: var(--mk-ink); }
.ft-opt__d { display: block; font-size: 11px; font-weight: 600; color: var(--muted-2); }
.ft-opt__chk { flex: none; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--line); color: transparent; font-size: 9px; }
.ft-opt.is-on .ft-opt__chk { background: var(--brand); color: #fff; }

/* Şehir çipleri */
.ft-cities { display: flex; flex-wrap: wrap; gap: 7px; }
.ft-city { padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); font-size: 11.5px; font-weight: 700; color: var(--muted); }
.ft-city.is-on { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }

/* Günlük dağıtım çubukları */
.ft-bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; margin-top: 4px; }
.ft-bars span {
    flex: 1; border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, #5b6cf0, #2544d8);
    transform-origin: bottom;
    animation: ftBar 2.6s cubic-bezier(.2, .8, .25, 1) infinite alternate;
    animation-delay: calc(var(--d, 0) * .16s);
}
@keyframes ftBar { from { transform: scaleY(.42); opacity: .55; } to { transform: scaleY(1); opacity: 1; } }
.ft-bars__foot { display: flex; justify-content: space-between; margin-top: 8px; font-size: 10.5px; font-weight: 700; color: var(--muted-2); }

/* Maketin kenarındaki yüzen etiketler */
.ft-badge {
    position: absolute; z-index: 2;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: 0 14px 32px -16px rgba(15, 22, 51, .5);
    font-size: 12px; font-weight: 700; color: var(--mk-ink);
    animation: ftFloat 6.5s ease-in-out infinite;
}
.ft-badge i { color: var(--brand); }
.ft-badge--a { top: 62px; left: -14px; }
.ft-badge--b { bottom: 46px; right: -12px; animation-delay: -3.2s; }
@keyframes ftFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1060px) { .ft-badge { display: none; } }

/* =====================================================================
   2) SÜZÜLEBİLİR ÖZELLİK GRID'İ
   ===================================================================== */
.ft-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: clamp(24px, 3vw, 38px); }
.ft-filter__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 999px;
    background: var(--surface); color: var(--muted); font-size: 13.5px; font-weight: 700;
    transition: all var(--ease);
}
.ft-filter__btn i { font-size: 12.5px; }
.ft-filter__btn:hover { border-color: var(--brand-line-2); color: var(--brand); transform: translateY(-1px); }
.ft-filter__btn.is-active {
    background: var(--mk-grad); border-color: transparent; color: #fff;
    box-shadow: 0 12px 26px -14px rgba(37, 68, 216, .95);
}

.ft-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); }

.ft-card { position: relative; padding: 24px 22px 22px; overflow: hidden; }
/* Üstte ince renkli şerit — hover'da açılır */
.ft-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--mk-grad); transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.2, .8, .25, 1);
}
.ft-card:hover::before { transform: scaleX(1); }
.ft-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.ft-card__t { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 16px; font-weight: 800; color: var(--mk-ink); margin: 0; line-height: 1.3; }
.ft-card__d { font-size: 13.8px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
.ft-card__cat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2);
}
.ft-card__cat i { font-size: 9px; color: var(--brand); }

/* =====================================================================
   3) VİTRİN SATIRLARI
   ===================================================================== */
.ft-show { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4.4vw, 68px); align-items: center; }
.ft-show > * { min-width: 0; }   /* grid çocuğu taşmasın (maketler geniş) */
.ft-show + .ft-show { margin-top: clamp(50px, 6.5vw, 96px); }
.ft-show--flip .ft-show__media { order: -1; }
.ft-show__t {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(23px, 2.9vw, 34px); font-weight: 800; line-height: 1.18;
    letter-spacing: -.024em; color: var(--mk-ink); margin: 14px 0 14px;
}
.ft-show__d { font-size: clamp(14.5px, 1.6vw, 16.5px); line-height: 1.7; color: var(--muted); margin: 0 0 20px; }
.ft-points { display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px; padding: 0; list-style: none; }
.ft-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.55; color: var(--text); }
.ft-points li b { color: var(--mk-ink); }
.ft-points i { flex: none; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 8px; background: var(--ok-bg); color: var(--ok-fg); font-size: 10.5px; }

/* ---------- Bağlı görev akış maketi ---------- */
.ft-flow {
    position: relative; max-width: 440px; margin-inline: auto; padding: 24px 22px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
    box-shadow: 0 34px 70px -38px rgba(15, 22, 51, .48);
}
.ft-flow__node { position: relative; display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.ft-flow__node + .ft-flow__node { margin-top: 34px; }
/* Düğümler arası akan çizgi */
.ft-flow__node + .ft-flow__node::before {
    content: ""; position: absolute; left: 36px; top: -34px; width: 2px; height: 34px;
    background: linear-gradient(180deg, var(--brand-line), var(--brand));
}
.ft-flow__node + .ft-flow__node::after {
    content: ""; position: absolute; left: 32.5px; top: -34px; width: 9px; height: 9px; border-radius: 50%;
    background: var(--brand); box-shadow: 0 0 0 4px rgba(37, 68, 216, .15);
    animation: ftDrop 2.4s cubic-bezier(.5, 0, .5, 1) infinite;
    animation-delay: calc(var(--d, 0) * .8s);
}
@keyframes ftDrop {
    0%       { transform: translateY(0);    opacity: 0; }
    18%      { opacity: 1; }
    82%      { opacity: 1; }
    100%     { transform: translateY(30px); opacity: 0; }
}
.ft-flow__ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; color: #fff; font-size: 17px; }
.ft-flow__tx { display: block; min-width: 0; }
.ft-flow__tx b { display: block; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 14.5px; font-weight: 800; color: var(--mk-ink); }
.ft-flow__tx span { display: block; font-size: 12.5px; color: var(--muted); }
.ft-flow__same {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
    padding: 8px 14px; border-radius: 999px; background: var(--ok-bg); color: var(--ok-fg);
    font-size: 12px; font-weight: 800;
}

/* ---------- Hedefleme maketi ---------- */
.ft-target { max-width: 430px; margin-inline: auto; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 34px 70px -38px rgba(15, 22, 51, .48); }
.ft-target__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.ft-target__row + .ft-target__row { border-top: 1px dashed var(--line-strong); }
.ft-target__ring {
    flex: none; width: 62px; height: 62px; border-radius: 50%;
    background: conic-gradient(#db2777 0 62%, #2563eb 62% 100%);
    display: grid; place-items: center;
}
.ft-target__ring i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--surface); color: var(--mk-ink); font-size: 15px; }
.ft-target__tx { display: block; flex: 1; min-width: 0; }
.ft-target__tx b { display: block; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 14.5px; font-weight: 800; color: var(--mk-ink); }
.ft-target__tx > span { display: block; font-size: 12.5px; color: var(--muted); }
/* > span kuralından sonra gelmeli ve onu yenmeli (flex kalsın) */
.ft-target__tx > .ft-target__legend { display: flex; gap: 14px; margin-top: 6px; font-size: 11.5px; font-weight: 700; color: var(--muted); }
.ft-target__legend em { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }

/* =====================================================================
   4) PLATFORMLAR
   ===================================================================== */
.ft-plats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(10px, 1.6vw, 16px); }
.ft-plat {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 13px 20px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    font-size: 14px; font-weight: 700; color: var(--mk-ink);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.ft-plat:hover { transform: translateY(-3px); border-color: var(--brand-line-2); box-shadow: var(--mk-card); }
.ft-plat__ic {
    display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px;
    color: #fff; font-size: 14px; background: var(--grad, var(--mk-grad));
}
.ft-plat__ic img { width: 17px; height: 17px; object-fit: contain; }

/* =====================================================================
   5) PANELDE NELER VAR (mini kartlar)
   ===================================================================== */
.ft-mini { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 20px); }
.ft-mini__card { padding: 22px 20px; text-align: center; }
.ft-mini__ico { margin: 0 auto 14px; }
.ft-mini__t { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 15px; font-weight: 800; color: var(--mk-ink); margin: 0 0 7px; }
.ft-mini__d { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }

/* =====================================================================
   6) RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
    .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ft-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .ft-mock__grid { grid-template-columns: 1fr; }
    .ft-show { grid-template-columns: 1fr; gap: 30px; }
    .ft-show--flip .ft-show__media { order: 0; }
}
@media (max-width: 640px) {
    .ft-grid { grid-template-columns: 1fr; }
    .ft-mock { padding: 13px; border-radius: 22px; }
    .ft-mock__url { display: none; }
    .ft-filter { gap: 7px; }
    .ft-filter__btn { padding: 9px 14px; font-size: 12.5px; }
    .ft-flow { padding: 18px 16px; }
    .ft-plat { padding: 11px 16px; font-size: 13px; }
}

/* =====================================================================
   7) HAREKETİ AZALT
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .ft-bars span, .ft-badge, .ft-flow__node + .ft-flow__node::after { animation: none; }
    .ft-card::before { transition: none; }
}
