/* ============================================================
   BestQRMenu — Premium Landing
   Light theme only. Turquoise + soft mint, amber accent.
   ============================================================ */

:root {
    --primary: #0D9488;
    --primary-500: #14B8A6;
    --primary-700: #0F766E;
    --background: #F2FAFA;
    --content-1: #E8FAF6;
    --foreground: #124B47;
    --warning: #F59E0B;
    --white: #FFFFFF;

    --fg-soft: rgba(18, 75, 71, 0.66);
    --fg-faint: rgba(18, 75, 71, 0.42);
    --line: rgba(13, 148, 136, 0.14);
    --line-strong: rgba(13, 148, 136, 0.26);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow-sm: 0 2px 10px -2px rgba(15, 118, 110, 0.10);
    --shadow-md: 0 14px 36px -14px rgba(15, 118, 110, 0.20);
    --shadow-lg: 0 32px 70px -28px rgba(15, 118, 110, 0.30);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --font-display: 'Sora', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --section-pad: clamp(72px, 9vw, 130px);
    --container: 1200px;
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--foreground);
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(20, 184, 166, 0.25); }

/* ---------- Layout helpers ---------- */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.section { padding: var(--section-pad) 0; position: relative; }

[id] { scroll-margin-top: 92px; }

.section-head {
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 72px);
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}

.section-badge svg { width: 15px; height: 15px; color: var(--primary); }

.section-title {
    font-size: clamp(28px, 4.2vw, 46px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--fg-soft);
}

/* ---------- Reveal animations ---------- */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-left.in-view, .reveal-right.in-view { transform: translateX(0); }

/* ---------- Background blobs ---------- */

.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: blobFloat 22s ease-in-out infinite alternate;
}

.blob-1 {
    width: 560px; height: 560px;
    top: -180px; right: -140px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.30), transparent 70%);
}

.blob-2 {
    width: 480px; height: 480px;
    top: 38%; left: -200px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.22), transparent 70%);
    animation-delay: -8s;
}

.blob-3 {
    width: 420px; height: 420px;
    bottom: -160px; right: 12%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -34px) scale(1.08); }
    100% { transform: translate(-30px, 26px) scale(0.96); }
}

/* ---------- QR Scroll Guide ---------- */

.qr-guide-wrap {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.qr-guide-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qr-guide-ghost {
    stroke: rgba(13, 148, 136, 0.07);
    stroke-width: 0.5;
    stroke-dasharray: 1 3;
}

.qr-guide-drawn {
    stroke: url(#qrGuideGrad);
    stroke-width: 0.65;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.qr-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    padding: 7px;
    background: rgba(242, 250, 250, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.22);
    box-shadow: 0 4px 18px -4px rgba(15, 118, 110, 0.15);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    z-index: -1;
    overflow: hidden;
}

.qr-code-svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .qr-dot          { width: 64px; height: 64px; padding: 5px; }
    .qr-guide-ghost  { stroke: rgba(13, 148, 136, 0.04); }
    .qr-guide-drawn  { stroke-width: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
    .qr-guide-wrap  { transition: none; }
    .qr-guide-drawn { stroke-dashoffset: 0 !important; }
    .qr-dot         { display: none !important; }
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
    position: relative;
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary) 55%, var(--primary-700));
    box-shadow: 0 12px 30px -10px rgba(13, 148, 136, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(20, 184, 166, 0.4), rgba(245, 158, 11, 0.28));
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   1. NAVBAR
   ============================================================ */

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: var(--glass);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px -16px rgba(15, 118, 110, 0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary, #0f172a);
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
}

@media (min-width: 900px) {
    .brand-logo {
        max-width: 220px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
    color: var(--primary-700);
    background: rgba(13, 148, 136, 0.08);
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }

.nav-cta > * { flex-shrink: 0; }

.nav-login {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-700);
    padding: 9px 14px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s;
}

.nav-login:hover { background: rgba(13, 148, 136, 0.08); }

/* Dil seçici — dijital menü temalarındaki (slide-menu-lang-item) bayrak +
   isim + onay tiki desenine hizalı, navbar'a uygun kompakt sürüm. */

.nav-lang { position: relative; }

.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 7px 12px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.nav-lang-btn:hover { background: var(--content-1); }

.nav-lang.open .nav-lang-btn { border-color: var(--primary-500); background: var(--content-1); }

.nav-lang-flag {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.18);
}

.nav-lang-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s var(--ease-out);
}

.nav-lang.open .nav-lang-chevron { transform: rotate(180deg); }

.nav-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    z-index: 60;
}

.nav-lang.open .nav-lang-menu { display: block; }

.nav-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    background: none;
    border: none;
    border-radius: 10px;
    padding: 9px 10px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.nav-lang-item:hover { background: var(--content-1); }

.nav-lang-item span:not(.nav-lang-flag) { flex: 1 1 auto; }

.nav-lang-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary-700);
    opacity: 0;
}

.nav-lang-item.active { background: var(--content-1); font-weight: 600; }

.nav-lang-item.active .nav-lang-check { opacity: 1; }

.mobile-lang-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.mobile-lang-list .nav-lang-item { padding: 11px 10px; }

.nav-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: var(--white);
    place-items: center;
    color: var(--primary-700);
}

.nav-burger svg { width: 21px; height: 21px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    z-index: 99;
    padding: 14px 20px 24px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    padding: 13px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--line);
}

.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ============================================================
   2. HERO
   ============================================================ */

.hero {
    position: relative;
    padding: calc(76px + clamp(48px, 8vw, 100px)) 0 clamp(64px, 8vw, 110px);
    overflow: hidden;
    background-image: url('/Clients/landing/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(242, 250, 250, 0.82) 0%,
        rgba(232, 250, 246, 0.70) 45%,
        rgba(242, 250, 250, 0.40) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 26px;
}

.hero-badge svg { width: 15px; height: 15px; color: var(--warning); }

.hero-title {
    font-size: clamp(36px, 5.4vw, 62px);
    margin-bottom: 22px;
}

.hero-title .grad {
    background: linear-gradient(110deg, var(--primary-500) 10%, var(--primary) 45%, var(--warning) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: clamp(15.5px, 1.7vw, 18.5px);
    color: var(--fg-soft);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    color: var(--primary-700);
    line-height: 1.1;
}

.stat-label {
    font-size: 13.5px;
    color: var(--fg-faint);
    font-weight: 500;
}

/* --- Hero video --- */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 540px;
}

/* --- Hero image collage --- */

.hero-img-collage {
    position: relative;
    width: 100%;
    max-width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px;
    z-index: 2;
    animation: collageFloat 7s ease-in-out infinite;
}

@keyframes collageFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* Ana restoran görseli — sol sütun tamamı */
.hic-main {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}

.hic-main:hover img { transform: scale(1.04); }

.hic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,148,136,0.10) 0%, rgba(18,75,71,0.30) 100%);
    pointer-events: none;
}

/* Sağ sütun — QR menü + yemek */
.hic-side {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hic-side-top,
.hic-side-bottom {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.hic-side-top img,
.hic-side-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}

.hic-side-top:hover img,
.hic-side-bottom:hover img { transform: scale(1.05); }

.hic-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-700);
    box-shadow: 0 2px 10px rgba(13,148,136,0.18);
    pointer-events: none;
}

.hic-badge svg { width: 14px; height: 14px; color: var(--primary); }

/* Alt yatay şerit — içecekler */
.hic-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hic-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 60%;
    transition: transform .6s var(--ease-out);
}

.hic-bottom:hover img { transform: scale(1.04); }

.hic-overlay-soft {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,75,71,0.28) 0%, transparent 60%);
    pointer-events: none;
}

.hic-bottom-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    pointer-events: none;
}

.hic-bottom-label svg { width: 15px; height: 15px; }

.phone {
    width: 285px;
    border-radius: 44px;
    padding: 12px;
    background: linear-gradient(160deg, #134e4a, #0f3733);
    box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 2;
}

.phone::before {
    content: "";
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 26px;
    border-radius: 0 0 16px 16px;
    background: #0f3733;
    z-index: 3;
}

.phone-screen {
    border-radius: 34px;
    overflow: hidden;
    background: var(--background);
    aspect-ratio: 9 / 19;
    position: relative;
}

.hero-phone { animation: phoneFloat 7s ease-in-out infinite; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0.4deg); }
    50%      { transform: translateY(-18px) rotate(-0.6deg); }
}

/* --- Mock menu UI inside phone --- */

.mock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 42px 16px 16px;
    gap: 12px;
}

.mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.mock-logo i {
    width: 26px; height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    font-style: normal;
}

.mock-logo i svg { width: 14px; height: 14px; }

.mock-lang {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
    padding: 4px 9px;
    border-radius: 999px;
}

.mock-search {
    height: 34px;
    border-radius: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    font-size: 11px;
    color: var(--fg-faint);
}

.mock-search svg { width: 13px; height: 13px; }

.mock-cats {
    display: flex;
    gap: 7px;
    overflow: hidden;
}

.mock-cat {
    flex-shrink: 0;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
    background: var(--white);
    border: 1px solid var(--line);
}

.mock-cat.on {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border-color: transparent;
}

.mock-card {
    display: flex;
    gap: 10px;
    padding: 9px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.mock-thumb {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d7f5ec);
}

.mock-thumb svg { width: 22px; height: 22px; }

.mock-thumb.amber {
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.mock-lines { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }

.mock-line { height: 8px; border-radius: 999px; background: rgba(18, 75, 71, 0.12); }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-line.w80 { width: 80%; }

.mock-price {
    align-self: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-700);
}

.mock-banner {
    margin-top: auto;
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary), var(--primary-700));
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.mock-banner svg { width: 18px; height: 18px; color: #fcd34d; flex-shrink: 0; }

/* --- Floating cards around phone --- */

.float-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 14px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-700);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
    will-change: transform;
}

.float-card svg { width: 17px; height: 17px; color: var(--primary); }

.float-card.amber svg { color: var(--warning); }

.fc-1 { top: 7%; left: -4%; animation-delay: -1s; }
.fc-2 { top: 24%; right: -7%; animation-delay: -2.4s; }
.fc-3 { top: 49%; left: -11%; animation-delay: -3.6s; }
.fc-4 { top: 66%; right: -5%; animation-delay: -1.8s; }
.fc-5 { bottom: 9%; left: 1%; animation-delay: -4.6s; }
.fc-6 { bottom: -2%; right: 9%; animation-delay: -3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-13px); }
}

.hero-glow {
    position: absolute;
    width: 460px; height: 460px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22), rgba(245, 158, 11, 0.07) 55%, transparent 72%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   3. TRUST STRIP
   ============================================================ */

.trust { padding: clamp(36px, 5vw, 60px) 0; }

.trust-text {
    text-align: center;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 30px;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--fg-soft);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, color 0.3s, border-color 0.3s;
}

.trust-item svg { width: 18px; height: 18px; color: var(--primary); }

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--primary-700);
    border-color: var(--line-strong);
}

/* ---------- #urun — RESTORAN PANELİ cihaz görselleri ---------- */

#urun .urun-devices {
    display: flex;
    justify-content: center;
    position: relative;
}

#urun .urun-panel-browser {
    width: 100%;
    max-width: 350px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: rgba(15, 118, 110, 0.5) 0 44px 80px -34px;
    transition: transform 0.45s var(--ease-out);
    transform-origin: center center;
}

#urun .urun-panel-browser:hover {
    transform: scale(1.045);
}

#urun .urun-panel-browser img {
    width: 100%;
    display: block;
}

#urun .urun-panel-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

#urun .urun-panel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

#urun .urun-panel-dot-red { background: rgb(255, 95, 87); }
#urun .urun-panel-dot-yellow { background: rgb(254, 188, 46); }
#urun .urun-panel-dot-green { background: rgb(40, 200, 64); }

#urun .urun-panel-url {
    margin-left: 14px;
    flex: 1 1 0%;
    height: 22px;
    border-radius: 7px;
    background: var(--content-1);
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: var(--fg-faint);
    gap: 6px;
    min-width: 0;
}

#urun .urun-panel-url span {
    display: inline-flex;
    color: var(--primary);
}

#urun .urun-panel-url svg {
    width: 12px;
    height: 12px;
}

#urun .urun-panel-phone {
    position: absolute;
    right: -8px;
    bottom: -20px;
    width: 348px;
    border-radius: 14px;
    overflow: hidden;
    background: rgb(11, 36, 34);
    padding: 6px;
    box-shadow: rgba(6, 48, 43, 0.6) 0 28px 50px -24px;
    transition: transform 0.45s var(--ease-out);
    transform-origin: center bottom;
    z-index: 2;
}

#urun .urun-panel-phone:hover {
    transform: scale(1.06);
}

#urun .urun-panel-phone-screen {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

#urun .urun-panel-phone-screen img {
    width: 100%;
    display: block;
}

/* ============================================================
   4. VISUAL SHOWCASE (marquee gallery)
   ============================================================ */

.showcase { overflow: visible; }

/* Gallery card base */
.gallery-card {
    position: relative;
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px -12px rgba(15, 118, 110, 0.18), 0 2px 8px -2px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    cursor: zoom-in;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 56px -16px rgba(15, 118, 110, 0.32), 0 4px 16px -4px rgba(0,0,0,0.12);
}

.gallery-card.tall { width: 210px; height: 300px; }

/* Image fill */
.gc-bg {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(15, 118, 110, 0.5);
    border-radius: inherit;
    overflow: hidden;
}

.gc-bg svg { width: 52px; height: 52px; }

.gc-bg img,
.gc-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-out);
}

.gallery-card:hover .gc-bg img { transform: scale(1.08); }

.gallery-card.has-photo .gc-bg {
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
}

.gallery-card.has-photo .gc-bg svg { display: none; }

/* Card color backgrounds */
.gc-1 { background: linear-gradient(140deg, #d7f5ec, #aae8d8); }
.gc-2 { background: linear-gradient(140deg, #fdf0d5, #fbe1a8); }
.gc-3 { background: linear-gradient(140deg, #ccf3ea, #8fdcc9); }
.gc-4 { background: linear-gradient(140deg, #e2f8f2, #b9ecdd); }
.gc-5 { background: linear-gradient(140deg, #d2f1ed, #9adfd2); }
.gc-6 { background: linear-gradient(140deg, #fdeede, #fbd9ab); }
.gc-7 { background: linear-gradient(140deg, #def7ef, #abe7d4); }

/* Hover overlay — slides up from bottom */
.gc-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    pointer-events: none;
}

.gc-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 35, 30, 0.82) 0%,
        rgba(6, 35, 30, 0.4) 45%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.38s var(--ease-out);
}

.gallery-card:hover .gc-overlay::before { opacity: 1; }

.gc-overlay-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    margin: 0 14px 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out) 0.05s, transform 0.35s var(--ease-out) 0.05s;
}

.gc-overlay-badge svg { width: 11px; height: 11px; }

.gc-overlay-title {
    position: relative;
    z-index: 1;
    margin: 0 14px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out) 0.1s, transform 0.35s var(--ease-out) 0.1s;
}

.gallery-card:hover .gc-overlay-badge,
.gallery-card:hover .gc-overlay-title {
    opacity: 1;
    transform: translateY(0);
}

/* Video tag */
.gc-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.90);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.18);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gc-tag svg { width: 11px; height: 11px; }

/* Play button */
.gc-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 3;
    transition: transform 0.3s var(--ease-out), background 0.2s;
}

.gallery-card:hover .gc-play {
    transform: scale(1.12);
    background: #fff;
}

.gc-play svg { width: 22px; height: 22px; margin-left: 3px; }

/* Galeri lightbox */

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease-out), visibility 0.28s var(--ease-out);
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox.is-open[hidden] {
    display: flex !important;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 33, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1100px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.32s var(--ease-out);
}

.gallery-lightbox.is-open .gallery-lightbox-dialog {
    transform: scale(1) translateY(0);
}

.gallery-lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.gallery-lightbox-close:hover {
    transform: scale(1.06);
    background: #f0fdf9;
}

.gallery-lightbox-close svg {
    width: 20px;
    height: 20px;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.gallery-lightbox-nav:hover {
    transform: scale(1.06);
    background: #f0fdf9;
}

.gallery-lightbox-nav svg {
    width: 22px;
    height: 22px;
}

.gallery-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.gallery-lightbox-prev { left: -58px; }
.gallery-lightbox-next { right: -58px; }

.gallery-lightbox-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox-figure img {
    display: block;
    width: 100%;
    max-height: calc(92vh - 64px);
    object-fit: contain;
    background: #0f2e2b;
}

.gallery-lightbox-figure figcaption {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-700);
    text-align: center;
    background: var(--white);
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-lightbox-counter {
    font-size: 12px;
    font-weight: 500;
    color: rgba(15, 118, 110, 0.65);
}

@media (max-width: 768px) {
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        background: rgba(255, 255, 255, 0.94);
    }
}

/* ============================================================
   4b. ACCORDION GALLERY
   ============================================================ */

.acc-gallery {
    display: flex;
    align-items: stretch;
    gap: 10px;
    height: 420px;
    width: 100%;
}

/* Items start equal. Only flex-grow and box-shadow animate — no transforms. */
.acc-item {
    flex: 1 1 0;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: default;
    background-color: #0b2420;
    transition: flex-grow 480ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow  480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item:hover {
    flex-grow: 4;
    box-shadow: 0 28px 64px -14px rgba(4, 18, 16, 0.55);
    z-index: 1;
}

/*
  KEY FIX — height-anchored image, zero rescaling on width change:
  • height: 100%  → always locked to container height (never changes)
  • width: auto   → natural aspect ratio, computed once from height
  • left: 50% + translateX(-50%) → keeps center visible as container expands
  • max-width: none → prevents browser from clamping width
  Result: container expanding just REVEALS more image left/right. No zoom.
*/
.acc-item img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    filter: brightness(0.88) saturate(0.85);
    transition: filter 480ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Non-hovered items dim slightly so the active item pops */
.acc-gallery:hover .acc-item:not(:hover) img {
    filter: brightness(0.65) saturate(0.70);
}

/* Active item: full vibrancy + zoom */
.acc-item:hover img {
    filter: brightness(1.0) saturate(1.05);
    transform: scale(1.07);
}

/* Gradient overlay — fades in when item expands */
.acc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 18, 16, 0.92) 0%,
        rgba(4, 18, 16, 0.28) 55%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 380ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 22px;
    gap: 6px;
    pointer-events: none;
}

.acc-item:hover .acc-overlay {
    opacity: 1;
}

/* Badge slides up from below — translateY only, never scale */
.acc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.80);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1) 80ms,
                transform 320ms cubic-bezier(0.4, 0, 0.2, 1) 80ms;
    white-space: nowrap;
}

.acc-badge svg { width: 11px; height: 11px; }

/* Title slides up from below on a slight stagger delay */
.acc-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1) 150ms,
                transform 320ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acc-item:hover .acc-badge,
.acc-item:hover .acc-title {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .acc-gallery {
        height: 260px;
        gap: 7px;
    }

    .acc-item:hover {
        flex: 3 1 0;
    }

    .acc-title { font-size: 12px; }
    .acc-badge { font-size: 10px; padding: 3px 9px; }
}

@media (max-width: 480px) {
    .acc-gallery {
        height: 200px;
        gap: 5px;
    }

    .acc-item { border-radius: var(--radius-md); }
    .acc-overlay { padding: 12px 10px 14px; gap: 4px; }
}

/* ============================================================
   4c. ACCORDION LIGHTBOX
   ============================================================ */

.acc-lb {
    position: fixed;
    inset: 0;
    z-index: 9900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.38s ease;
}

.acc-lb[hidden] { display: none !important; }

.acc-lb.acc-lb-open { opacity: 1; }

.acc-lb-bd {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 16, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    cursor: zoom-out;
}

.acc-lb-dlg {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: min(94vw, 1060px);
    width: 100%;
    transform: scale(0.82) translateY(36px);
    opacity: 0;
    transition: transform 0.50s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.34s ease;
    transform-origin: var(--lb-ox, 50%) var(--lb-oy, 50%);
}

.acc-lb.acc-lb-open .acc-lb-dlg {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.acc-lb-iw {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 48px 96px -24px rgba(0, 0, 0, 0.72),
                0 0 0 1px rgba(255, 255, 255, 0.07);
    line-height: 0;
    max-width: 100%;
    max-height: 76vh;
    display: flex;
}

.acc-lb-iw img {
    display: block;
    max-width: min(94vw, 1060px);
    max-height: 76vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: inherit;
}

.acc-lb-iw.lb-out-l img { animation: lbOutL 0.18s ease forwards; }
.acc-lb-iw.lb-in-r  img { animation: lbInR  0.30s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.acc-lb-iw.lb-out-r img { animation: lbOutR 0.18s ease forwards; }
.acc-lb-iw.lb-in-l  img { animation: lbInL  0.30s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes lbOutL { to   { opacity: 0; transform: translateX(-30px); } }
@keyframes lbOutR { to   { opacity: 0; transform: translateX(30px);  } }
@keyframes lbInR  { from { opacity: 0; transform: translateX(30px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes lbInL  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.acc-lb-x {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-700);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform 0.24s var(--ease-out), background 0.2s;
    outline: none;
}

.acc-lb-x:hover {
    transform: scale(1.1) rotate(90deg);
    background: #ecfdf5;
}

.acc-lb-x svg { width: 18px; height: 18px; }

.acc-lb-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-700);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.2s, opacity 0.2s;
    outline: none;
}

.acc-lb-nav:disabled { opacity: 0.30; pointer-events: none; }
.acc-lb-nav:hover    { background: #ecfdf5; }
.acc-lb-nav svg      { width: 22px; height: 22px; }

.acc-lb-p       { left: -62px;  transform: translateY(-50%); }
.acc-lb-p:hover { transform: translateY(-50%) translateX(-4px); }
.acc-lb-n       { right: -62px; transform: translateY(-50%); }
.acc-lb-n:hover { transform: translateY(-50%) translateX(4px); }

.acc-lb-cap {
    display: flex;
    align-items: center;
    gap: 10px;
}

#accLbCapBadge {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

#accLbCapTitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.acc-lb-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: -4px;
}

.acc-lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.acc-lb-dot.active { background: var(--primary-500); transform: scale(1.35); }
.acc-lb-dot:hover  { background: rgba(255, 255, 255, 0.60); }

@media (max-width: 768px) {
    .acc-lb-p { left: 10px; }
    .acc-lb-n { right: 10px; }
    .acc-lb-nav { width: 38px; height: 38px; }
    .acc-lb-x { top: -10px; right: -8px; }
    .acc-lb-iw { border-radius: 14px; max-height: 68vh; }
    .acc-lb-iw img { max-height: 68vh; }
    .acc-lb { padding: 16px; }
}

/* ============================================================
   5. PROBLEM / SOLUTION
   ============================================================ */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
}

.compare-col {
    border-radius: var(--radius-xl);
    padding: clamp(26px, 3.4vw, 44px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.compare-col.solution {
    background: linear-gradient(160deg, var(--content-1), #dcf6ee);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.compare-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
}

.compare-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.compare-col.problem .compare-icon {
    color: #b45309;
    background: #fef3c7;
}

.compare-col.solution .compare-icon {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 8px 18px -8px rgba(13, 148, 136, 0.6);
}

.compare-icon svg { width: 22px; height: 22px; }

.compare-head h3 { font-size: clamp(19px, 2vw, 23px); }

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    font-size: 15px;
    color: var(--fg-soft);
    border-bottom: 1px solid var(--line);
}

.compare-list li:last-child { border-bottom: none; }

.compare-list li svg {
    width: 19px; height: 19px;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-col.problem .compare-list li svg { color: rgba(180, 83, 9, 0.7); }
.compare-col.solution .compare-list li svg { color: var(--primary); }
.compare-col.solution .compare-list li { color: var(--foreground); font-weight: 500; }

/* ============================================================
   6. FEATURES
   ============================================================ */

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

.feature-tile {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.feature-tile:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.feature-icon {
    width: 50px; height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
    margin-bottom: 19px;
    transition: transform 0.45s var(--ease-out);
}

.feature-tile:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }

.feature-icon svg { width: 23px; height: 23px; }

.feature-tile h3 { font-size: 17.5px; margin-bottom: 9px; }

.feature-tile p { font-size: 14.5px; color: var(--fg-soft); }

/* ============================================================
   7. STICKY PRODUCT EXPERIENCE
   ============================================================ */

.journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.journey-steps { display: flex; flex-direction: column; }

.journey-step {
    padding: clamp(36px, 6vh, 64px) 0;
    opacity: 0.3;
    transition: opacity 0.5s;
}

.journey-step.active { opacity: 1; }

.step-no {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 14px;
}

.step-no::before {
    content: "";
    width: 34px; height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--warning));
}

.journey-step h3 { font-size: clamp(21px, 2.4vw, 28px); margin-bottom: 12px; }

.journey-step p { font-size: 15.5px; color: var(--fg-soft); max-width: 420px; }

.journey-sticky {
    position: sticky;
    top: 110px;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

.journey-phone-wrap { position: relative; }

.journey-phone-wrap .hero-glow { width: 380px; height: 380px; }

.journey-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    pointer-events: none;
}

.journey-screen.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* QR scan screen */
.mock-qr {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mock-qr-box {
    width: 130px; height: 130px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    border: 2px dashed var(--line-strong);
    position: relative;
    overflow: hidden;
}

.mock-qr-box svg { width: 72px; height: 72px; }

.mock-qr-box::after {
    content: "";
    position: absolute;
    left: 8px; right: 8px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, transparent, var(--primary-500), transparent);
    animation: qrScan 2.4s ease-in-out infinite;
}

@keyframes qrScan {
    0%, 100% { top: 12%; }
    50%      { top: 84%; }
}

.mock-qr-text { font-size: 12px; font-weight: 600; color: var(--fg-soft); text-align: center; }

.mock-detail-img {
    height: 130px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #cdf2e6);
}

.mock-detail-img svg { width: 44px; height: 44px; }

.mock-title-line { height: 12px; width: 65%; border-radius: 999px; background: rgba(18, 75, 71, 0.2); }

.mock-badge-row { display: flex; gap: 6px; }

.mock-chip {
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.mock-chip.amber { color: #b45309; background: #fef3c7; border-color: #fde68a; }

.mock-btn {
    margin-top: auto;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    box-shadow: var(--shadow-sm);
}

.mock-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.mock-cat-tile {
    border-radius: 13px;
    padding: 13px 11px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
}

.mock-cat-tile svg { width: 19px; height: 19px; color: var(--primary); }

.mock-admin-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
}

.mock-admin-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }

.mock-admin-row .ok { margin-left: auto; color: var(--primary); }

.mock-toggle {
    margin-left: auto;
    width: 30px; height: 17px;
    border-radius: 999px;
    background: var(--primary-500);
    position: relative;
    flex-shrink: 0;
}

.mock-toggle::after {
    content: "";
    position: absolute;
    top: 2px; right: 2px;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--white);
}

/* ============================================================
   8. PRICING  (admin CKEditor içeriği — .pricing-card sözleşmesi)
   ============================================================ */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card-host {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: var(--radius-xl);
    padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.pricing-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-host:has(.pricing-card.popular) {
    z-index: 1;
}

.pricing-card.popular {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(150deg, var(--primary-500), var(--primary-700) 60%, var(--warning)) border-box;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(110deg, var(--warning), #f97316);
    box-shadow: 0 10px 24px -8px rgba(245, 158, 11, 0.55);
    white-space: nowrap;
}

.pricing-card .popular-badge svg { width: 14px; height: 14px; }

.pricing-card .pricing-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.pricing-card .pricing-header h3,
.pricing-card .pricing-plan-name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 8px;
}

.pricing-card .pricing-header p,
.pricing-card .pricing-description {
    font-size: 14px;
    color: var(--fg-soft);
    margin: 0;
}

.pricing-card .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 26px;
}

.pricing-card .pricing-price .currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-700);
}

.pricing-card .pricing-price .amount {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card .pricing-price .amount.custom { font-size: 32px; }

.pricing-card .pricing-price .period {
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-faint);
    margin-left: 4px;
}

.pricing-card .pricing-features,
.pricing-card ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.pricing-card .pricing-features li,
.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 0;
    font-size: 14.5px;
    color: var(--fg-soft);
}

.pricing-card .pricing-features li svg,
.pricing-card ul li svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.pricing-card .pricing-features li.disabled,
.pricing-card ul li.disabled { opacity: 0.42; }

.pricing-card .pricing-features li.disabled svg { color: var(--fg-faint); }

.pricing-card .pricing-button,
.pricing-card button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
    cursor: pointer;
}

.pricing-card .pricing-button:hover,
.pricing-card button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular .pricing-button,
.pricing-card.popular .pricing-button-popular,
.pricing-card.popular button {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border: none;
    box-shadow: 0 12px 28px -10px rgba(13, 148, 136, 0.6);
}

/* ── Kart altı seç butonu ── */
.pricing-card-actions {
    padding: 14px 0 4px;
}

.pricing-card-actions .btn,
.pricing-card-actions button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
    cursor: pointer;
}

.pricing-card-actions .btn:hover,
.pricing-card-actions button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card-host:has(.pricing-card.popular) .pricing-card-actions .btn,
.pricing-card-host:has(.pricing-card.popular) .pricing-card-actions button {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border: none;
    box-shadow: 0 12px 28px -10px rgba(13, 148, 136, 0.6);
}

/* ── Kampanya: eski fiyat + indirim rozeti (admin CKEditor içeriğinde kullanılır) ── */

.pricing-card .discount-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff;
    background: linear-gradient(120deg, #ef4444, #f97316);
    border-radius: 999px;
    box-shadow: 0 10px 22px -8px rgba(239, 68, 68, 0.55);
    white-space: nowrap;
    animation: campaign-banner-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card .discount-ribbon { animation: none !important; }
}

.pricing-card .discount-ribbon svg { width: 13px; height: 13px; }

.pricing-price:has(.price-old) {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.pricing-card .price-old {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.pricing-card .price-old-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fg-faint);
}

.pricing-card .price-old-amount {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .01em;
    color: rgba(190, 40, 40, 0.68);
}

.pricing-card .price-old-amount::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    top: 54%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #ef4444 12%, #ef4444 88%, transparent);
    transform: rotate(-4deg);
}

.pricing-price:has(.price-old) .currency {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card .campaign-deadline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin: 6px 0 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.30);
}

.pricing-card .campaign-deadline svg { width: 13px; height: 13px; }

/* ── Kampanya banner (fiyat kartlarının üstü) ── */

.campaign-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    padding: clamp(26px, 4vw, 40px) clamp(28px, 4vw, 48px);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, #3f0d0d 0%, #dc2626 55%, #7c1d1d 100%);
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(220, 38, 38, 0.55);
    animation: campaign-banner-ring 2.6s ease-in-out infinite;
}

.campaign-banner__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 40%, rgba(249, 115, 22, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 30% 60% at 90% 80%, rgba(253, 224, 71, 0.16) 0%, transparent 60%);
}

.campaign-banner__shine {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.20), transparent);
    transform: translateX(-160%) skewX(-12deg);
    animation: campaign-banner-shine 3.6s ease-in-out infinite;
}

.campaign-banner__left {
    position: relative;
    flex: 1;
    min-width: 0;
}

.campaign-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    margin-bottom: 14px;
    animation: campaign-banner-pulse 1.8s ease-in-out infinite;
}

.campaign-banner__tag svg { width: 13px; height: 13px; }

.campaign-banner__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}

.campaign-banner__title strong {
    color: #fde68a;
}

.campaign-banner__desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
    max-width: 480px;
}

.campaign-banner__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 10px 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.campaign-banner__days {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: transparent;
    background: linear-gradient(120deg, #fde68a, #fff 60%, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-banner__days-label {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes campaign-banner-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes campaign-banner-shine {
    0%  { transform: translateX(-160%) skewX(-12deg); }
    35% { transform: translateX(420%) skewX(-12deg); }
    100% { transform: translateX(420%) skewX(-12deg); }
}

@keyframes campaign-banner-ring {
    0%, 100% { box-shadow: 0 24px 60px -20px rgba(220, 38, 38, 0.55); }
    50% { box-shadow: 0 24px 70px -12px rgba(220, 38, 38, 0.78); }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-banner,
    .campaign-banner__tag,
    .campaign-banner__shine {
        animation: none !important;
    }
}

/* ── Deneme banner ── */

.trial-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, #0c1f1e 0%, #0F766E 55%, #134e4a 100%);
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(13, 148, 136, 0.55);
}

.trial-banner__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(20,184,166,.22) 0%, transparent 70%),
        radial-gradient(ellipse 30% 60% at 10% 20%, rgba(245,158,11,.12) 0%, transparent 60%);
}

.trial-banner__left {
    position: relative;
    flex: 1;
    min-width: 0;
}

.trial-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.32);
    margin-bottom: 14px;
}

.trial-banner__tag svg { width: 13px; height: 13px; }

.trial-banner__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.trial-banner__desc {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    margin: 0 0 20px;
    max-width: 420px;
}

.trial-banner__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.trial-banner__checks li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}

.trial-banner__checks li svg {
    width: 16px; height: 16px;
    color: #34d399;
    flex-shrink: 0;
}

.trial-banner__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.trial-banner__badge {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: transparent;
    background: linear-gradient(120deg, #f59e0b, #fde68a 60%, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trial-banner__free {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.trial-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    background: linear-gradient(120deg, #f59e0b, #fbbf24);
    border: none;
    box-shadow: 0 14px 32px -10px rgba(245,158,11,.60);
    text-decoration: none;
    transition: transform .35s var(--ease-out), box-shadow .35s;
    white-space: nowrap;
}

.trial-banner__btn svg { width: 17px; height: 17px; }

.trial-banner__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(245,158,11,.70);
    color: var(--foreground);
    text-decoration: none;
}

.trial-banner__note {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

@media (max-width: 700px) {
    .trial-banner {
        flex-direction: column;
        text-align: center;
    }
    .trial-banner__checks {
        justify-content: center;
    }
    .trial-banner__right {
        width: 100%;
    }
    .campaign-banner {
        flex-direction: column;
        text-align: center;
    }
    .campaign-banner__desc {
        max-width: none;
    }
    .campaign-banner__right {
        width: 100%;
    }
}

/* ============================================================
   9. VISUAL MATERIALS CHECKLIST
   ============================================================ */

.materials {
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--content-1), #ddf6ee);
    border: 1px solid var(--line-strong);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.materials::before {
    content: "";
    position: absolute;
    top: -130px; right: -130px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
    pointer-events: none;
}

.materials-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto clamp(30px, 4vw, 48px);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--fg-soft);
}

.materials-note svg {
    width: 21px; height: 21px;
    flex-shrink: 0;
    color: var(--warning);
    margin-top: 2px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
}

.material-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.material-card .mat-check {
    width: 30px; height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.material-card .mat-check svg { width: 15px; height: 15px; }

/* ============================================================
   10. AI PROMPT SERVICE
   ============================================================ */

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

.prompt-card {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.prompt-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.prompt-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7, #fde9b8);
    border: 1px solid #fde68a;
}

.prompt-icon svg { width: 22px; height: 22px; }

.prompt-card h3 { font-size: 17px; }

.prompt-card p { font-size: 14px; color: var(--fg-soft); flex: 1; }

.prompt-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 19px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.prompt-btn svg { width: 15px; height: 15px; }

.prompt-btn:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================================
   11. BENEFITS / STATS
   ============================================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 46px; height: 46px;
    margin: 0 auto 15px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
}

.benefit-icon svg { width: 21px; height: 21px; }

.benefit-num {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--primary-700);
    line-height: 1.1;
    margin-bottom: 7px;
}

.benefit-card p { font-size: 13.5px; font-weight: 500; color: var(--fg-soft); }

.benefits-foot {
    margin-top: 22px;
    text-align: center;
    font-size: 12.5px;
    color: var(--fg-faint);
}

/* ============================================================
   12. FAQ
   ============================================================ */

.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 13px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

.faq-q svg {
    width: 19px; height: 19px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.4s var(--ease-out);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq-a p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--fg-soft);
}

/* ============================================================
   13. FINAL CTA
   ============================================================ */

.cta-final {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 70px);
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 60%, #0c5b54 100%);
    box-shadow: var(--shadow-lg);
}

.cta-final::before,
.cta-final::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-final::before {
    width: 420px; height: 420px;
    top: -200px; left: -120px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.5), transparent 70%);
    animation: blobFloat 18s ease-in-out infinite alternate;
}

.cta-final::after {
    width: 360px; height: 360px;
    bottom: -180px; right: -90px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 70%);
    animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

.cta-final h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: clamp(15px, 1.7vw, 17.5px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.35);
}

.cta-final .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.cta-float {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 13px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: floatCard 6.4s ease-in-out infinite;
}

.cta-float svg { width: 15px; height: 15px; color: #fcd34d; }

.ctaf-1 { top: 18%; left: 6%; animation-delay: -2s; }
.ctaf-2 { top: 26%; right: 7%; animation-delay: -4s; }
.ctaf-3 { bottom: 16%; left: 11%; animation-delay: -1s; }
.ctaf-4 { bottom: 22%; right: 12%; animation-delay: -3.4s; }

/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
    margin-top: var(--section-pad);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(44px, 6vw, 70px) 0 clamp(32px, 4vw, 48px);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--fg-soft);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--white);
    background: var(--primary);
}

.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 18px;
}

.footer-col li { margin-bottom: 11px; }

.footer-col a {
    font-size: 14.5px;
    color: var(--fg-soft);
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--primary-700); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--fg-soft);
}

.footer-contact svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--fg-faint);
}

.footer-badges { display: flex; flex-wrap: wrap; gap: 16px; }

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.footer-badges svg { width: 14px; height: 14px; color: var(--primary); }

/* ---------- Footer payment & legal strip ---------- */

.footer-payment {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    align-items: center;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--fg-soft);
    text-decoration: none;
    transition: color 0.25s;
    cursor: pointer;
}

.footer-legal-links a:hover { color: var(--primary-700); }

.footer-legal-sep {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--line-strong);
    vertical-align: middle;
}

.footer-iyzico-band {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-iyzico-band img {
    height: 28px;
    width: auto;
    display: block;
}

/* ---------- Policy / Legal Modal ---------- */

.policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 75, 71, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99990;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.policy-modal-overlay.is-open {
    display: flex;
}

.policy-modal-dialog {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
    animation: policyModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes policyModalIn {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: none; }
}

.policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.policy-modal-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.policy-modal-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--content-1);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.policy-modal-icon svg { width: 20px; height: 20px; }

.policy-modal-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.policy-modal-subtitle {
    margin: 3px 0 0;
    font-size: 12.5px;
    color: var(--fg-faint);
}

.policy-modal-close-x {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.policy-modal-close-x:hover {
    background: #fecaca;
    color: #dc2626;
}

.policy-modal-body {
    overflow-y: auto;
    padding: 1.75rem;
    flex: 1;
    font-size: 14.5px;
    line-height: 1.78;
    color: #374151;
}

.policy-modal-body h1,
.policy-modal-body h2,
.policy-modal-body h3 {
    color: #111827;
    font-family: var(--font-display);
    margin-top: 1.6em;
    margin-bottom: 0.45em;
}

.policy-modal-body h2 {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.policy-modal-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
}

.policy-modal-body p { margin: 0 0 0.9em; }

.policy-modal-body ul {
    padding-left: 1.4rem;
    margin: 0 0 1em;
}

.policy-modal-body ul li { margin-bottom: 6px; }

.policy-modal-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-modal-body a:hover { color: var(--primary-700); }

.policy-effective {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-faint);
    background: var(--content-1);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 5px 12px;
    margin-bottom: 1.25em;
}

.policy-highlight {
    background: #fefce8;
    border-left: 3px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin: 1em 0;
    font-size: 13.5px;
    color: #78350f;
}

.policy-modal-footer {
    padding: 1rem 1.75rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
}

.policy-modal-date {
    font-size: 12px;
    color: var(--fg-faint);
}

.policy-modal-btn-close {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.policy-modal-btn-close:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .footer-payment { flex-direction: column; align-items: flex-start; gap: 14px; }
    .policy-modal-dialog { border-radius: 16px; max-height: 94vh; }
    .policy-modal-header { padding: 1.1rem 1.25rem; }
    .policy-modal-body { padding: 1.25rem; }
    .policy-modal-footer { padding: 0.85rem 1.25rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
    .features-grid, .prompts-grid { grid-template-columns: repeat(2, 1fr); }
    .materials-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-card-host:has(.pricing-card.popular) { order: -1; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
    .nav-links, .nav-cta .btn, .nav-login, .nav-cta .nav-lang { display: none; }
    .nav-burger { display: grid; }
    .mobile-menu { display: block; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; margin-top: 24px; }
    .hero-img-collage { max-width: 100%; }
    .fc-3 { left: -2%; }
    .fc-2, .fc-4 { right: -2%; }

    .compare-grid { grid-template-columns: 1fr; }

    .journey-grid { grid-template-columns: 1fr; }
    .journey-sticky { position: relative; top: 0; order: -1; }
    .journey-screen { position: absolute; }
    .journey-step { padding: 26px 0; opacity: 1; }
}

@media (max-width: 640px) {
    .features-grid, .prompts-grid { grid-template-columns: 1fr; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 18px 28px; }

    .phone { width: 245px; }
    .float-card { font-size: 11.5px; padding: 9px 13px; }
    .fc-1 { left: -2%; }
    .fc-5 { left: 0; }

    .gallery-card { width: 240px; height: 170px; }
    .gallery-card.tall { width: 160px; height: 230px; }
    .showcase-fade-left, .showcase-fade-right { width: 60px; }

    .cta-float { display: none; }
    .cta-actions .btn { width: 100%; }

    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .materials-grid, .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .blob, .hero-phone, .float-card, .cta-float,
    .marquee, .cta-final::before, .cta-final::after,
    .mock-qr-box::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   PREMIUM ANIMATION LAYER — 21st.dev inspired
   All additions are purely additive; existing layout untouched.
   ============================================================ */

/* — Blur-in reveal (layered on top of existing opacity + translateY) — */

.reveal {
    filter: blur(4px);
    transition: opacity 0.9s var(--ease-out) var(--reveal-delay, 0s),
                transform 0.9s var(--ease-out) var(--reveal-delay, 0s),
                filter  0.9s var(--ease-out) var(--reveal-delay, 0s);
}

.reveal.in-view {
    filter: blur(0px);
}

/* Yandan gelen reveal'lar da aynı blur geçişini kullanır. `.in-view`
   karşılığı olmadan blur kalıcı kalıyordu — yan paneller (garson yetki
   tablosu, mockup'lar) sürekli bulanık görünüyordu. Blur ayrıca 4px
   yerine 2px: yan kayma zaten hareketi taşıyor, fazlası metni okunmaz
   yapıyordu. */
.reveal-left,
.reveal-right {
    filter: blur(2px);
    transition: opacity 0.9s var(--ease-out) var(--reveal-delay, 0s),
                transform 0.9s var(--ease-out) var(--reveal-delay, 0s),
                filter 0.9s var(--ease-out) var(--reveal-delay, 0s);
}

.reveal-left.in-view,
.reveal-right.in-view {
    filter: blur(0px);
}

/* — Hero entrance stagger — */

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(7px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0px); }
}

.hero-badge   { animation: heroFadeUp 0.85s var(--ease-out) 0.10s both; }
.hero-title   { animation: heroFadeUp 0.90s var(--ease-out) 0.26s both; }
.hero-desc    { animation: heroFadeUp 0.90s var(--ease-out) 0.42s both; }
.hero-actions { animation: heroFadeUp 0.90s var(--ease-out) 0.56s both; }
.hero-stats   { animation: heroFadeUp 0.90s var(--ease-out) 0.70s both; }
.hero-visual  { animation: heroFadeUp 1.00s var(--ease-out) 0.32s both; }

/* — Shimmer sweep keyframe — */

@keyframes shimmerSlide {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* — Section badge shimmer — */

.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg,
        transparent 28%,
        rgba(255,255,255,0.60) 50%,
        transparent 72%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 3.4s ease 0.6s infinite;
    pointer-events: none;
}

/* — Hero badge shimmer — */

.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg,
        transparent 28%,
        rgba(255,255,255,0.55) 50%,
        transparent 72%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 2.8s ease 1.2s infinite;
    pointer-events: none;
}

/* — Popular pricing card animated gradient border — */

@keyframes borderFlow {
    0%   { background-position: 0%   50%; }
    100% { background-position: 200% 50%; }
}

.pricing-card.popular {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(
            90deg,
            var(--primary-500),
            var(--warning) 40%,
            var(--primary-700) 70%,
            var(--primary-500)
        ) border-box;
    background-size: auto, 300% 100%;
    border: 2px solid transparent;
    animation: borderFlow 3.6s linear infinite;
}

/* — Button primary shimmer sweep on hover — */

.btn-primary {
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.30),
        transparent
    );
    transform: skewX(-18deg);
    transition: left 0.65s var(--ease-out);
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 130%;
}

/* — Mouse-spotlight on cards (JS sets --mouse-x / --mouse-y) — */

.feature-tile {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 62%
    );
}

.benefit-card {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 65%
    );
}

.prompt-card {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(245, 158, 11, 0.07) 0%,
        transparent 65%
    );
}

/* — Icon glow pulse on card hover — */

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 0 0   rgba(13, 148, 136, 0.00); }
    50%       { box-shadow: 0 0 0 7px rgba(13, 148, 136, 0.20); }
}

.benefit-card:hover .benefit-icon,
.feature-tile:hover .feature-icon {
    animation: iconGlow 1.55s ease infinite;
    background: linear-gradient(135deg, var(--primary-500), #a7f3d0);
    color: var(--white);
    border-color: transparent;
}

/* — Prompt icon bounce + color shift — */

.prompt-icon {
    transition: transform 0.45s var(--ease-out), background 0.42s, color 0.42s;
}

.prompt-card:hover .prompt-icon {
    transform: scale(1.14) rotate(-8deg);
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    color: #92400e;
    border-color: #fbbf24;
}

/* — Journey step left accent bar — */

.journey-step {
    padding-left: 22px;
    border-left: 3px solid rgba(13, 148, 136, 0);
    transition: opacity 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.journey-step.active {
    border-left-color: var(--primary-500);
}

/* — FAQ answer content fade-in — */

.faq-a p {
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 0.4s var(--ease-out) 0.08s,
                transform 0.4s var(--ease-out) 0.08s;
}

.faq-item.open .faq-a p {
    opacity: 1;
    transform: translateY(0);
}

/* — Compare column hover lift — */

.compare-col {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.compare-col.problem:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.compare-col.solution:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* — Material card inset accent on hover — */

.material-card:hover {
    box-shadow: inset 3px 0 0 var(--primary-500), var(--shadow-md);
}

/* — CTA headline gold shimmer — */

@keyframes ctaTextShimmer {
    0%, 100% { background-position:   0% 50%; }
    50%       { background-position: 100% 50%; }
}

.cta-final h2 {
    background: linear-gradient(
        90deg,
        #fff 0%, #fff 22%,
        #fde68a 50%,
        #fff 78%, #fff 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTextShimmer 5.5s ease infinite;
}

/* — Stagger reveals (items without inline delay) — */

.trust-item:nth-child(1) { --reveal-delay: 0.04s; }
.trust-item:nth-child(2) { --reveal-delay: 0.09s; }
.trust-item:nth-child(3) { --reveal-delay: 0.14s; }
.trust-item:nth-child(4) { --reveal-delay: 0.19s; }
.trust-item:nth-child(5) { --reveal-delay: 0.24s; }
.trust-item:nth-child(6) { --reveal-delay: 0.29s; }
.trust-item:nth-child(7) { --reveal-delay: 0.34s; }
.trust-item:nth-child(8) { --reveal-delay: 0.39s; }

.faq-item:nth-child(1)  { --reveal-delay: 0.04s; }
.faq-item:nth-child(2)  { --reveal-delay: 0.10s; }
.faq-item:nth-child(3)  { --reveal-delay: 0.16s; }
.faq-item:nth-child(4)  { --reveal-delay: 0.22s; }
.faq-item:nth-child(5)  { --reveal-delay: 0.28s; }
.faq-item:nth-child(6)  { --reveal-delay: 0.34s; }
.faq-item:nth-child(7)  { --reveal-delay: 0.40s; }
.faq-item:nth-child(8)  { --reveal-delay: 0.46s; }
.faq-item:nth-child(9)  { --reveal-delay: 0.52s; }
.faq-item:nth-child(10) { --reveal-delay: 0.58s; }

/* — Floating card entrance glow — */

.float-card {
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(13, 148, 136, 0);
    transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.float-card:hover {
    box-shadow: var(--shadow-lg), 0 0 20px 3px rgba(13, 148, 136, 0.15);
}

/* — Pricing card scale + glow on hover (non-popular) — */

.pricing-card:not(.popular):hover {
    border-color: var(--line-strong);
}

/* — Blob: slightly more vivid — */

.blob { opacity: 0.70; }

/* — Reduced motion overrides for new additions — */

@media (prefers-reduced-motion: reduce) {
    .hero-badge, .hero-title, .hero-desc,
    .hero-actions, .hero-stats, .hero-visual {
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
    .section-badge::after, .hero-badge::after { display: none !important; }
    .btn-primary::before { display: none !important; }
    .pricing-card.popular { animation: none !important; }
    .cta-final h2 {
        animation: none !important;
        -webkit-text-fill-color: var(--white);
        background: none;
    }
    .faq-a p {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .reveal { filter: blur(0px) !important; }
    .benefit-card:hover .benefit-icon,
    .feature-tile:hover .feature-icon { animation: none !important; }
    .journey-step { transition: opacity 0.3s !important; }
    .compare-col { transition: none !important; }
    .float-card { transition: none !important; }
    .acc-item { transition: none !important; }
    .acc-item img { transition: none !important; filter: none !important; }
    .acc-gallery:hover .acc-item:not(:hover) img { filter: none !important; }
    .acc-overlay { opacity: 1 !important; }
    .acc-badge, .acc-title { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   MOBİL RESPONSIVE EKLEMELERİ
   ============================================================ */

/* ── 1080px: Section head tam genişlik ── */
@media (max-width: 1080px) {
    .section-head { max-width: 100%; }
}

/* ── 920px: Tablet / büyük mobil ── */
@media (max-width: 920px) {

    /* Hero: yüzen bilgi kutuları gizle */
    [data-float] { display: none !important; }

    /* Hero iç görsel konteyner: inline min-height kaldır */
    [data-hero-visual] {
        min-height: 500px !important;
        perspective: 800px !important;
    }

    /* Hero telefon: hafif 3D → düz */
    #heroPhone {
        transform: rotateY(-4deg) rotateX(2deg) !important;
        transition: none !important;
    }

    /* Hero copy: mobilde ortala */
    .hero-copy { text-align: center; }
    .hero-badge { justify-content: center; }
    .hero-desc  { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    /* #urun — iki kolonlu grid → tek kolon */
    .urun-grid-1,
    .urun-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .urun-grid-1 { margin-bottom: 48px !important; }

    /* #urun admin panel: telefon overlay kaldır */
    #urun .urun-panel-phone  { display: none !important; }
    #urun .urun-panel-browser { max-width: 100% !important; }

    /* Journey steps: tümü görünür */
    .journey-step { opacity: 1; }

    /* CTA floatlar gizle */
    .cta-float { display: none; }
}

/* ── 768px: Orta mobil ── */
@media (max-width: 768px) {

    /* Pricing: çok geniş max-width kaldır */
    .pricing-cards { max-width: 100%; }

    /* Trial banner düzeni */
    .trial-banner {
        padding: clamp(22px, 5vw, 36px) !important;
    }

    /* Section head başlıkları küçült */
    .section-title { font-size: clamp(24px, 5.5vw, 38px); }
}

/* ── 640px: Küçük mobil ── */
@media (max-width: 640px) {

    /* Hero telefon: küçült */
    [data-hero-visual] {
        min-height: 380px !important;
        overflow: hidden;
    }

    [data-dc-tpl="72"] {
        transform: scale(0.80) !important;
        transform-origin: top center !important;
    }

    #heroPhone { transform: none !important; }

    /* Hero istatistik: tek satır sarmalama */
    .hero-stats {
        border-top: none;
        padding-top: 16px;
        justify-content: space-around;
    }

    .stat-item { text-align: center; }

    /* #urun müşteri menüsü telefon kartı küçült */
    .scp6 {
        width: 196px !important;
        height: 402px !important;
    }

    /* Trust items: daha kompakt */
    .trust-item {
        padding: 10px 16px;
        font-size: 13.5px;
    }

    /* Compare grid: padding azalt */
    .compare-col { padding: 22px 20px; }

    /* FAQ soru font */
    .faq-q { padding: 16px 18px; font-size: 15px; }
    .faq-a p { padding: 0 18px 18px; }

    /* Footer payment: dikey */
    .footer-iyzico-band img { max-width: 180px; }

    /* Materials: note kompakt */
    .materials-note { flex-direction: column; gap: 10px; }
}

/* ── 480px: Çok küçük ekran ── */
@media (max-width: 480px) {

    /* Navbar yükseklik */
    .nav-inner   { height: 64px; }
    .mobile-menu { top: 64px; }

    /* Hero */
    [data-hero-visual] { min-height: 320px !important; }
    [data-dc-tpl="72"] { transform: scale(0.68) !important; }

    .hero-title { font-size: clamp(28px, 8vw, 38px); }

    /* İstatistikler: 3'lü yatay sıra */
    .hero-stats { gap: 12px 18px; }
    .stat-num   { font-size: 22px; }

    /* Bölüm başlığı */
    .section-title { font-size: clamp(22px, 6.5vw, 32px); }
    .section-badge { font-size: 12px; padding: 6px 13px; }

    /* Trial banner */
    .trial-banner           { padding: 20px !important; gap: 20px !important; }
    .trial-banner__badge    { font-size: 40px; }
    .trial-banner__btn      { padding: 12px 24px; font-size: 14px; }

    /* Pricing card padding */
    .pricing-card { padding: 22px 18px !important; }
    .pricing-card .pricing-price .amount { font-size: 38px; }
    .pricing-card .discount-ribbon { top: 14px; right: 14px; font-size: 11px; padding: 6px 12px; }
    .pricing-card .price-old-amount { font-size: 14px; }
    .pricing-price:has(.price-old) .currency { font-size: 28px; }
    .campaign-banner { padding: 20px !important; gap: 20px !important; }
    .campaign-banner__title { font-size: 20px; }
    .campaign-banner__desc { font-size: 13.5px; }
    .campaign-banner__days { font-size: 40px; }

    /* Feature / prompt tile padding */
    .feature-tile  { padding: 22px 20px; }
    .prompt-card   { padding: 22px 18px; }
    .benefit-card  { padding: 20px 14px; }

    /* CTA final */
    .cta-final { padding-left: 20px !important; padding-right: 20px !important; }

    /* Accordion gallery: tek satır kaydırma */
    .acc-gallery {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .acc-item {
        flex: none !important;
        height: 180px;
        border-radius: var(--radius-md);
    }

    .acc-item:hover { flex: none !important; }

    .acc-overlay { opacity: 1; }
    .acc-badge, .acc-title { opacity: 1; transform: none; }

    /* Footer brand */
    .footer-brand p { max-width: 100%; }

    /* Materials grid */
    .materials-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 360px: En küçük telefon ── */
@media (max-width: 360px) {
    [data-dc-tpl="72"] { transform: scale(0.60) !important; }
    [data-hero-visual]  { min-height: 290px !important; }

    .hero-actions .btn  { font-size: 14px; padding: 13px 20px; }

    .materials-grid { grid-template-columns: 1fr; }

    .trust-item { padding: 8px 12px; font-size: 12.5px; }
}

/* =====================================================
   ÇOK SAYFALI YAPI — ortak eklemeler
   ===================================================== */

/* Aktif nav vurgusu (nav artık sayfa linkleriyle çalışıyor) */
.nav-links a.active,
.mobile-menu a.active {
    color: var(--primary);
}

/* Alt sayfa hero'su: ana sayfa hero'sundan daha kompakt başlık bandı */
.page-hero {
    padding-top: calc(var(--section-pad) + 40px);
    padding-bottom: 0;
}

.page-hero .section-head {
    max-width: 760px;
}

/* =====================================================
   FX MOTORU — landing-fx.js'in stil katmanı
   ===================================================== */

/* 1. Parçacık ağı: host konumlu olmalı, canvas arkada kalır */
[data-fx-network] {
    position: relative;
}

.fx-net-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

[data-fx-network] > *:not(.fx-net-canvas) {
    position: relative;
    z-index: 1;
}

/* 2. SVG çizgi çizimi: JS dasharray/offset'i ayarlar, sınıf tetikler */
[data-draw] path,
[data-draw] line,
[data-draw] polyline,
[data-draw] circle,
[data-draw] ellipse {
    transition: stroke-dashoffset 1.6s var(--ease-out);
}

[data-draw].is-drawn path,
[data-draw].is-drawn line,
[data-draw].is-drawn polyline,
[data-draw].is-drawn circle,
[data-draw].is-drawn ellipse {
    stroke-dashoffset: 0 !important;
}

/* 4. Vitrin slider'ı */
[data-fx-slider] .fx-slides {
    position: relative;
}

[data-fx-slider] .fx-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    transform: translateY(14px);
}

[data-fx-slider] .fx-slide:not(.is-active) {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

[data-fx-slider] .fx-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fx-slider-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fx-tab {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: var(--white);
    color: var(--fg-soft);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
}

.fx-tab.is-active {
    color: var(--primary-700);
    border-color: var(--primary-500);
}

.fx-tab-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(20, 184, 166, 0.12);
    pointer-events: none;
}

/* 5-6. Parallax / tilt: kompozisyon ipuçları */
[data-parallax] {
    will-change: transform;
}

[data-tilt] {
    transition: transform 0.35s var(--ease-out);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .fx-net-canvas {
        display: none;
    }

    [data-fx-slider] .fx-slide,
    [data-tilt],
    [data-parallax] {
        transition: none;
        transform: none;
    }
}

/* =====================================================
   MODÜL VİTRİNİ (#moduller)
   ===================================================== */

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

.module-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 26px 22px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--foreground);
    transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.module-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.module-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.module-icon svg {
    width: 22px;
    height: 22px;
}

.module-card h3 {
    font-size: 17px;
    font-family: var(--font-display);
}

.module-card p {
    font-size: 14px;
    color: var(--fg-soft);
    line-height: 1.55;
    flex: 1 1 auto;
}

.module-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-700);
}

.module-more svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s var(--ease-out);
}

.module-card:hover .module-more svg {
    transform: translateX(4px);
}

/* =====================================================
   TEMA ŞERİDİ (marquee — saf CSS animasyon)
   ===================================================== */

.theme-strip {
    padding: var(--section-pad) 0;
}

.theme-strip .section-head {
    margin-bottom: 34px;
}

.theme-marquee {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    padding: 26px 0 58px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.theme-marquee-track {
    display: flex;
    width: max-content;
    animation: themeMarqueeScroll 36s linear infinite;
}

.theme-marquee:hover .theme-marquee-track {
    animation-play-state: paused;
}

.theme-marquee-group {
    display: flex;
    gap: 14px;
    padding-right: 14px;
}

.theme-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

.theme-chip-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.theme-marquee-cta {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-700);
    white-space: nowrap;
}

.theme-marquee-cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s var(--ease-out);
}

.theme-marquee:hover .theme-marquee-cta svg {
    transform: translateX(4px);
}

@keyframes themeMarqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 920px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
    }

    .theme-marquee-group[aria-hidden="true"] {
        display: none;
    }
}

/* =====================================================
   PLAN KARŞILAŞTIRMA TABLOSU (/fiyatlar)
   ===================================================== */

.cmp-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14.5px;
}

.cmp-table th,
.cmp-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.cmp-table thead th {
    background: var(--content-1);
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--foreground);
}

.cmp-plan-name {
    display: block;
}

.cmp-plan-price {
    display: block;
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-700);
}

.cmp-plan-price small {
    font-weight: 500;
    color: var(--fg-faint);
}

.cmp-feature-col,
.cmp-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

.cmp-table tbody td:first-child svg {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    margin-right: 8px;
    color: var(--primary);
}

.cmp-table tbody tr:last-child td {
    border-bottom: none;
}

.cmp-table tbody tr:hover td {
    background: rgba(20, 184, 166, 0.045);
}

.cmp-yes {
    width: 19px;
    height: 19px;
    color: var(--primary);
}

.cmp-no {
    color: var(--fg-faint);
}

/* Paketler altındaki karşılaştırma yönlendirmesi */
.pricing-compare-link {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* =====================================================
   OZELLIKLER SAYFASI (/ozellikler)
   ===================================================== */

.fp-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 56px;
    align-items: start;
}

.fp-nav {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fp-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-soft);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.fp-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.fp-nav a:hover {
    color: var(--primary-700);
    background: rgba(20, 184, 166, 0.06);
}

.fp-nav a.is-active {
    color: var(--primary-700);
    background: rgba(20, 184, 166, 0.09);
    border-left-color: var(--primary-500);
}

.fp-content {
    min-width: 0;
}

.fp-sec {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 46px;
    align-items: center;
    padding: 54px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 100px;
}

.fp-sec:last-child {
    border-bottom: none;
}

.fp-sec--rev .fp-text {
    order: 2;
}

.fp-sec--rev .fp-visual {
    order: 1;
}

.fp-text h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.25;
    margin: 14px 0 12px;
}

.fp-text > p {
    font-size: 15px;
    color: var(--fg-soft);
    line-height: 1.65;
    margin-bottom: 18px;
}

.fp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--foreground);
}

.fp-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}

.fp-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

/* AI tarama gorseli */
.fp-scan {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fp-scan img {
    display: block;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.fp-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
    box-shadow: 0 0 18px 4px rgba(20, 184, 166, 0.45);
    animation: fpScan 3.2s ease-in-out infinite alternate;
}

.fp-scan-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-700);
    box-shadow: var(--shadow-sm);
}

.fp-scan-badge svg {
    width: 15px;
    height: 15px;
}

@keyframes fpScan {
    from { top: 6%; }
    to   { top: 92%; }
}

/* Garson masa izgarasi mock */
.fp-tables {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px;
}

.fp-tables-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 16px;
    color: var(--foreground);
}

.fp-tables-head svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

.fp-tables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fp-table {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    font-weight: 700;
    font-size: 14px;
    color: var(--fg-soft);
}

.fp-table em {
    font-style: normal;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--white);
}

.fp-table.is-busy {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-color: transparent;
    color: var(--white);
    animation: fpTablePulse 2.6s ease-in-out infinite;
}

@keyframes fpTablePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.35); }
    50%      { box-shadow: 0 0 0 7px rgba(20, 184, 166, 0); }
}

/* Mutfak panosu mock */
.fp-kitchen {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fp-korder {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 16px 18px;
}

.fp-korder-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 14.5px;
    margin-bottom: 10px;
}

.fp-korder-head em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: var(--warning);
}

.fp-korder-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-top: 1px dashed var(--line);
    font-size: 13.5px;
    color: var(--fg-soft);
}

.fp-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.fp-tag--prep {
    background: rgba(245, 158, 11, 0.14);
    color: #B45309;
}

.fp-tag--done {
    background: rgba(20, 184, 166, 0.14);
    color: var(--primary-700);
}

/* Ciro grafigi mock */
.fp-chart {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 22px 24px;
}

.fp-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 18px;
}

.fp-chart-head em {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary-700);
}

.fp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
}

.fp-chart-bars span {
    flex: 1;
    height: var(--h, 40%);
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
    opacity: 0.85;
    transform-origin: bottom;
    animation: fpBarGrow 0.9s var(--ease-out) backwards;
}

.fp-chart-bars span:nth-child(2) { animation-delay: 0.08s; }
.fp-chart-bars span:nth-child(3) { animation-delay: 0.16s; }
.fp-chart-bars span:nth-child(4) { animation-delay: 0.24s; }
.fp-chart-bars span:nth-child(5) { animation-delay: 0.32s; }
.fp-chart-bars span:nth-child(6) { animation-delay: 0.40s; }
.fp-chart-bars span:nth-child(7) { animation-delay: 0.48s; }

@keyframes fpBarGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

.fp-chart-days {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.fp-chart-days span {
    flex: 1;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--fg-faint);
}

/* Dil bayraklari */
.fp-langs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.fp-flag {
    aspect-ratio: 1;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s var(--ease-out);
}

.fp-flag:hover {
    transform: scale(1.12);
}

/* Entegrasyon cipleri */
.fp-intg {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.fp-intg-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.fp-intg-chip svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

@media (max-width: 1080px) {
    .fp-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fp-nav {
        position: sticky;
        top: 74px;
        z-index: 5;
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
        padding: 10px 0;
        background: var(--background);
        border-bottom: 1px solid var(--line);
        -webkit-overflow-scrolling: touch;
    }

    .fp-nav a {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 999px;
    }

    .fp-nav a.is-active {
        border-left: none;
    }
}

@media (max-width: 920px) {
    .fp-sec {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 40px 0;
    }

    .fp-sec--rev .fp-text {
        order: 1;
    }

    .fp-sec--rev .fp-visual {
        order: 2;
    }
}

/* =====================================================
   GARSON POS SAYFASI (/garson-pos)
   ===================================================== */

.gp-showcase {
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: clamp(24px, 3.5vw, 44px);
}

.gp-slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 380px;
}

.gp-slide-text h2 {
    font-family: var(--font-display);
    font-size: clamp(21px, 2.4vw, 28px);
    margin-bottom: 12px;
}

.gp-slide-text > p {
    font-size: 14.5px;
    color: var(--fg-soft);
    line-height: 1.65;
    margin-bottom: 16px;
}

.gp-tabs {
    margin-top: 28px;
    justify-content: center;
}

.gp-tabs .fx-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gp-tabs .fx-tab svg {
    width: 15px;
    height: 15px;
    position: relative;
    z-index: 1;
}

.gp-tabs .fx-tab span:not(.fx-tab-fill) {
    position: relative;
    z-index: 1;
}

/* Telefon cerceveli mock */
.gp-phone {
    max-width: 330px;
    margin: 0 auto;
    border-radius: 28px;
    background: var(--background);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    padding: 18px;
}

.gp-phone-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 14px;
}

.gp-phone-head svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.gp-cartline {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--foreground);
}

.gp-cartline span {
    flex: 1;
}

.gp-cartline small {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--fg-faint);
}

.gp-cartline em {
    font-style: normal;
    font-weight: 800;
    color: var(--primary-700);
}

.gp-cartline svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--fg-faint);
}

.gp-cartline.is-paid {
    opacity: 0.62;
}

.gp-cartline.is-paid span {
    text-decoration: line-through;
}

.gp-cartline.is-paid svg {
    color: var(--primary);
}

.gp-cartbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 12px;
    padding: 13px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.gp-cartbtn svg {
    width: 16px;
    height: 16px;
}

.gp-kalan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    background: rgba(20, 184, 166, 0.10);
    border: 1px dashed var(--primary-500);
    font-weight: 700;
    font-size: 14px;
}

.gp-kalan em {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--primary-700);
}

.gp-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 9px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 14px;
}

.gp-stat em {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--primary-700);
}

/* Akis diyagrami */
.gp-flow {
    position: relative;
    padding: 8px 0 4px;
}

.gp-flow-svg {
    position: absolute;
    top: 26px;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
}

.gp-flow-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.gp-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
}

.gp-flow-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 2px solid var(--primary-500);
    color: var(--primary-700);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.gp-flow-dot svg {
    width: 21px;
    height: 21px;
}

/* Yetki mock */
.gp-perm {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gp-perm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--foreground);
}

.gp-perm-row svg {
    width: 15px;
    height: 15px;
    vertical-align: -3px;
    margin-right: 7px;
    color: var(--primary);
}

.gp-perm-sub {
    margin-left: 22px;
    background: transparent;
    border: 1px dashed var(--line-strong);
}

.gp-perm .mock-toggle {
    width: 34px;
    height: 19px;
    border-radius: 999px;
    background: var(--line-strong);
    position: relative;
    flex-shrink: 0;
}

.gp-perm .mock-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--white);
    transition: left 0.25s;
}

.gp-perm .mock-toggle.is-on {
    background: var(--primary-500);
}

.gp-perm .mock-toggle.is-on::after {
    left: 17px;
}

@media (max-width: 920px) {
    .gp-slide-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 0;
    }

    .gp-flow-svg {
        display: none;
    }

    .gp-flow-steps {
        flex-wrap: wrap;
    }

    .gp-flow-step {
        flex: 1 1 30%;
    }
}

/* =====================================================
   GALERI SAYFASI (/galeri)
   ===================================================== */

.gal-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 34px;
}

.gal-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--fg-soft);
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.gal-filter svg {
    width: 15px;
    height: 15px;
}

.gal-filter:hover {
    border-color: var(--primary-500);
    color: var(--primary-700);
}

.gal-filter.is-active {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-color: transparent;
    color: var(--white);
}

/* Masonry hissi icin CSS columns */
.gal-grid {
    column-count: 3;
    column-gap: 18px;
}

.gal-item {
    position: relative;
    display: block;
    margin: 0 0 18px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    break-inside: avoid;
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.gal-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.gal-item img {
    display: block;
    width: 100%;
    height: auto;
}

.gal-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(10, 34, 32, 0.72));
    opacity: 0;
    transition: opacity 0.3s;
}

.gal-item:hover figcaption {
    opacity: 1;
}

.gal-badge {
    align-self: flex-start;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--primary-500);
    color: var(--white);
}

.gal-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
}

.gal-item.is-hidden {
    display: none;
}

.gal-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 50px 20px;
    color: var(--fg-faint);
    font-size: 14.5px;
}

.gal-empty svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 920px) {
    .gal-grid {
        column-count: 2;
    }
}

@media (max-width: 560px) {
    .gal-grid {
        column-count: 1;
    }
}

/* =====================================================
   SCROLL-SCRUB YARDIMCILARI
   Bir bolume data-fx-progress konur; --fx-p kalitildigi icin
   icindeki her cocuk data-scrub ile o degeri okur.
   --fx-p yokken 0.5 = notr konum (hicbir sey kaymaz).
   ===================================================== */

[data-scrub] {
    will-change: transform;
}

/* Dikey surukleme — scroll ilerledikce yukari kayar */
[data-scrub="rise"] {
    transform: translate3d(0, calc((0.5 - var(--fx-p, 0.5)) * var(--scrub-dist, 70px)), 0);
}

/* Dikey surukleme — ters yon (hero cikisinda kullanilir) */
[data-scrub="sink"] {
    transform: translate3d(0, calc((var(--fx-p, 0.5) - 0.5) * var(--scrub-dist, 70px)), 0);
}

/* Yatay surukleme — karsilikli panellerde makaslama etkisi */
[data-scrub="drift-l"] {
    transform: translate3d(calc((0.5 - var(--fx-p, 0.5)) * var(--scrub-dist, 60px)), 0, 0);
}

[data-scrub="drift-r"] {
    transform: translate3d(calc((var(--fx-p, 0.5) - 0.5) * var(--scrub-dist, 60px)), 0, 0);
}

/* Olcek — gorsellerde derinlik hissi */
[data-scrub="zoom"] {
    transform: scale(calc(1 + (var(--fx-p, 0.5) - 0.5) * var(--scrub-amt, 0.14)));
}

/* Egim — kart/mockup yuzeyleri */
[data-scrub="tilt"] {
    transform: perspective(1400px) rotateX(calc((0.5 - var(--fx-p, 0.5)) * var(--scrub-deg, 9deg)));
}

/* Ilerleme cubugu ve rayda kayan gosterge */
[data-scrub="bar"] {
    width: calc(var(--fx-p, 0) * 100%);
}

[data-scrub="rail"] {
    left: calc(var(--fx-p, 0) * 100%);
}

/* Bolum ustunde ince scroll ilerleme cizgisi */
.scrub-rail {
    position: relative;
    height: 3px;
    border-radius: 999px;
    background: var(--line);
    overflow: hidden;
    margin-bottom: 34px;
}

.scrub-rail__fill {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

@media (prefers-reduced-motion: reduce) {
    [data-scrub] {
        transform: none !important;
    }

    [data-scrub="bar"] {
        width: 100% !important;
    }
}

/* =====================================================
   TEMA STUDYOSU (/menu-temalari)
   Onizleme yapilari gercek menu_1..menu_6 partiallarini yansitir.
   ===================================================== */

.tm-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.tm-hstat {
    text-align: center;
    padding: 22px 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.tm-hstat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tm-hstat span {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-soft);
}

.tm-studio {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.tm-controls {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 108px;
}

.tm-group-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 15px;
    color: var(--foreground);
    margin-bottom: 14px;
}

.tm-group-label svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

.tm-tpl-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tm-tpl {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--line-strong);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-soft);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.tm-tpl em {
    font-style: normal;
    line-height: 1.3;
}

.tm-tpl span {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--content-1);
    font-weight: 800;
    color: var(--fg-soft);
    transition: background 0.25s, color 0.25s;
}

.tm-tpl:hover {
    border-color: var(--primary-500);
    color: var(--foreground);
    transform: translateY(-2px);
}

.tm-tpl.is-active {
    border-color: var(--primary-500);
    color: var(--primary-700);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

.tm-tpl.is-active span {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
}

.tm-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tm-swatch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px 8px 9px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--fg-soft);
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.tm-swatch span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.tm-swatch em {
    font-style: normal;
}

.tm-swatch:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

.tm-swatch.is-active {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
    color: var(--foreground);
}

/* Secili sablonun aciklama karti */
.tm-active-info {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.tm-active-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: var(--primary-700);
    margin-bottom: 8px;
}

.tm-active-info__badge svg {
    width: 15px;
    height: 15px;
}

.tm-active-info p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
}

.tm-active-info__best {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--line-strong);
    font-weight: 600;
    color: var(--foreground) !important;
}

.tm-active-info__best svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* ---------- Telefon onizleme ---------- */

.tm-preview-wrap {
    display: flex;
    justify-content: center;
}

.tm-phone {
    --tm-c: #14B8A6;
    --tm-bg: #F2FAFA;
    --tm-fg: #124B47;
    --tm-srf: #FFFFFF;
    width: 100%;
    max-width: 380px;
    border-radius: 34px;
    background: #101418;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 30px 60px -20px rgba(13, 148, 136, 0.25);
    position: relative;
}

.tm-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    border-radius: 0 0 14px 14px;
    background: #101418;
    z-index: 3;
}

.tm-menu {
    border-radius: 24px;
    overflow: hidden;
    background: var(--tm-bg);
    color: var(--tm-fg);
    transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
    min-height: 560px;
    display: flex;
    flex-direction: column;
}

.tm-menu-head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 34px 15px 12px;
    flex-shrink: 0;
}

.tm-menu-logo {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--tm-c);
    color: #fff;
    transition: background 0.5s;
    flex-shrink: 0;
}

.tm-menu-logo svg {
    width: 17px;
    height: 17px;
}

.tm-menu-brand {
    flex: 1;
    min-width: 0;
}

.tm-menu-brand strong {
    display: block;
    font-size: 14.5px;
    font-family: var(--font-display);
}

.tm-menu-brand small {
    font-size: 10.5px;
    opacity: 0.65;
}

.tm-menu-lang {
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1.5px solid var(--tm-c);
    color: var(--tm-c);
    transition: border-color 0.5s, color 0.5s;
    flex-shrink: 0;
}

/* Sablon govdesi */
.tm-view {
    flex: 1;
    padding: 0 15px;
    overflow: hidden;
}

.tm-view.is-in > * {
    animation: tmViewIn 0.5s var(--ease-out) backwards;
}

.tm-view.is-in > *:nth-child(2) { animation-delay: 0.06s; }
.tm-view.is-in > *:nth-child(3) { animation-delay: 0.12s; }
.tm-view.is-in > *:nth-child(4) { animation-delay: 0.18s; }

@keyframes tmViewIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Ortak parcalar --- */

.tm-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 7px;
    border-radius: 11px;
    background: var(--tm-srf);
    border: 1px solid rgba(127, 127, 127, 0.13);
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.5s;
}

.tm-row small {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    opacity: 0.6;
}

.tm-row em {
    font-style: normal;
    font-weight: 800;
    color: var(--tm-c);
    transition: color 0.5s;
    flex-shrink: 0;
}

.tm-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.tm-pills.is-sticky {
    padding: 8px 0;
    border-bottom: 1px solid rgba(127, 127, 127, 0.14);
    margin-bottom: 10px;
}

.tm-pills span {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(127, 127, 127, 0.12);
    white-space: nowrap;
}

.tm-pills span.is-active {
    background: var(--tm-c);
    color: #fff;
    transition: background 0.5s;
}

.tm-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--tm-srf);
    border: 1px solid rgba(127, 127, 127, 0.16);
    font-size: 12px;
    opacity: 0.75;
    transition: background 0.5s;
}

.tm-search svg {
    width: 14px;
    height: 14px;
}

/* --- Sablon 1 + 2: akordeon --- */

.tm-acc {
    margin-bottom: 9px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(127, 127, 127, 0.13);
}

.tm-acc-cover {
    position: relative;
    height: 76px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 10px 12px;
}

.tm-acc-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.68));
}

.tm-acc-name {
    position: relative;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.tm-acc-chev {
    position: relative;
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--tm-c);
    color: #fff;
    transition: background 0.5s, transform 0.35s;
}

.tm-acc-chev svg {
    width: 13px;
    height: 13px;
}

.tm-acc.is-open .tm-acc-chev {
    transform: rotate(180deg);
}

.tm-acc-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px;
    background: var(--tm-srf);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.5s;
}

.tm-acc-bar svg {
    width: 15px;
    height: 15px;
    color: var(--tm-c);
    transition: color 0.5s;
}

.tm-acc.is-open .tm-acc-bar svg {
    transform: rotate(180deg);
}

.tm-acc-body {
    padding: 9px 9px 3px;
    background: rgba(127, 127, 127, 0.05);
}

/* --- Sablon 2: hero seridi --- */

.tm-hero2 {
    position: relative;
    height: 104px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 7px;
    padding: 12px;
    margin-bottom: 12px;
}

.tm-hero2-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72));
}

.tm-hero2-txt {
    position: relative;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
}

.tm-hero2-txt em {
    font-style: normal;
    color: #fff;
    background: var(--tm-c);
    padding: 1px 7px;
    border-radius: 999px;
    transition: background 0.5s;
}

.tm-hero2-btn {
    position: relative;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--tm-c);
    color: #fff;
    transition: background 0.5s;
}

/* --- Sablon 3: kategori kartlari --- */

.tm-catcards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.tm-catcard {
    position: relative;
    height: 88px;
    border-radius: 13px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.tm-cc-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72));
}

.tm-catcard > span:last-child {
    position: relative;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
}

.tm-drill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 11px;
    border: 1px dashed var(--tm-c);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--tm-c);
    transition: color 0.5s, border-color 0.5s;
}

.tm-drill svg {
    width: 14px;
    height: 14px;
}

/* --- Sablon 4: kompakt --- */

.tm-compact .tm-row {
    padding: 8px 12px;
    margin-bottom: 5px;
}

/* --- Sablon 5 + 6: hero + izgara --- */

.tm-hero5 {
    position: relative;
    height: 128px;
    margin: 0 -15px 12px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.tm-hero5.is-short {
    height: 92px;
}

.tm-hero5-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.66));
}

.tm-hero5-mark {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--tm-c);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    transition: background 0.5s;
}

.tm-hero5 strong {
    position: relative;
    font-family: var(--font-display);
    font-size: 15px;
    color: #fff;
}

.tm-hero5 small {
    position: relative;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.82);
}

.tm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.tm-card {
    border-radius: 13px;
    overflow: hidden;
    background: var(--tm-srf);
    border: 1px solid rgba(127, 127, 127, 0.13);
    padding-bottom: 9px;
    transition: background 0.5s;
}

.tm-card-img {
    display: block;
    height: 62px;
    background-size: cover;
    background-position: center;
    margin-bottom: 7px;
}

.tm-card strong {
    display: block;
    padding: 0 10px;
    font-size: 12px;
}

.tm-card em {
    display: block;
    padding: 2px 10px 0;
    font-style: normal;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--tm-c);
    transition: color 0.5s;
}

/* --- Sablon 6: vitrin --- */

.tm-showcase {
    margin-bottom: 12px;
}

.tm-sc-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--tm-c);
    color: #fff;
    margin-bottom: 8px;
    transition: background 0.5s;
}

.tm-sc-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.tm-sc-strip span {
    height: 54px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Sepet cubugu */
.tm-cartbar {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 15px;
    padding: 12px 15px;
    border-radius: 999px;
    background: var(--tm-c);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    transition: background 0.5s;
    flex-shrink: 0;
}

.tm-cartbar svg {
    width: 15px;
    height: 15px;
}

.tm-cartbar em {
    font-style: normal;
    margin-left: auto;
    font-weight: 800;
}

/* ---------- Sablon anatomisi kartlari ---------- */

.tm-anatomy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tm-ana-card {
    position: relative;
    padding: 26px 24px 22px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.tm-ana-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.tm-ana-no {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: var(--content-1);
}

.tm-ana-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    margin-bottom: 14px;
}

.tm-ana-icon svg {
    width: 21px;
    height: 21px;
}

.tm-ana-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 9px;
}

.tm-ana-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
    margin-bottom: 14px;
}

.tm-ana-best {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--line-strong);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-700);
}

.tm-ana-best svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- Ozellestirme paneli mock ---------- */

.tm-custom {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tm-custom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
}

.tm-custom-row svg {
    width: 15px;
    height: 15px;
    vertical-align: -3px;
    margin-right: 8px;
    color: var(--primary);
}

.tm-custom-val {
    font-weight: 700;
    color: var(--fg-soft);
    text-align: right;
}

.tm-custom-val--live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-700);
}

.tm-custom-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #14B8A6;
    flex-shrink: 0;
    transition: background 0.4s;
}

.tm-custom-toggle {
    width: 34px;
    height: 19px;
    border-radius: 999px;
    background: var(--line-strong);
    position: relative;
    flex-shrink: 0;
}

.tm-custom-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--white);
    transition: left 0.25s;
}

.tm-custom-toggle.is-on {
    background: var(--primary-500);
}

.tm-custom-toggle.is-on::after {
    left: 17px;
}

/* ---------- Musteri tema secici mock ---------- */

.tm-picker-mock {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px 22px;
}

.tm-picker-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 14.5px;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.tm-picker-head svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

.tm-picker-label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 9px;
}

.tm-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.tm-picker-opt {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--foreground);
}

.tm-picker-opt i {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1080px) {
    .tm-studio {
        grid-template-columns: 1fr;
    }

    .tm-controls {
        position: static;
    }

    .tm-anatomy {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tm-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-anatomy {
        grid-template-columns: 1fr;
    }

    .tm-tpl-list {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GARSON POS — ek bolumler
   ===================================================== */

.gp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gp-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.gp-hstat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gp-hstat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    margin-bottom: 4px;
}

.gp-hstat-icon svg {
    width: 20px;
    height: 20px;
}

.gp-hstat strong {
    font-family: var(--font-display);
    font-size: clamp(19px, 2.2vw, 24px);
    color: var(--primary-700);
    line-height: 1.1;
}

.gp-hstat em {
    font-style: normal;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--fg-soft);
    line-height: 1.4;
}

/* Kurulum adimlari */
.gp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gp-step {
    position: relative;
    padding: 30px 26px 26px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.gp-step:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.gp-step-no {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px -6px rgba(13, 148, 136, 0.55);
}

.gp-step h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 9px;
}

.gp-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg-soft);
}

.gp-step code {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 13px;
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--content-1);
    color: var(--primary-700);
    font-weight: 700;
}

@media (max-width: 920px) {
    .gp-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gp-steps {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GALERI — ek bolumler
   ===================================================== */

.gal-intro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.gal-intro-card {
    padding: 26px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.gal-intro-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.gal-intro-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    margin-bottom: 14px;
}

.gal-intro-icon svg {
    width: 21px;
    height: 21px;
}

.gal-intro-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
}

.gal-intro-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
}

/* Tasarim notlari */
.gal-notes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gal-note {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--radius-md);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.gal-note-num {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.gal-note h3 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
}

.gal-note p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
}

@media (max-width: 1080px) {
    .gal-intro,
    .gal-notes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gal-intro,
    .gal-notes {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   ANA SAYFA — HERO UPGRADE
   ===================================================== */
/* ============================================================
   HERO UPGRADE (.hx-)
   Mevcut hero'nun ÜZERİNE eklenen katman: canlı durum şeridi,
   başlıkta gradient akışı, özellik ticker'ı, kaydırma ipucu.

   Tasarım kararları:
   - Hiçbir .hero-* kuralı ezilmez. Gradient akışı .grad.hx-grad-flow
     bileşik seçicisiyle çözülür (aynı özgüllük, dosyada sonra gelir).
   - .hx-live ilk ekranda ve hero'nun giriş zincirinin parçası →
     hero'nun kendi heroFadeUp keyframe'i (0.04s, rozetten önce).
   - .hx-ticker / .hx-scroll hero'nun EN ALTINDA, ilk ekranın altında →
     motorun `.reveal` IntersectionObserver API'si. Bu elemanlarda
     heroFadeUp kuralı olmadığı için iki sistem çakışmaz.
   - Sürekli dönen sadece 4 küçük şey: 8px canlı nokta, çok yavaş
     gradient akışı (18s), ticker (46s, hover/focus'ta durur),
     kaydırma tekerleği. Hareket eden chip'lerde backdrop-filter YOK
     (.theme-chip ile aynı karar — hareketli backdrop pahalıdır).
   ============================================================ */

/* ---------- (a) Canlı durum şeridi ---------- */

/* display:flex + width:fit-content ZORUNLU.
   inline-flex olursa, .hero-badge de inline-flex (landing.css:610) ve
   .hero-copy düz bir block olduğu için ikisi aynı satır kutusuna
   düşer ve yan yana dizilir. */
.hx-live {
    display: flex;
    align-items: center;
    gap: 10px;
    width: -webkit-fit-content;
    width: fit-content;
    padding: 6px 15px 6px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--fg-soft);
    /* Hero'nun kendi giriş ritmi — rozetten (0.10s) hemen önce */
    animation: heroFadeUp 0.85s var(--ease-out) 0.04s both;
}

.hx-live-text strong {
    font-weight: 700;
    color: var(--primary-700);
}

/* Yanıp sönen nokta: nokta sabit kalır, sadece halkası genişleyip
   söner. Sürekli dönen bir animasyon olduğu için 8px'te tutuldu.
   rgba() elle yazıldı: box-shadow alfalı renk ister, dosyanın her
   yerinde aynı desen kullanılıyor. */
.hx-live-dot {
    flex: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-500);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45);
    animation: hxLivePulse 2.6s var(--ease-out) infinite;
}

@keyframes hxLivePulse {
    0%   { box-shadow: 0 0 0 0   rgba(20, 184, 166, 0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0);    }
    100% { box-shadow: 0 0 0 0   rgba(20, 184, 166, 0);    }
}

.hx-live-sep {
    flex: none;
    width: 1px;
    height: 13px;
    background: var(--line-strong);
}

/* --fg-faint (0.42 alfa) 12.5px'te AA altında kalıyordu → --fg-soft */
.hx-live-alt {
    color: var(--fg-soft);
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- (b) Başlıkta gradient metin akışı ---------- */
/* .hero-title .grad özgüllüğü (0,2,0) — .grad.hx-grad-flow de (0,2,0),
   dosyada sonra geldiği için kazanır. Böylece mevcut kural EZİLMEDEN
   sadece bu span için genişletilmiş olur.

   background-size:200% + position 0%→200% tam olarak BİR gradient
   döşemesi kadar kaydırır; ilk ve son durak aynı renk olduğu için
   döngü dikişsizdir (dosyadaki shimmerSlide/borderFlow ile aynı desen).

   18s: başlık okuma yolunda olduğu için akış kasten çok yavaş.
   --warning turuncusu dar bir banda sıkıştırıldı; ağırlık --primary
   ailesinde kalıyor, marka gradientinden kopmuyor. */

.grad.hx-grad-flow {
    background: linear-gradient(
        110deg,
        var(--primary-500) 0%,
        var(--primary)     26%,
        var(--primary-700) 44%,
        var(--warning)     50%,
        var(--primary-700) 56%,
        var(--primary)     74%,
        var(--primary-500) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hxGradFlow 18s linear infinite;
}

@keyframes hxGradFlow {
    from { background-position:   0% 50%; }
    to   { background-position: 200% 50%; }
}

/* ---------- (c) Özellik ticker'ı ---------- */
/* .theme-marquee ile aynı teknik: max-content track + iki özdeş grup
   + translateX(-50%). İki grubun genişliği eşit olmak zorunda; markup
   maddeleri Razor döngüsüyle iki kez bastığı için garanti altında.

   Giriş: markup'taki `.reveal` sınıfı (heroFadeUp DEĞİL — bu blok ilk
   ekranın altında, sayfa yüklenirken çalışan animasyon boşa giderdi). */

.hx-ticker {
    position: relative;
    margin-top: clamp(38px, 5vw, 60px);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0)    0%,
        rgba(255, 255, 255, 0.55) 22%,
        rgba(255, 255, 255, 0.55) 78%,
        rgba(255, 255, 255, 0)    100%
    );
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.hx-ticker-track {
    display: flex;
    width: max-content;
    animation: hxTickerScroll 46s linear infinite;
}

/* Fare üstündeyken VE klavyeyle içinde gezinirken durur */
.hx-ticker:hover .hx-ticker-track,
.hx-ticker:focus-within .hx-ticker-track {
    animation-play-state: paused;
}

.hx-ticker-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
}

/* backdrop-filter BİLEREK YOK: 20 chip sürekli translate ediliyor,
   hareketli backdrop her karede arka planı yeniden rasterize ettirir
   (hero'da ayrıca fx-network canvas'ı rAF ile çiziyor).
   .theme-chip de aynı sebeple düz var(--white) kullanıyor. */
.hx-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--foreground);
    white-space: nowrap;
}

.hx-ticker-item svg {
    flex: none;
    width: 15px;
    height: 15px;
    color: var(--primary);
}

@keyframes hxTickerScroll {
    to { transform: translateX(-50%); }
}

/* ---------- (d) Aşağı kaydırma ipucu ---------- */

.hx-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: -webkit-fit-content;
    width: fit-content;
    margin: clamp(26px, 4vw, 40px) auto 0;
    padding: 4px 8px 2px;
    border-radius: 14px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* 11.5px uppercase'te --fg-faint (0.42) AA altında kalıyordu */
    color: var(--fg-soft);
    transition: color 0.3s var(--ease-out);
}

.hx-scroll:hover { color: var(--primary-700); }

.hx-scroll:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
}

.hx-scroll-mouse {
    display: flex;
    justify-content: center;
    width: 24px;
    height: 38px;
    padding-top: 7px;
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    background: var(--glass);
    transition: border-color 0.3s var(--ease-out);
}

.hx-scroll:hover .hx-scroll-mouse { border-color: var(--primary-500); }

.hx-scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    animation: hxScrollWheel 2.4s var(--ease-out) infinite;
}

@keyframes hxScrollWheel {
    0%   { transform: translateY(0);    opacity: 0; }
    25%  { transform: translateY(3px);  opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
    /* .hero-copy 920px'de text-align:center oluyor (landing.css:4066),
       ama .hx-live fit-content genişlikte bir blok kutu — text-align
       onu ortalamaz, margin auto gerekir (.hero-desc ile aynı desen). */
    .hx-live {
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
    }

    .hx-ticker      { margin-top: 34px; }
    .hx-ticker-item { font-size: 12.5px; padding: 8px 14px; }
}

@media (max-width: 640px) {
    /* Rozet tek satırda kalsın: ikinci yarısı gizlenir */
    .hx-live { gap: 8px; padding: 5px 13px 5px 10px; }
    .hx-live-sep,
    .hx-live-alt { display: none; }

    .hx-ticker       { padding: 13px 0; margin-top: 30px; }
    .hx-ticker-track { animation-duration: 34s; }
    .hx-ticker-group { gap: 9px; padding-right: 9px; }
    .hx-ticker-item  { font-size: 12px; padding: 7px 13px; gap: 7px; }
    .hx-ticker-item svg { width: 14px; height: 14px; }

    /* Mobilde kaydırma ipucu gereksiz — kullanıcı zaten kaydırıyor */
    .hx-scroll { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    /* .hx-live heroFadeUp ile giriyor → animasyonu kapat */
    .hx-live {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    /* .hx-ticker / .hx-scroll `.reveal` ile giriyor → geçişi kapat.
       (Global 4025'teki kural sadece blur'u sıfırlıyor.) */
    .hx-ticker,
    .hx-scroll {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .hx-live-dot,
    .hx-scroll-wheel,
    .hx-ticker-track {
        animation: none !important;
    }

    /* Gradient akışı dururken metin kırpılmasın: tek döşemeye dön */
    .grad.hx-grad-flow {
        animation: none !important;
        background-size: 100% auto;
        background-position: 0 50%;
    }

    /* Marquee durunca maddeler erişilemez kalmasın: elle kaydırılabilir
       olur, kenar solması ve ikinci (kopya) grup kaldırılır. */
    .hx-ticker {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hx-ticker-group[aria-hidden="true"] { display: none; }

    .hx-scroll-wheel { opacity: 1; transform: translateY(4px); }
}

/* =====================================================
   ANA SAYFA — SOSYAL KANIT
   ===================================================== */
/* =====================================================
   SOSYAL KANIT (#sosyal-kanit)
   Uc parca: (a) sektor seridi — iki yonlu iki sira CSS marquee,
   (b) avatar kumesi + guven metrigi, (c) 3'lu mini istatistik.

   Gercek musteri logosu paylasilmadigindan logo seridi yerine
   hizmet verilen isletme turleri gosterilir; 3. bolumdeki .trust
   seridiyle icerik tekrari olmasin diye burada nis turler var.

   Marquee teknigi .theme-marquee ile ayni: track icinde N ozdes
   grup, translateX(-50%) ile kusursuz donus. DIKKAT: dongunun
   dikissiz olmasi icin yarim-track genisligi >= viewport olmali;
   bu yuzden sira basina 8 tur x 4 tekrar kullanilir (~2400px).
   ===================================================== */

.sp-proof {
    position: relative;
    overflow: hidden;
}

.sp-proof .section-head {
    margin-bottom: clamp(28px, 3.5vw, 44px);
}

/* ---------- (a) Sektor seridi ---------- */

.sp-ticker {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 4px 0 clamp(40px, 5vw, 62px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.sp-ticker-row {
    overflow: hidden;
}

.sp-ticker-track {
    display: flex;
    width: max-content;
    animation: spTickerScroll 46s linear infinite;
}

/* Alt sira ters yonde ve daha yavas akar; iki serit ayni anda ayni
   yone gitmedigi icin goz tek bir noktaya kilitlenmez, dikkat dagilmaz. */
.sp-ticker-row--rev .sp-ticker-track {
    animation-duration: 58s;
    animation-direction: reverse;
}

.sp-ticker:hover .sp-ticker-track {
    animation-play-state: paused;
}

/* flex:none — gruplar/chip'ler buzulurse translateX(-50%) matematigi
   bozulur ve dongude atlama olusur. */
.sp-ticker-group {
    flex: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0 12px 0 0;
    list-style: none;
}

.sp-chip {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

.sp-chip-ic {
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
}

.sp-chip-ic svg { width: 16px; height: 16px; }

@keyframes spTickerScroll {
    to { transform: translateX(-50%); }
}

/* ---------- (b) Avatar kumesi + guven metrigi ---------- */

/* backdrop-filter BILEREK kullanilmadi: panelin arkasinda duz
   var(--background) disinda bir sey yok, yani gorsel kazanci sifir;
   buna karsilik icindeki blur'lu + scroll'da transform'lanan glow
   her frame'de backdrop katmanini yeniden hesaplatirdi. */
.sp-trust {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 34px);
    padding: clamp(24px, 3.2vw, 36px) clamp(22px, 3.2vw, 40px);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--white), var(--content-1));
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-md);
}

/* Dekoratif isik — data-scrub ile scroll boyunca cok hafif kayar.
   .reveal ile ayni elemanda olmadigi icin giris animasyonunu bozmaz. */
.sp-trust-glow {
    position: absolute;
    top: -140px;
    right: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 68%);
    filter: blur(28px);
    pointer-events: none;
}

.sp-avatars {
    flex: none;
    display: flex;
    align-items: center;
}

.sp-av {
    width: 54px;
    height: 54px;
    margin-left: -15px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(140deg, var(--primary-500), var(--primary-700));
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out);
}

.sp-av:first-child { margin-left: 0; }
.sp-av:nth-child(2) { background: linear-gradient(140deg, #2DD4BF, var(--primary)); }
.sp-av:nth-child(3) { background: linear-gradient(140deg, var(--primary), #0B3F3A); }
.sp-av:nth-child(4) { background: linear-gradient(140deg, #FBBF24, var(--warning)); }

.sp-av svg { width: 22px; height: 22px; }

.sp-av:hover { transform: translateY(-5px); }

.sp-av--more {
    color: var(--primary-700);
    background: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-sm);
}

.sp-trust-copy { min-width: 0; }

.sp-trust-line {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.1vw, 25px);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.015em;
}

/* Statik rakam — data-counter BILEREK verilmedi: cumle icinde sayan
   bir rakam her basamak degisiminde satir kirilimini oynatir. */
.sp-metric {
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-trust-sub {
    margin-top: 10px;
    font-size: 14.5px;
    color: var(--fg-soft);
}

/* ---------- (c) Mini istatistik kartlari ---------- */

.sp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.sp-stat {
    position: relative;
    overflow: hidden;
    padding: 26px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

/* Ust kenardaki vurgu cizgisi yalnizca hover'da acilir */
.sp-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s var(--ease-out);
}

.sp-stat:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.sp-stat:hover::before { transform: scaleX(1); }

.sp-stat-ic {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
}

.sp-stat-ic svg { width: 20px; height: 20px; }

.sp-stat-num {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-stat-title {
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 700;
    margin-top: 8px;
}

.sp-stat-desc {
    margin-top: 7px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
}

.sp-foot {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--fg-soft);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .sp-trust {
        gap: 20px;
    }

    .sp-av {
        width: 48px;
        height: 48px;
        margin-left: -14px;
    }

    .sp-av svg { width: 20px; height: 20px; }
}

@media (max-width: 920px) {
    .sp-trust {
        flex-direction: column;
        text-align: center;
    }

    .sp-avatars { justify-content: center; }

    .sp-stats { grid-template-columns: repeat(2, 1fr); }

    /* Ucuncu kart tek basina kalmasin */
    .sp-stats > .sp-stat:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .sp-ticker {
        gap: 10px;
        padding-bottom: 34px;
    }

    .sp-chip {
        gap: 8px;
        padding: 8px 15px 8px 8px;
        font-size: 13px;
    }

    .sp-chip-ic {
        width: 27px;
        height: 27px;
        border-radius: 9px;
    }

    .sp-chip-ic svg { width: 14px; height: 14px; }

    .sp-trust {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }

    .sp-av {
        width: 42px;
        height: 42px;
        margin-left: -12px;
        border-width: 2px;
    }

    .sp-av svg { width: 18px; height: 18px; }
    .sp-av--more { font-size: 11.5px; }

    .sp-trust-line { font-size: 17.5px; }
    .sp-trust-sub { font-size: 13.5px; }

    .sp-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sp-stats > .sp-stat:last-child { grid-column: auto; }

    .sp-stat {
        padding: 22px 20px;
        border-radius: var(--radius-md);
    }
}

@media (prefers-reduced-motion: reduce) {
    /* Serit akmasin: yalnizca ilk (asil) grup kalsin, satir halinde sarsin.
       Tam genislikte oldugu icin container hizasi kadar padding eklenir. */
    .sp-ticker {
        -webkit-mask-image: none;
        mask-image: none;
        padding-left: clamp(20px, 4vw, 40px);
        padding-right: clamp(20px, 4vw, 40px);
    }

    .sp-ticker-row { overflow: visible; }

    .sp-ticker-track {
        animation: none;
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sp-ticker-group {
        flex: 0 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    /* Kopya gruplar (aria-hidden="true") gizlenir */
    .sp-ticker-group:not(:first-child) { display: none; }

    .sp-av,
    .sp-stat,
    .sp-stat::before {
        transition: none;
    }
}

/* =====================================================
   ANA SAYFA — BENTO
   ===================================================== */
/* =====================================================
   NEDEN BESTQRMENU — BENTO IZGARA (#neden)
   Asimetrik 12 kolonluk bento. Kart olculeri grid-template-areas
   ile kurulur (2 buyuk, 2 orta, 4 kucuk); 1080/920/640'ta yeniden
   dizilir. Renkler sadece mevcut token'lardan turetilir.
   ===================================================== */

.bn-section {
    position: relative;

    /* Masa durum renkleri — yeni global renk eklemeden token turevi */
    --bn-free: rgba(18, 75, 71, 0.24);
    --bn-busy: var(--primary-500);
    --bn-pay: var(--warning);
}

/* Bolumun arkasindaki yumusak isik; scroll ile hafifce yukselir.
   transform'u data-scrub surdugu icin ortalama margin ile yapilir. */
.bn-aura {
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(900px, 92%);
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 42%, rgba(20, 184, 166, 0.18), transparent 72%);
    filter: blur(50px);
    pointer-events: none;
}

.bn-section .container {
    position: relative;
    z-index: 1;
}

/* ---------- Izgara ---------- */

.bn-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(160px, auto)) minmax(172px, auto) minmax(160px, auto);
    grid-template-areas:
        "a a a a a a a b b b b b"
        "a a a a a a a b b b b b"
        "c c c c c d d d d e e e"
        "f f f f g g g g h h h h";
    gap: 18px;
}

.bn-cell-a { grid-area: a; }
.bn-cell-b { grid-area: b; }
.bn-cell-c { grid-area: c; }
.bn-cell-d { grid-area: d; }
.bn-cell-e { grid-area: e; }
.bn-cell-f { grid-area: f; }
.bn-cell-g { grid-area: g; }
.bn-cell-h { grid-area: h; }

/* ---------- Kart govdesi ---------- */

.bn-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 160px;
    padding: 24px 24px 22px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}

.bn-card--lg {
    min-height: 360px;
}

/* Hover'da sag ustten gelen yumusak isik */
.bn-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(120% 96% at 100% 0%, rgba(20, 184, 166, 0.13), transparent 58%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.bn-card:hover::before {
    opacity: 1;
}

.bn-card:hover {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(20, 184, 166, 0.09);
}

/* data-tilt kartlarin transform'unu JS suruyor; CSS kalkma
   yalnizca tilt'siz kartlara verilir, boylece cakisma olmaz. */
.bn-card:not([data-tilt]):hover {
    transform: translateY(-6px);
}

.bn-card:focus-visible,
.bn-card:focus-within {
    outline: 2px solid var(--primary-500);
    outline-offset: 3px;
}

/* ---------- Kart icerigi ---------- */

.bn-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--content-1);
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.bn-tag svg {
    width: 14px;
    height: 14px;
}

.bn-tag--light {
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: var(--white);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.bn-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 8px 20px -10px rgba(13, 148, 136, 0.75);
    transition: transform 0.45s var(--ease-out);
}

.bn-ico svg {
    width: 20px;
    height: 20px;
}

.bn-card:hover .bn-ico {
    transform: rotate(-6deg) scale(1.06);
}

.bn-title {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -0.015em;
}

.bn-card--lg .bn-title {
    font-size: clamp(20px, 2.1vw, 25px);
}

.bn-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--fg-soft);
}

.bn-card--lg .bn-text {
    font-size: 15px;
}

/* ---------- Buyuk kart B: gorsel ---------- */

.bn-card--shot {
    padding: 0;
    gap: 0;
    justify-content: flex-end;
}

.bn-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.1s var(--ease-out);
}

.bn-card--shot:hover .bn-shot {
    transform: scale(1.06);
}

.bn-shot-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 48, 43, 0.04) 0%, rgba(6, 48, 43, 0.34) 44%, rgba(6, 48, 43, 0.88) 100%);
    pointer-events: none;
}

.bn-shot-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 24px 24px;
}

.bn-shot-copy .bn-title {
    color: var(--white);
}

.bn-shot-copy .bn-text {
    color: rgba(255, 255, 255, 0.84);
}

/* ---------- Buyuk kart A: canli masa izgarasi mock'u ---------- */

.bn-pos {
    /* margin-top:auto ile karta yaslanir, alt kenardan tasarak
       kirpilir — panelin devam ettigi hissini verir. */
    margin: auto -6px -34px;
    padding: 12px 12px 22px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, var(--white), var(--content-1));
    border: 1px solid var(--line);
    border-bottom: none;
    box-shadow: 0 -8px 26px -20px rgba(15, 118, 110, 0.55);
}

.bn-pos-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 3px 9px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--line);
}

.bn-pos-live {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-500);
    animation: bnLivePulse 2.8s var(--ease-out) infinite;
}

.bn-pos-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--foreground);
}

.bn-pos-keys {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.bn-pos-key {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-faint);
    white-space: nowrap;
}

.bn-pos-kdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bn-free);
}

.bn-pos-kdot.bn-is-busy { background: var(--bn-busy); }
.bn-pos-kdot.bn-is-pay  { background: var(--bn-pay); }

.bn-pos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
}

.bn-pos-t {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 4px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: var(--fg-faint);
}

.bn-pos-dot {
    width: 100%;
    max-width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--bn-free);
}

.bn-pos-t.bn-is-busy {
    border-color: rgba(13, 148, 136, 0.30);
    background: linear-gradient(180deg, var(--white), rgba(232, 250, 246, 0.85));
    color: var(--primary-700);
}

.bn-pos-t.bn-is-busy .bn-pos-dot { background: var(--bn-busy); }

.bn-pos-t.bn-is-pay {
    border-color: rgba(245, 158, 11, 0.38);
    background: linear-gradient(180deg, var(--white), rgba(255, 247, 232, 0.9));
    color: #B45309;
}

.bn-pos-t.bn-is-pay .bn-pos-dot { background: var(--bn-pay); }

/* Sadece uc masada, uzun dongulu "guncellendi" halkasi.
   Dongunun %72'si bosluk — surekli yanip sonmez, dikkat dagitmaz. */
.bn-pos-t.bn-is-live::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid var(--primary-500);
    opacity: 0;
    animation: bnTilePulse 9s var(--ease-out) infinite;
}

.bn-pos-t.bn-is-live.bn-pos-t--d2::after { animation-delay: 3s; }
.bn-pos-t.bn-is-live.bn-pos-t--d3::after { animation-delay: 6s; }

@keyframes bnLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45); }
    70%  { box-shadow: 0 0 0 7px rgba(20, 184, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

@keyframes bnTilePulse {
    0%, 72% { opacity: 0; box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.30); }
    80%     { opacity: 1; box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14); }
    100%    { opacity: 0; box-shadow: 0 0 0 9px rgba(20, 184, 166, 0); }
}

/* ---------- Orta/kucuk kart susleri ---------- */

/* 17 tema — renk kareleri (--bn-i sirali gecikme icin) */
.bn-swatch {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 4px;
}

.bn-swatch span {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: var(--bn-sw, var(--primary));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42);
    transition: transform 0.45s var(--ease-out);
    transition-delay: calc(var(--bn-i, 0) * 0.035s);
}

.bn-card:hover .bn-swatch span {
    transform: translateY(-4px);
}

/* 8 dil — kod rozetleri */
.bn-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
}

.bn-langs span {
    padding: 4px 9px;
    border-radius: 8px;
    background: var(--content-1);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary-700);
}

/* Rapor karti — mini sutun grafik (hover'da --bn-h2 yuksekligine cikar) */
.bn-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 34px;
    margin-top: auto;
    padding-top: 6px;
}

.bn-bars span {
    flex: 1 1 0;
    height: var(--bn-h, 40%);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, var(--primary-500), rgba(20, 184, 166, 0.22));
    transition: height 0.5s var(--ease-out);
    transition-delay: calc(var(--bn-i, 0) * 0.05s);
}

.bn-card:hover .bn-bars span {
    height: var(--bn-h2, var(--bn-h, 40%));
}

/* ---------- Duyarli davranis ---------- */

@media (max-width: 1080px) {
    .bn-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "a a a a a a"
            "b b b b b b"
            "c c c d d d"
            "e e e f f f"
            "g g g h h h";
    }

    .bn-card--lg {
        min-height: 340px;
    }
}

@media (max-width: 920px) {
    .bn-grid {
        gap: 14px;
    }

    .bn-card {
        padding: 20px 20px 18px;
    }

    .bn-pos {
        margin: auto -4px -30px;
    }
}

@media (max-width: 640px) {
    .bn-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e"
            "f"
            "g"
            "h";
    }

    .bn-card {
        min-height: 0;
    }

    .bn-card--lg {
        min-height: 300px;
    }

    .bn-pos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bn-pos-keys {
        gap: 8px;
    }

    .bn-aura {
        height: 300px;
        filter: blur(38px);
    }
}

@media (max-width: 420px) {
    .bn-pos-key {
        display: none;
    }

    .bn-pos-key:first-child {
        display: inline-flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bn-card,
    .bn-ico,
    .bn-shot,
    .bn-swatch span,
    .bn-bars span {
        transition: none;
    }

    .bn-card:not([data-tilt]):hover,
    .bn-card:hover .bn-ico,
    .bn-card:hover .bn-swatch span,
    .bn-card--shot:hover .bn-shot {
        transform: none;
    }

    .bn-pos-live,
    .bn-pos-t.bn-is-live::after {
        animation: none;
    }

    .bn-pos-t.bn-is-live::after {
        opacity: 0;
    }
}

/* =====================================================
   ANA SAYFA — URUN (yeniden yazim)
   ===================================================== */
/* =====================================================
   ÜRÜN — İKİ TARAF, TEK DENEYİM (#urun)

   Solda müşteri telefonu, sağda restoran paneli. İki sütun
   AYNI kural setini paylaşır; renk farkı .du-side üzerindeki
   yerel --du-* değişkenleriyle kurulur (.du-side--staff sadece
   dört değişkeni ezer, tek bir kuralı bile tekrarlamaz).

   Bölümde data-fx-progress var; cihazlar --fx-p'yi
   data-scrub="drift-l|drift-r" ile okuyup karşılıklı makaslar.

   DİKKAT: .reveal / .reveal-left / .reveal-right taşıyan
   elemanlarda (.du-side, .du-bridge, .du-list > li) transition
   veya transform BİLDİRİLMEZ — landing.css'in blur'lu reveal
   geçişini ezip giriş animasyonunu bozar. Hover geçişleri
   reveal taşımayan çocuklara (.du-phone, .du-browser) verilir.
   ===================================================== */

.du-sec {
    position: relative;
    overflow: hidden;
}

/* İki taraftan gelen ışık — solda turkuaz, sağda amber */
.du-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(62% 52% at 10% 26%, rgba(20, 184, 166, 0.11), transparent 70%),
        radial-gradient(62% 52% at 90% 74%, rgba(245, 158, 11, 0.09), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.du-sec > .container {
    position: relative;
    z-index: 1;
}

/* ---------- İki sütunlu ayrım ---------- */

.du-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: stretch;
}

/* Ortadaki dikiş — iki tarafın aynı sistemi paylaştığı hissi */
.du-split::before {
    content: "";
    position: absolute;
    top: 9%;
    bottom: 9%;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
    pointer-events: none;
}

/* ---------- Taraf kartı ---------- */

.du-side {
    /* Yerel aksan paleti — sağ sütun bunları ezer */
    --du-accent: var(--primary);
    --du-accent-strong: var(--primary-700);
    --du-accent-soft: var(--content-1);
    --du-accent-glow: rgba(20, 184, 166, 0.22);

    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 2.1vw, 24px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.du-side--staff {
    --du-accent: var(--warning);
    --du-accent-strong: #B45309;
    --du-accent-soft: #FFF7E8;
    --du-accent-glow: rgba(245, 158, 11, 0.22);
}

/* Kart üstünde ince aksan çizgisi */
.du-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22%;
    right: 22%;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--du-accent), transparent);
    opacity: 0.8;
    pointer-events: none;
}

/* ---------- Cihaz sahnesi ---------- */

.du-stage {
    position: relative;
    /* Telefon mock'u tarayıcı mock'undan uzun; kısa olan sahne
       fazla yüksekliği emsin ki iki kart dengeli dursun. */
    flex: 1 1 auto;
    display: grid;
    place-items: center;
    min-height: clamp(300px, 31vw, 428px);
    padding: clamp(20px, 2.4vw, 32px);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 86% at 50% 0%, var(--du-accent-soft), transparent 74%),
        linear-gradient(180deg, var(--du-accent-soft), var(--white));
    border: 1px solid var(--line);
    overflow: hidden;
}

.du-stage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--du-accent-glow), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
}

/* ---------- Telefon mock'u (müşteri tarafı) ---------- */

.du-phone {
    position: relative;
    z-index: 1;
    width: clamp(168px, 18vw, 206px);
    aspect-ratio: 1 / 2.06;
    padding: 8px;
    border-radius: 34px;
    background: linear-gradient(150deg, #0B2422, #06302B);
    box-shadow:
        0 40px 72px -30px rgba(6, 48, 43, 0.62),
        inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    transition: box-shadow 0.45s var(--ease-out);
}

.du-side:hover .du-phone {
    box-shadow:
        0 48px 84px -28px rgba(6, 48, 43, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.du-phone-notch {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 19px;
    border-radius: 0 0 12px 12px;
    background: #06302B;
    z-index: 3;
}

.du-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 27px;
    overflow: hidden;
    background: var(--white);
}

.du-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Tek seferlik tarama ışığı — QR okutma anı. Döngü YOK.
   Tetikleyici yalnızca müşteri sütunu (.du-side--guest). */
.du-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.55), rgba(20, 184, 166, 0));
    opacity: 0;
    pointer-events: none;
}

.du-side--guest.in-view .du-scan {
    animation: du-scan 1.5s var(--ease-out) 0.45s 1 both;
}

@keyframes du-scan {
    0%   { opacity: 0;    transform: translateY(-40%); }
    16%  { opacity: 0.75; }
    80%  { opacity: 0.4;  }
    100% { opacity: 0;    transform: translateY(250%); }
}

/* ---------- Tarayıcı mock'u (panel tarafı) ---------- */

.du-browser {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.45s var(--ease-out);
}

.du-side:hover .du-browser {
    box-shadow: 0 42px 82px -30px rgba(15, 118, 110, 0.42);
}

.du-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.du-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* macOS trafik ışıkları — fiziksel nesne renkleri, temaya bağlı değil */
.du-dot--r { background: #FF5F57; }
.du-dot--y { background: #FEBC2E; }
.du-dot--g { background: #28C840; }

.du-browser-url {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    height: 22px;
    margin-left: 10px;
    padding: 0 11px;
    border-radius: 7px;
    background: var(--content-1);
    font-size: 11px;
    color: var(--fg-faint);
}

.du-browser-url svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--primary);
}

.du-browser-url span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.du-browser-screen {
    aspect-ratio: 16 / 10;
    background: var(--content-1);
}

.du-browser-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ---------- Sahne üstündeki bilgi çipleri ---------- */
/* Çipler sahneye sabitlenir, cihaz data-scrub ile kayar →
   ucuz ama etkili derinlik hissi. */

.du-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    max-width: calc(100% - 24px);
}

.du-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--du-accent-strong);
}

.du-chip--a {
    top: 16px;
    left: 14px;
}

.du-chip--b {
    right: 14px;
    bottom: 16px;
}

/* Canlı göstergesi — sayfadaki tek sürekli hareket, 8px, anlamlı */
.du-live {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #16A34A;
}

.du-live::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(22, 163, 74, 0.55);
    animation: du-pulse 2.4s var(--ease-out) infinite;
}

@keyframes du-pulse {
    0%   { transform: scale(0.55); opacity: 0.9; }
    70%  { transform: scale(1.5);  opacity: 0; }
    100% { transform: scale(1.5);  opacity: 0; }
}

/* ---------- Metin bloğu ---------- */

.du-copy {
    padding: clamp(20px, 2.3vw, 28px) clamp(4px, 0.8vw, 10px) clamp(6px, 1vw, 10px);
}

.du-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--du-accent-soft);
    color: var(--du-accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.du-badge svg {
    width: 14px;
    height: 14px;
}

.du-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(21px, 2.1vw, 28px);
    line-height: 1.16;
    margin-bottom: 12px;
}

.du-text {
    font-size: 15.5px;
    line-height: 1.62;
    color: var(--fg-soft);
    margin-bottom: 20px;
}

.du-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.du-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
}

/* Tik ikonu KOYU aksanı kullanır: amber (#F59E0B) krem zemin üzerinde
   ~1.9:1 ile görünmez kalıyordu; --du-accent-strong iki tarafta da
   3:1 grafik kontrast eşiğini geçer. */
.du-tick {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    margin-top: 1px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--du-accent-soft);
    color: var(--du-accent-strong);
}

.du-tick svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

/* ---------- İki tarafı bağlayan şerit ---------- */

.du-bridge {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
    margin-top: clamp(26px, 3.4vw, 44px);
    padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.6vw, 30px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.du-bridge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 12px 26px -14px rgba(15, 118, 110, 0.85);
}

.du-bridge-icon svg {
    width: 21px;
    height: 21px;
}

.du-bridge-text {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-soft);
}

.du-bridge-text strong {
    color: var(--foreground);
    font-weight: 700;
}

.du-bridge .btn {
    flex-shrink: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .du-stage {
        min-height: 336px;
        padding: 20px;
    }

    .du-chip {
        font-size: 11.5px;
        padding: 7px 11px;
    }
}

@media (max-width: 920px) {
    .du-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Tek sütunda ortadaki dikiş anlamını yitirir */
    .du-split::before {
        display: none;
    }

    .du-stage {
        min-height: 320px;
    }

    .du-browser {
        max-width: 520px;
    }

    /* Sarma: ikon + metin ilk satırda, CTA tam genişlikte alt satırda.
       (Metni `order` ile sona atmak ikonu butona yapıştırıyordu.) */
    .du-bridge {
        flex-wrap: wrap;
    }

    .du-bridge-text {
        flex: 1 1 240px;
    }

    .du-bridge .btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .du-side {
        padding: 14px;
    }

    .du-stage {
        min-height: 0;
        padding: 18px 14px 22px;
    }

    /* Mobilde backdrop-filter pahalı; opak çip aynı okunurluğu verir */
    .du-chip {
        background: var(--white);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    /* Dar ekranda iki çip kalabalık yapıyor — biri yeter */
    .du-chip--b {
        display: none;
    }

    .du-chip--a {
        top: 12px;
        left: 12px;
    }

    .du-phone {
        width: min(56vw, 196px);
    }

    .du-title {
        font-size: 21px;
    }

    .du-text {
        font-size: 14.5px;
    }

    .du-bridge {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* Sütun yönünde flex-basis YÜKSEKLİK demektir — 920px'teki
       yatay değerler burada sıfırlanmazsa metin ve buton şişer. */
    .du-bridge-text {
        flex: 0 0 auto;
    }

    .du-bridge .btn {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .du-live::after {
        animation: none !important;
    }

    .du-side--guest.in-view .du-scan {
        animation: none !important;
    }

    .du-scan {
        opacity: 0 !important;
    }

    .du-stage-glow {
        filter: none;
    }
}

/* =====================================================
   ANA SAYFA — UCTAN UCA AKIS (sticky)
   ===================================================== */
/* =====================================================
   UCTAN UCA AKIS — STICKY FILMSTRIP SAHNESI (.ss-)
   300vh'lik ray + icinde 100vh position:sticky panel.
   Motor [data-fx-progress="sticky"] ile raya --fx-p (0..1) yazar;
   degisken kalitildigi icin serit, ilerleme rayi ve etiketler
   ayni degeri okur — bolum basina tek scroll hesabi, sifir JS.

   Hiza matematigi: frame i, fx-p = i/3 aninda tam ortalanir.
   Ray 12.5%..87.5% araligina inset edildigi ve 4 etiket esit
   satirlara oturdugu icin gosterge tam aktif etiketin merkezine
   gelir. Yani ray, etiket ve serit birbirine senkrondur.

   Mobilde (<=920px) ve reduced-motion'da sticky tamamen kapanir,
   serit dikey kart listesine duser.
   ===================================================== */

.ss-scene {
    padding-bottom: clamp(30px, 5vw, 64px);
}

.ss-scene .section-head {
    margin-bottom: clamp(26px, 4vw, 44px);
}

/* Uzun ray — kaydirilabilir yuksekligi sahnenin suresini belirler */
.ss-track {
    position: relative;
    height: 300vh;
}

/* Sabitlenen panel. Ust dolgu fixed navbar (76px) icin. */
.ss-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    align-items: stretch;
    padding: calc(76px + clamp(12px, 3vh, 32px)) 0 clamp(20px, 5vh, 52px);
    overflow: hidden;
}

.ss-pin-inner {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(14px, 3vh, 28px);
    min-height: 0;
}

/* ---------- Panel basligi ---------- */

.ss-pin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ss-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.ss-pin-badge svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

/* Sahne baslar baslamaz sonen "kaydirin" ipucu */
.ss-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--fg-faint);
    opacity: clamp(0, calc(1 - var(--fx-p, 0) * 7), 1);
}

.ss-hint svg {
    width: 15px;
    height: 15px;
    animation: ssHintNudge 2.8s var(--ease-out) infinite;
}

@keyframes ssHintNudge {
    0%, 64%, 100% { transform: translateY(0); }
    80%           { transform: translateY(4px); }
}

/* ---------- Govde: ray + filmstrip ---------- */

.ss-body {
    display: grid;
    grid-template-columns: minmax(0, 226px) minmax(0, 1fr);
    gap: clamp(20px, 3.2vw, 50px);
    align-items: center;
    min-height: 0;
}

/* ---------- Dikey ilerleme rayi ---------- */

.ss-side {
    position: relative;
    height: clamp(258px, 44vh, 376px);
    padding-left: 30px;
}

.ss-rail {
    position: absolute;
    left: 5px;
    top: 12.5%;
    bottom: 12.5%;
    width: 3px;
    border-radius: 999px;
    background: var(--line-strong);
}

/* Dolgu yuksekligi dogrudan --fx-p'den */
.ss-rail-fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(var(--fx-p, 0) * 100%);
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--primary-500), var(--primary-700));
}

/* Gosterge — transform yerine negatif margin ile ortalanir */
.ss-rail-dot {
    position: absolute;
    left: 50%;
    top: calc(var(--fx-p, 0) * 100%);
    width: 13px;
    height: 13px;
    margin: -6.5px 0 0 -6.5px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-500);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.15);
}

/* ---------- Asama etiketleri ---------- */

.ss-labels {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Aktiflik = |fx-p*3 - i| mesafesi. abs() yerine max(x, -x) deseni
   (genis tarayici destegi). Deger cozulemezse opacity 1'e duser. */
.ss-label {
    --ss-d: calc(var(--fx-p, 0) * 3 - var(--ss-i, 0));
    --ss-ad: max(var(--ss-d), calc(var(--ss-d) * -1));
    display: flex;
    align-items: center;
    gap: 11px;
    opacity: clamp(0.32, calc(1.3 - var(--ss-ad)), 1);
}

.ss-label b {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 7px;
    background: var(--content-1);
}

.ss-label span {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--foreground);
}

/* ---------- Filmstrip ---------- */

.ss-viewport {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

/* Serit genisligi = pencere genisligi; 4 cocuk tasarak yanyana dizilir.
   Bu yuzden -300% tam olarak 3 pencere kadar kaydirir. */
.ss-strip {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translate3d(calc(var(--fx-p, 0) * -300%), 0, 0);
}

.ss-frame {
    --ss-d: calc(var(--fx-p, 0) * 3 - var(--ss-i, 0));
    --ss-ad: max(var(--ss-d), calc(var(--ss-d) * -1));
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
    padding-right: clamp(12px, 1.6vw, 22px);
    opacity: clamp(0.45, calc(1.15 - var(--ss-ad)), 1);
}

.ss-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(20px, 3vw, 42px);
    align-items: center;
    height: 100%;
    padding: clamp(22px, 2.6vw, 38px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* ---------- Frame metni ---------- */

.ss-copy {
    min-width: 0;
}

.ss-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.ss-step::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--warning));
}

.ss-copy h3 {
    font-size: clamp(20px, 2.3vw, 30px);
    margin-bottom: 12px;
}

.ss-copy p {
    font-size: clamp(14px, 1.15vw, 15.5px);
    line-height: 1.65;
    color: var(--fg-soft);
}

.ss-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.ss-tags li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.ss-tags svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ---------- Mock sahnesi (hafif karsi-parallax) ---------- */

.ss-stage {
    position: relative;
    height: 100%;
    min-height: 180px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    transform: translate3d(calc(clamp(-1, var(--ss-d), 1) * 26px), 0, 0);
    will-change: transform;
}

.ss-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.ss-stage--photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(18, 75, 71, 0.06), rgba(18, 75, 71, 0.40));
}

/* --- Mock 1: QR karti --- */

.ss-qr {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 18px 22px 19px;
    border-radius: var(--radius-md);
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.ss-qr-box {
    position: relative;
    width: clamp(74px, 7.6vw, 100px);
    height: clamp(74px, 7.6vw, 100px);
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary-700);
    background: var(--white);
    border: 2px dashed var(--line-strong);
    overflow: hidden;
}

.ss-qr-box svg {
    width: 58%;
    height: 58%;
}

.ss-qr-box::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, transparent, var(--primary-500), transparent);
    animation: ssScan 2.8s ease-in-out infinite;
}

@keyframes ssScan {
    0%, 100% { top: 12%; }
    50%      { top: 82%; }
}

.ss-qr strong {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--foreground);
}

.ss-qr > span {
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--fg-soft);
}

/* --- Mock 2: telefon --- */

.ss-phone {
    position: relative;
    height: min(100%, 336px);
    aspect-ratio: 9 / 18.5;
    padding: 7px;
    border-radius: 30px;
    background: linear-gradient(160deg, var(--primary-700), var(--foreground));
    box-shadow: var(--shadow-lg);
}

.ss-phone::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    width: 52px;
    height: 5px;
    margin-left: -26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.ss-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* --- Mock 3: mutfak siparis karti --- */

.ss-ticket {
    position: relative;
    z-index: 1;
    width: min(100%, 278px);
    padding: 15px 16px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.ss-ticket-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--line-strong);
}

.ss-ticket-top strong {
    font-family: var(--font-display);
    font-size: 14.5px;
    color: var(--foreground);
}

.ss-ticket-top span {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--fg-faint);
}

.ss-ticket ul {
    display: grid;
    gap: 8px;
}

.ss-ticket li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--foreground);
}

.ss-ticket em {
    font-style: normal;
    flex-shrink: 0;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ss-ticket em.is-prep {
    color: #B45309;
    background: #FEF3C7;
}

.ss-ticket em.is-ready {
    color: var(--primary-700);
    background: var(--content-1);
}

/* --- Mock 4: mini ciro paneli --- */

.ss-report {
    width: min(100%, 336px);
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.ss-report-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ss-report-top span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--fg-soft);
}

.ss-report-top strong {
    font-family: var(--font-display);
    font-size: clamp(19px, 2.1vw, 25px);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cubuklar 4. asama yaklasirken buyur (fx-p 0.60 -> 0.91) */
.ss-chart {
    --ss-grow: clamp(0.08, calc((var(--fx-p, 0) - 0.6) * 3.2), 1);
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 7px;
    height: clamp(84px, 12vh, 116px);
}

.ss-chart span {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    height: 100%;
}

.ss-chart b {
    display: block;
    height: calc(var(--ss-h, 50%) * var(--ss-grow));
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(to top, var(--primary-700), var(--primary-500));
}

.ss-chart span:last-child b {
    background: linear-gradient(to top, #D97706, var(--warning));
}

.ss-chart i {
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    color: var(--fg-faint);
}

.ss-report-legend {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.ss-report-legend li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-soft);
}

.ss-report-legend svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ---------- 1080px: daralan masaustu ---------- */

@media (max-width: 1080px) {
    .ss-body {
        grid-template-columns: minmax(0, 178px) minmax(0, 1fr);
        gap: 20px;
    }

    .ss-side {
        padding-left: 24px;
    }

    .ss-label span {
        font-size: 13.5px;
    }

    .ss-slide {
        padding: 22px;
        gap: 20px;
    }

    .ss-tags {
        margin-top: 14px;
    }
}

/* ---------- 920px VEYA reduced-motion: sticky sahne kapanir ----------
   Serit yatay kaymayi birakip dikey kart listesine duser.
   Etiket sutunu gizlenir; her frame kendi "Adim NN" basligini
   zaten tasidigi icin bilgi kaybi olmaz. */

@media (max-width: 920px), (prefers-reduced-motion: reduce) {
    .ss-track {
        height: auto;
    }

    .ss-pin {
        position: static;
        height: auto;
        display: block;
        padding: 0;
        overflow: visible;
    }

    .ss-pin-inner {
        display: block;
    }

    .ss-pin-head {
        margin-bottom: 20px;
    }

    .ss-hint {
        display: none;
    }

    .ss-body {
        display: block;
    }

    .ss-side {
        display: none;
    }

    .ss-viewport {
        height: auto;
        overflow: visible;
    }

    .ss-strip {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        width: 100%;
        height: auto;
        transform: none;
        will-change: auto;
    }

    .ss-frame {
        flex: none;
        height: auto;
        padding-right: 0;
        opacity: 1;
    }

    .ss-slide {
        height: auto;
    }

    .ss-stage {
        height: auto;
        min-height: 228px;
        transform: none;
        will-change: auto;
    }

    .ss-stage--phone {
        min-height: 356px;
    }

    .ss-phone {
        height: 336px;
    }

    .ss-chart {
        --ss-grow: 1;
    }
}

/* ---------- 920px: dikey listede tek sutun kart ---------- */

@media (max-width: 920px) {
    .ss-slide {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 22px;
    }
}

/* ---------- 640px: mobil ---------- */

@media (max-width: 640px) {
    .ss-scene .section-head {
        margin-bottom: 26px;
    }

    .ss-pin-badge {
        font-size: 11.5px;
        padding: 6px 13px;
    }

    .ss-slide {
        padding: 18px;
        gap: 18px;
        border-radius: var(--radius-md);
    }

    .ss-copy h3 {
        font-size: 21px;
    }

    .ss-tags li {
        font-size: 11.5px;
        padding: 6px 11px;
    }

    .ss-stage {
        min-height: 200px;
    }

    .ss-stage--phone {
        min-height: 320px;
    }

    .ss-phone {
        height: 300px;
    }

    .ss-ticket,
    .ss-report {
        width: 100%;
    }
}

/* ---------- Hareket azaltma: donen/surekli efektler kapanir ---------- */

@media (prefers-reduced-motion: reduce) {
    .ss-hint svg {
        animation: none;
    }

    .ss-qr-box::after {
        animation: none;
        top: 47%;
    }

    .ss-label,
    .ss-frame {
        opacity: 1;
    }

    .ss-strip,
    .ss-stage {
        transform: none;
    }
}

/* =====================================================
   ANA SAYFA — KULLANIM SENARYOLARI
   ===================================================== */
/* =====================================================
   KULLANIM SENARYOLARI (#senaryolar) — .tw- oneki
   Gercek musteri yorumu DEGIL; temsili isletme senaryolari.
   3 sutunlu esit yukseklikli izgara (multicol DEGIL: 01-06
   numaralari ve data-stagger sirasi soldan saga dogru aksin).
   Hover'da kenar parlamasi + imlec takipli radial isik.
   ===================================================== */

/* Bolum ortasinda cok hafif marka parlamasi.
   [data-fx-progress] bolume konuldugu icin --fx-p kalitilir;
   bu dekoratif katman data-scrub="rise" ile yumusakca suzulur. */
.tw-glow {
    position: absolute;
    left: 0;
    right: 0;
    top: 7%;
    z-index: 0;
    width: min(760px, 92vw);
    height: 440px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 45%,
        rgba(20, 184, 166, 0.15) 0%,
        rgba(20, 184, 166, 0.05) 42%,
        transparent 68%);
}

.tw-sec > .container {
    position: relative;
    z-index: 1;
}

/* ---------- Izgara ---------- */

.tw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* NOT: Kart .reveal sinifini da tasiyor. landing.css'teki `.reveal`
   opacity + transform + filter(blur) gecisini --reveal-delay ile
   birlikte tanimliyor; buradaki `transition` kisayolu onu ezecegi icin
   UC ozelligin de gecikmesi listeye TEK TEK yazilir. `filter` listeden
   dusurulurse blur 4px→0 ziplayarak gecer, stagger de kaybolur. */
.tw-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 62%
    );
    transition: opacity 0.9s var(--ease-out) var(--reveal-delay, 0s),
                transform 0.9s var(--ease-out) var(--reveal-delay, 0s),
                filter 0.9s var(--ease-out) var(--reveal-delay, 0s),
                box-shadow 0.45s var(--ease-out),
                border-color 0.45s var(--ease-out);
}

/* Kenar parlamasi: 1px degrade halka (mask-composite ile ic kisim oyulur) */
.tw-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        var(--primary-500) 0%,
        rgba(20, 184, 166, 0) 44%,
        rgba(245, 158, 11, 0.55) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
    pointer-events: none;
}

.tw-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg), 0 0 0 5px rgba(20, 184, 166, 0.07);
}

.tw-card:hover::before {
    opacity: 1;
}

/* ---------- Kart ust bolumu ---------- */

.tw-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--fg-soft);
}

.tw-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    padding-right: 36px;
}

.tw-ico {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    transition: transform 0.45s var(--ease-out);
}

.tw-ico svg {
    width: 21px;
    height: 21px;
}

.tw-card:hover .tw-ico {
    transform: scale(1.06) rotate(-4deg);
}

.tw-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
}

.tw-type {
    font-size: 16.5px;
    line-height: 1.2;
}

/* Kisi adi/fotografi yerine calisma bicimi rozeti — uydurma
   sehir/kapasite rakami YOK, temsili senaryoyu tarif eder. */
.tw-scale {
    align-self: flex-start;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
}

/* ---------- Kart govdesi ---------- */

.tw-text {
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--fg-soft);
}

.tw-win {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 15px;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-700);
}

.tw-win svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* margin-top:auto → esit yukseklikli kartlarda etiketler alta hizalanir */
.tw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--line-strong);
}

.tw-win + .tw-tags {
    margin-top: 16px;
}

.tw-tag {
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-700);
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid var(--line);
    transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.tw-card:hover .tw-tag {
    background: var(--content-1);
    border-color: var(--line-strong);
}

/* ---------- Alt not + CTA ---------- */

.tw-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

/* Feragatname bolumun en onemli cumlesi: okunur kontrastta olmali. */
.tw-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 660px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    background: var(--content-1);
    border: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.55;
    color: var(--primary-700);
}

.tw-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* ---------- Duyarli ---------- */

@media (max-width: 1080px) {
    .tw-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .tw-card {
        padding: 24px 21px 20px;
    }
}

@media (max-width: 920px) {
    .tw-glow {
        display: none;
        will-change: auto;
    }
}

@media (max-width: 640px) {
    .tw-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tw-card {
        padding: 22px 19px 19px;
    }

    .tw-num {
        top: 15px;
        right: 16px;
    }

    .tw-head {
        padding-right: 30px;
    }

    .tw-text {
        font-size: 14px;
    }

    .tw-foot {
        margin-top: 24px;
    }

    .tw-note {
        font-size: 12.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tw-card,
    .tw-card::before,
    .tw-ico,
    .tw-tag {
        transition: none !important;
    }

    .tw-card:hover .tw-ico {
        transform: none;
    }

    .tw-glow {
        will-change: auto;
    }
}

/* =====================================================
   ANA SAYFA — CILA KATMANI
   ===================================================== */
/* =====================================================
   POLISH — sayfa geneli cila katmani   (.pl-)
   Yeni bolum degil; mevcut bolumlerin uzerine binen ince
   iyilestirmeler. Motor dosyalarina DOKUNULMAZ.

   (a) Scroll ilerleme cubugu       .pl-progress
   (b) Bolum ayiricilar             .pl-div
   (c) .btn mikro-etkilesimleri     (mevcut .btn kurallarina ek)
   (d) .section-head sirali girisi  .pl-head
   (e) Isik kuresi arka plan dokusu .pl-orbs
   (f) Ortak kart spotlight'i       .pl-spot[data-spotlight]
   ===================================================== */


/* ---------- (a) Scroll ilerleme cubugu ---------- */
/* JS sadece 0..1 arasi --pl-sp yazar; boyama tamamen burada.
   Genislik icin width degil transform:scaleX kullaniliyor —
   her karede layout tetiklenmesin diye. */

.pl-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 120;                 /* .site-nav (100) ustunde, .acc-lb (9900) altinda */
    pointer-events: none;
    background: rgba(13, 148, 136, 0.07);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

/* Sayfa tepesindeyken cubuk gizli; ilk kaydirmada belirir */
.pl-progress.is-active {
    opacity: 1;
}

.pl-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--pl-sp, 0));
    transform-origin: 0 50%;
    background: linear-gradient(
        90deg,
        var(--primary-700),
        var(--primary-500) 55%,
        var(--warning)
    );
    box-shadow: 0 0 14px -2px rgba(13, 148, 136, 0.55);
    will-change: transform;
}


/* ---------- (b) Bolum ayiricilar ---------- */
/* Tamamen dekoratif, CSS-only. ::before nokta izgarasi,
   ::after ortadan sonen sac teli cizgi. Ikisi de mask ile
   kenarlara dogru erir — sert kesim yok.
   Yukseklikler dusuk tutuldu: dort ekleme noktasinin tamami
   zaten --section-pad clamp(72px,9vw,130px) tasiyan bolumler
   arasinda; fazlasi sayfayi seyreltiyor. */

.pl-div {
    position: relative;
    height: clamp(48px, 5.5vw, 76px);
    pointer-events: none;
    overflow: hidden;
}

.pl-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13, 148, 136, 0.20) 1px, transparent 1.6px);
    background-size: 22px 22px;
    background-position: center;
    -webkit-mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000 0%, transparent 78%);
    mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000 0%, transparent 78%);
    opacity: 0.68;
}

.pl-div::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(560px, 64%);
    height: 1px;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--line-strong) 24%,
        var(--primary-500) 50%,
        var(--line-strong) 76%,
        transparent
    );
    opacity: 0.75;
}

/* Dar varyant — zaten genis padding'li iki bolum arasinda */
.pl-div-tight {
    height: clamp(30px, 3.6vw, 46px);
}

/* Dalgali varyant — nokta izgarasinin yerine SVG data-URI serit.
   Ekstra HTTP istegi yok, ekstra markup yok.
   Serit 40px yuksekliginde oldugu icin bilincli olarak varsayilan
   (dar olmayan) yukseklikte birakildi — aksi halde kirpilir. */
.pl-div-wave::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 C 32 4 98 4 130 20 S 228 36 260 20' fill='none' stroke='%230D9488' stroke-opacity='0.32' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 260px 40px;
    background-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.85;
}

.pl-div-wave::after {
    display: none;
}


/* ---------- (c) .btn mikro-etkilesimleri ---------- */
/* Mevcut .btn / .btn-primary / .btn-ghost kurallari korunur,
   uzerine eklenir. */

/* Ikon kaymasi — lucide <i data-lucide> render sonrasi <svg> olur.
   Ikon bastaysa hafif buyuyup sola, sondaysa saga kayar.
   :not(:first-child) sart: tek ikonlu butonda svg hem :first-child
   hem :last-child olur (metin dugumu element sayilmaz). */
.btn > svg {
    flex: none;
    transition: transform 0.4s var(--ease-out);
}

.btn:hover > svg:first-child {
    transform: translateX(-2px) scale(1.08);
}

.btn:hover > svg:last-child:not(:first-child) {
    transform: translateX(4px);
}

/* Basma hissi — hover'daki -3px'ten hizlica geri gel */
.btn:active {
    transform: translateY(-1px) scale(0.978);
    transition-duration: 0.09s;
}

/* Klavye erisilebilirligi — fare tiklamasinda halka cikmaz */
.btn:focus-visible {
    outline: 2px solid var(--primary-700);
    outline-offset: 3px;
}

/* .btn-primary'deki overflow:hidden (landing.css:3808), ::after
   halesini (inset:-3px + blur 14px, z-index:-1) kirpiyor — hale su
   an gorunmuyor. Mevcut kurali silmeden haleyi box-shadow'a
   tasiyoruz; box-shadow kirpilmaz. */
.btn-primary:hover {
    box-shadow:
        0 18px 40px -12px rgba(13, 148, 136, 0.62),
        0 0 26px -6px rgba(245, 158, 11, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

/* ISTISNA — .cta-final icindeki .btn-primary BEYAZ bir hap ve zemin
   koyu teal (landing.css:3202). Yukaridaki teal+amber hale orada
   hem gorunmez hem yersiz durur, ustelik butonun asil koyu golgesini
   ezer. 0,3,0 ozgullukle geri aliniyor — sira bagimsiz kazanir. */
.cta-final .btn-primary:hover {
    box-shadow: 0 20px 44px -14px rgba(0, 0, 0, 0.42);
}

/* Isik parlamasi — .btn-primary'de zaten vardi, ayni desenle
   ghost butonlara da teal tonuyla tasindi. */
.btn-ghost {
    overflow: hidden;
}

.btn-ghost::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(13, 148, 136, 0.16),
        transparent
    );
    transform: skewX(-18deg);
    transition: left 0.7s var(--ease-out);
    pointer-events: none;
}

.btn-ghost:hover::before {
    left: 140%;
}

.btn-ghost:hover {
    border-color: var(--primary-500);
}

/* ISTISNA — .cta-final icindeki ghost buton koyu zeminde beyaz
   (landing.css:3208: bg rgba(255,255,255,0.12), border
   rgba(255,255,255,0.35)). Teal kenarlik orada koyu teal zemine
   karisip KAYBOLUR, teal sweep de gorunmez. Beyaz tonuna cevriliyor. */
.cta-final .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
}

.cta-final .btn-ghost::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.26),
        transparent
    );
}


/* ---------- (d) .section-head sirali girisi ---------- */
/* Rozet -> baslik -> aciklama sirasi motorun data-stagger'indan
   gelir (yeni JS yok). .pl-head bunun UZERINE, baslik altina
   in-view'da 0 -> 68px akan vurgu cizgisi ekler.
   Kullanim: <div class="section-head pl-head" data-stagger="0.09">
   (kapsayicidaki "reveal" sinifi KALDIRILMALI — bkz. markup notu) */

.pl-head .section-title {
    position: relative;
    padding-bottom: 18px;
}

.pl-head .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
    transition: width 0.85s var(--ease-out) 0.30s;
}

/* Iki tetikleyici: mFxStagger .in-view'i yalnizca evlat edindigi
   COCUKLARA verir, kapsayiciya vermez. Ikinci secici bu senaryo
   icin; birincisi .pl-head'in kendisi .reveal olarak kullanilirsa. */
.pl-head.in-view .section-title::after,
.pl-head .section-title.in-view::after {
    width: 68px;
}

/* Rozet — girise ince bir derinlik */
.pl-head .section-badge {
    background-image: linear-gradient(180deg, var(--white), var(--content-1));
}


/* ---------- (e) Isik kuresi arka plan dokusu ---------- */
/* Layout'taki .bg-blobs'a DOKUNULMAZ. Bu ayri katman daha genis
   blur, daha dusuk opaklik ve cok daha yavas periyotla derinlik
   ekler; periyotlar mevcut blobFloat (22s) ile ayni faza dusup
   "nabiz" hissi vermesin diye bilerek farkli secildi.

   PERF NOTU: sayfada zaten 5 surekli animasyonlu genis blur var
   (3 x .blob + .cta-final::before/::after). Bu yuzden burada
   yalnizca 2 kure var, blur 100px'e cekildi ve mevcut .blob
   deseniyle tutarli sekilde will-change KULLANILMIYOR.
   920px altinda katmanin tamami kapatilir. */

.pl-orbs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.pl-orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.42;
}

.pl-orb-1 {
    width: 440px;
    height: 440px;
    top: 14%;
    left: 6%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 68%);
    animation: plOrbDrift 34s ease-in-out infinite alternate;
}

.pl-orb-2 {
    width: 380px;
    height: 380px;
    top: 58%;
    right: 4%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.18), transparent 70%);
    animation: plOrbDrift 41s ease-in-out -13s infinite alternate-reverse;
}

@keyframes plOrbDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(34px, -28px, 0) scale(1.06); }
    100% { transform: translate3d(-26px, 22px, 0) scale(0.95); }
}

/* Cok soluk nokta izgarasi — derinlik hissi, okunabilirlige sifir etki */
.pl-orbs::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13, 148, 136, 0.10) 1px, transparent 1.5px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse 92% 62% at 50% 26%, #000, transparent 76%);
    mask-image: radial-gradient(ellipse 92% 62% at 50% 26%, #000, transparent 76%);
    opacity: 0.45;
}

/* Ince grain — duz zeminin "plastik" gorunmesini engeller.
   %4 opaklik; statik (animasyonsuz), bir kez rasterize edilir. */
.pl-orbs::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='plNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23plNoise)'/%3E%3C/svg%3E");
    opacity: 0.04;
}


/* ---------- (f) Ortak kart spotlight'i ---------- */
/* MOTOR DOSYASINA DOKUNULMAZ: landing.js mInitSpotlight() zaten
   [data-spotlight] kancasini tasiyor (landing.js:721).

   Tum kurallar bilincli olarak ATTRIBUTE'a bagli. Boylece CSS ile
   JS birbirinden ayrisamaz: attribute yoksa gradyan hic basilmaz.
   Aksi halde --mouse-x/--mouse-y hicbir zaman yazilmayacagi icin
   fallback %50/%50'de takili, fareyi takip etmeyen kalici bir
   merkez lekesi olusurdu. */

.pl-spot[data-spotlight] {
    position: relative;
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.08) 0%,
        transparent 62%
    );
    transition: box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

/* Kehribar varyant — AI / kampanya gibi vurgulu kartlar icin */
.pl-spot-warm[data-spotlight] {
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(245, 158, 11, 0.08) 0%,
        transparent 62%
    );
}

/* Mevcut kartlar — markup'a data-spotlight eklendigi anda devreye
   girer, oncesinde tamamen olu (istenen davranis).
   .module-card'daki `background: var(--white)` kisayolunu ezmeden,
   longhand olarak ve daha sonra geldigi icin dogal olarak yazar. */
.module-card[data-spotlight],
.gal-intro-card[data-spotlight] {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 64%
    );
}


/* ---------- Mobil ---------- */

@media (max-width: 1080px) {
    .pl-div {
        height: clamp(44px, 5vw, 62px);
    }

    .pl-div::after {
        width: min(420px, 72%);
    }
}

@media (max-width: 920px) {
    /* Katmanin TAMAMI kapaniyor: mobilde zaten 3 adet .blob
       calisiyor, uzerine 2 genis blur + nokta izgarasi + grain
       eklemenin gorsel kazanci maliyetini karsilamiyor. */
    .pl-orbs {
        display: none;
    }
}

@media (max-width: 640px) {
    .pl-progress {
        height: 2px;
    }

    .pl-div {
        height: 38px;
    }

    .pl-div-tight {
        height: 24px;
    }

    .pl-div::before {
        background-size: 18px 18px;
    }

    .pl-div-wave::before {
        background-size: 200px 30px;
    }

    .pl-head .section-title {
        padding-bottom: 14px;
    }
}


/* ---------- Hareket azaltma ---------- */
/* Not: dosyanin ustundeki genel blokta `* { transition-duration:
   0.01ms !important }` zaten var; burada sadece bu katmanin
   suslerini kapatiyoruz. */

@media (prefers-reduced-motion: reduce) {
    .pl-orb {
        animation: none !important;
    }

    .pl-progress {
        transition: none;
    }

    /* Isik supurmeleri tamamen kalksin */
    .btn-ghost::before,
    .btn-primary::before {
        display: none;
    }

    .btn > svg {
        transition: none;
    }

    .btn:hover > svg:first-child,
    .btn:hover > svg:last-child:not(:first-child) {
        transform: none;
    }

    .btn:active {
        transform: none;
    }

    /* Vurgu cizgisi animasyonsuz, dogrudan son halinde */
    .pl-head .section-title::after {
        width: 68px;
        transition: none;
    }
}

