        /* ============================================================
           AsisTron — Ultra modern landing
           Vanilla CSS + JS, no framework dependency
           ============================================================ */
        :root {
            --bg:           #07080b;
            --bg-1:         #0a0c10;
            --bg-2:         #11141a;
            --surface:      #14181f;
            --surface-2:    #1a1f28;
            --border:       rgba(255,255,255,0.08);
            --border-2:     rgba(255,255,255,0.14);
            --text:         #f4f6fa;
            --muted:        #a8b0bf;
            --faded:        #6b7280;

            --orange:       #FB8500;
            --orange-2:     #ffae3c;
            --pink:         #C41379;
            --pink-2:       #ff58a8;
            --blue:         #4d7dff;
            --blue-2:       #6c8eff;
            --green:        #2fd47a;
            --purple:       #8b5cf6;
            --cyan:         #00d4ff;

            --grad-brand:   linear-gradient(135deg, #FB8500 0%, #ffae3c 100%);
            --grad-aurora:  radial-gradient(900px 500px at 20% 30%, rgba(251,133,0,0.25), transparent 60%),
                            radial-gradient(800px 600px at 80% 60%, rgba(196,19,121,0.20), transparent 60%),
                            radial-gradient(700px 500px at 50% 90%, rgba(77,125,255,0.18), transparent 60%);
            --grad-mix:     linear-gradient(125deg, #FB8500 0%, #C41379 50%, #4d7dff 100%);
            --shadow-lg:    0 30px 80px rgba(0,0,0,0.5);
            --shadow-md:    0 16px 40px rgba(0,0,0,0.35);
            --shadow-soft:  0 8px 30px rgba(0,0,0,0.18);
            --radius:       16px;
            --radius-lg:    22px;

            --container:    1240px;
        }

        /* ============================================================
           AÇIK TEMA — html[data-theme="light"] override (GOREV-1153 ek)
           Bu sayfa shell CSS yüklemez, kendi :root'u var. Açık tema
           FAZ 1/2 ile aynı palet. Koyu :root DEĞİŞMEZ (varsayılan).
           Marka renkleri (orange/pink/blue/green/purple/cyan) AYNEN.
           ============================================================ */
        html[data-theme="light"] {
            --bg:           #eef1f6;
            --bg-1:         #ffffff;
            --bg-2:         #e6eaf1;
            --surface:      #ffffff;
            --surface-2:    #f4f6fa;
            --border:       rgba(0,0,0,0.10);
            --border-2:     rgba(0,0,0,0.16);
            --text:         #14181f;
            --muted:        #5b6472;
            --faded:        #8b94a3;
            --grad-aurora:  radial-gradient(900px 500px at 20% 30%, rgba(251,133,0,0.10), transparent 60%),
                            radial-gradient(800px 600px at 80% 60%, rgba(196,19,121,0.08), transparent 60%),
                            radial-gradient(700px 500px at 50% 90%, rgba(77,125,255,0.08), transparent 60%);
            --shadow-lg:    0 30px 80px rgba(0,0,0,0.12);
            --shadow-md:    0 16px 40px rgba(0,0,0,0.10);
            --shadow-soft:  0 8px 30px rgba(0,0,0,0.08);
        }
        /* Değişken kullanmayan (hardcoded) kuralların açık tema varyantı —
           audit: nav/buton/eyebrow/mockup/marquee/footer yüzeyleri. */
        html[data-theme="light"] .nav.scrolled      { background: rgba(255,255,255,0.78); }
        html[data-theme="light"] .nav-menu          { background: rgba(255,255,255,0.82); }
        html[data-theme="light"] .nav-menu a:hover  { background: rgba(0,0,0,0.04); }
        html[data-theme="light"] .nav-mobile-toggle { background: rgba(0,0,0,0.04); }
        html[data-theme="light"] .btn-ghost         { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .btn-ghost:hover   { background: rgba(0,0,0,0.06); }
        html[data-theme="light"] .eyebrow           { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .mockup-head .url  { background: rgba(0,0,0,0.04); }
        html[data-theme="light"] .mockup-stat       { border-color: rgba(0,0,0,0.08); }
        html[data-theme="light"] .mockup-chart      { border-color: rgba(0,0,0,0.08); }
        html[data-theme="light"] .mockup-row        { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .marquee-section   { background: rgba(0,0,0,0.02); }
        html[data-theme="light"] .marquee-item      { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .price-list li     { border-bottom-color: rgba(0,0,0,0.08); }
        html[data-theme="light"] .footer-social a   { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .aurora::before {
            background:
                linear-gradient(transparent 95%, rgba(0,0,0,0.03) 95%) 0 0 / 100% 80px,
                linear-gradient(90deg, transparent 95%, rgba(0,0,0,0.03) 95%) 0 0 / 80px 100%;
        }

        /* Tema toggle butonu — asistron-shell.js enjekte eder
           (bu sayfa shell CSS yüklemediği için stil burada tanımlanır) */
        .theme-toggle {
            width: 40px; height: 40px;
            border-radius: 10px;
            display: inline-flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            color: var(--muted);
            font-size: 18px;
            transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
        }
        .theme-toggle:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--border-2);
            color: var(--text);
            transform: translateY(-2px);
        }
        html[data-theme="light"] .theme-toggle       { background: rgba(0,0,0,0.03); }
        html[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.06); }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--bg);
            color: var(--text);
            transition: background-color 0.2s ease, color 0.2s ease;   /* GOREV-1153 ek — yumuşak tema geçişi */
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            font-feature-settings: "ss01", "cv11";
        }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
        p { margin: 0; }
        img { max-width: 100%; display: block; }

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

        /* Aurora background */
        .aurora {
            position: fixed;
            inset: 0;
            background: var(--grad-aurora);
            opacity: 0.65;
            pointer-events: none;
            z-index: -1;
            filter: blur(20px);
        }
        .aurora::before {
            content: '';
            position: absolute;
            inset: -50px;
            background:
                linear-gradient(transparent 95%, rgba(255,255,255,0.02) 95%) 0 0 / 100% 80px,
                linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.02) 95%) 0 0 / 80px 100%;
            mask: radial-gradient(60% 50% at 50% 30%, #000, transparent 70%);
            -webkit-mask: radial-gradient(60% 50% at 50% 30%, #000, transparent 70%);
        }

        /* Cursor spotlight */
        .spotlight {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            background: radial-gradient(420px 420px at var(--mx, 50%) var(--my, 50%), rgba(251,133,0,0.06), transparent 70%);
            transition: background 0.1s linear;
        }

        /* ===== Top Nav ===== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 50;
            padding: 14px 0;
            transition: padding 0.3s, background 0.3s, backdrop-filter 0.3s;
        }
        .nav.scrolled {
            padding: 10px 0;
            background: rgba(7,8,11,0.65);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            display: flex; align-items: center; justify-content: space-between;
            gap: 20px;
        }
        .brand {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 35px; font-weight: 800; letter-spacing: -0.03em;
            white-space: nowrap;
        }
        .brand-mark {
            width: 30px; height: 30px;
            border-radius: 8px;
            background: var(--grad-brand);
            display: inline-flex; align-items: center; justify-content: center;
            color: #fff; font-size: 16px;
            box-shadow: 0 6px 18px rgba(251,133,0,0.4);
        }
        .brand-mark i { font-weight: 700; }
        .brand .t { color: var(--orange); }

        /* "i" harfinin noktası turuncu — noktasız ı + ::after ile turuncu daire */
        .brand .i-dot {
            position: relative;
            display: inline-block;
            line-height: 0.8;
        }
        .brand .i-dot::after {
            content: '';
            position: absolute;
            top: 0.02em;
            left: 50%;
            transform: translateX(-50%);
            width: 0.16em;
            height: 0.16em;
            background: var(--orange);
            border-radius: 50%;
        }

        .nav-menu {
            display: flex; align-items: center; gap: 4px;
            background: rgba(20,24,31,0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--muted);
            transition: color 0.2s, background 0.2s;
        }
        .nav-menu a:hover {
            color: var(--text);
            background: rgba(255,255,255,0.04);
        }

        .nav-cta { display: flex; gap: 8px; align-items: center; }

        /* Hamburger menü içi CTA bloğu — sadece mobilde görünür (alt media query) */
        .nav-menu-cta { display: none; }

        .nav-mobile-toggle {
            display: none;
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            font-size: 18px;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 18px;
            border-radius: 10px;
            font-weight: 600; font-size: 14px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s;
            position: relative;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--grad-brand);
            color: #fff;
            box-shadow: 0 8px 22px rgba(251,133,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%);
            opacity: 0;
            transition: opacity 0.25s;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(251,133,0,0.5); }
        .btn-primary:hover::after { opacity: 1; }
        .btn-ghost {
            background: rgba(255,255,255,0.04);
            color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--border-2); transform: translateY(-2px); }
        .btn-lg { padding: 14px 24px; font-size: 15px; }

        .btn-magnet { transition: transform 0.18s cubic-bezier(0.17, 0.67, 0.4, 1.4), box-shadow 0.2s, background 0.2s; }

        /* ===== Eyebrow / Tag ===== */
        .eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 14px 6px 8px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
        }
        .eyebrow .badge {
            background: var(--grad-brand);
            color: #fff;
            font-weight: 700;
            font-size: 10.5px;
            padding: 3px 8px;
            border-radius: 999px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .eyebrow .live-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 3px rgba(47,212,122,0.25);
            animation: pulse 2s infinite;
            margin-right: 2px;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 3px rgba(47,212,122,0.25); }
            50%      { box-shadow: 0 0 0 6px rgba(47,212,122,0.05); }
        }

        /* ===== Display headings ===== */
        .display {
            font-size: clamp(40px, 7vw, 84px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.045em;
            margin-bottom: 24px;
        }
        .display .grad {
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .display .grad-mix {
            background: var(--grad-mix);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .h2 {
            font-size: clamp(32px, 4.5vw, 54px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.035em;
        }
        .lead {
            font-size: clamp(16px, 1.6vw, 19px);
            color: var(--muted);
            line-height: 1.55;
            max-width: 640px;
        }
        .section-sub {
            color: var(--muted);
            font-size: 16px;
            max-width: 660px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== Section padding ===== */
        section { position: relative; padding: 110px 0; }
        .section-head { text-align: center; margin-bottom: 72px; }
        .section-head .eyebrow { margin-bottom: 18px; }
        .section-head h2 { margin-bottom: 14px; }

        /* ===== HERO ===== */
        .hero {
            padding: 130px 0 80px;
            position: relative;
        }
        .hero-bento {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-text { position: relative; z-index: 2; }
        /* Hero tagline — H1 altında güçlü vurgu */
        .hero-tagline {
            font-size: clamp(20px, 2.4vw, 30px);
            font-weight: 600;
            color: var(--text);
            margin: 18px 0 24px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        .hero-tagline .grad {
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }
        .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
        .hero-meta {
            display: flex; gap: 24px; flex-wrap: wrap;
            margin-top: 28px;
            color: var(--muted);
            font-size: 13px;
        }
        .hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
        .hero-meta-item i { color: var(--green); font-size: 16px; }

        /* ===== Hero Bento Mockup ===== */
        .hero-mockup {
            position: relative;
            transform: perspective(1600px) rotateY(-8deg) rotateX(4deg);
            transform-style: preserve-3d;
            transition: transform 0.4s ease;
        }
        .hero-mockup:hover { transform: perspective(1600px) rotateY(-4deg) rotateX(2deg); }

        .mockup {
            background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%);
            border: 1px solid var(--border-2);
            border-radius: var(--radius-lg);
            padding: 18px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .mockup::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: var(--radius-lg);
            background: var(--grad-mix);
            opacity: 0.18;
            z-index: -1;
            filter: blur(28px);
        }
        .mockup-head {
            display: flex; align-items: center; gap: 6px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 14px;
        }
        .mockup-head .dot { width: 9px; height: 9px; border-radius: 50%; }
        .dot-r { background: #ff5f57; }
        .dot-y { background: #febc2e; }
        .dot-g { background: #28c840; }
        .mockup-head .url {
            margin-left: auto;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--faded);
            background: rgba(255,255,255,0.03);
            padding: 4px 10px;
            border-radius: 6px;
        }
        .mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
        .mockup-stat {
            background: var(--surface-2);
            border-radius: 12px;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .mockup-stat-label { font-size: 10px; color: var(--faded); letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 6px; }
        .mockup-stat-val { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
        .mockup-stat-delta { font-size: 11px; margin-top: 4px; display: inline-flex; align-items: center; gap: 3px; color: var(--green); }

        .mockup-chart {
            height: 130px;
            background: var(--surface-2);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.04);
            padding: 12px;
            position: relative;
            overflow: hidden;
        }
        .mockup-chart svg { width: 100%; height: 100%; }

        .mockup-rows { margin-top: 10px; }
        .mockup-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 9px 12px;
            background: rgba(255,255,255,0.025);
            border-radius: 8px;
            margin-bottom: 5px;
            font-size: 12px;
        }
        .mockup-row .l { display: flex; align-items: center; gap: 10px; color: var(--muted); }
        .pz-mini {
            width: 22px; height: 22px;
            border-radius: 6px;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 10px; font-weight: 800; color: #fff;
        }
        .pz-ty { background: #F27A1A; }
        .pz-hb { background: #ff6000; }
        .pz-n  { background: #6f12af; }
        .price-up { color: var(--green); font-weight: 700; }

        /* Hero floating cards */
        .float-card {
            position: absolute;
            background: var(--surface);
            border: 1px solid var(--border-2);
            border-radius: 14px;
            padding: 12px 16px;
            box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 12px;
            font-size: 12px;
            color: var(--muted);
            backdrop-filter: blur(10px);
            animation: bob 5s ease-in-out infinite;
            z-index: 3;
        }
        .float-card strong { color: var(--text); display: block; font-size: 13px; margin-bottom: 2px; }
        .float-card small { color: var(--faded); font-size: 11px; }
        .float-card .ico {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .ico-grn { background: rgba(47,212,122,0.15); color: var(--green); }
        .ico-pnk { background: rgba(196,19,121,0.18); color: var(--pink-2); }
        .ico-blu { background: rgba(77,125,255,0.18); color: var(--blue); }

        .float-1 { top: -25px; left: -45px; animation-delay: 0s; }
        .float-2 { bottom: 30px; right: -55px; animation-delay: 1.8s; }
        .float-3 { top: 50%; left: -70px; animation-delay: 3.4s; }

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

        /* ===== Marquee Trustbar ===== */
        .marquee-section {
            padding: 60px 0 30px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: rgba(255,255,255,0.01);
        }
        .marquee-title {
            text-align: center;
            font-size: 12px;
            letter-spacing: 2.5px;
            color: var(--faded);
            text-transform: uppercase;
            margin-bottom: 28px;
        }
        .marquee {
            display: flex;
            overflow: hidden;
            mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
        }
        .marquee-track {
            display: flex;
            gap: 36px;
            animation: marquee 32s linear infinite;
            white-space: nowrap;
        }
        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        .marquee-item {
            display: inline-flex; align-items: center; gap: 12px;
            padding: 14px 22px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            flex-shrink: 0;
        }
        .marquee-item .pz-big {
            width: 32px; height: 32px;
            border-radius: 8px;
            display: inline-flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 13px;
        }

        /* ===== Bento Features Grid ===== */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: minmax(200px, auto);
            gap: 16px;
        }
        .bento {
            position: relative;
            background: linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(.2,.7,.3,1.2), border-color 0.3s, box-shadow 0.3s;
        }
        .bento::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(400px 300px at var(--mx, 50%) var(--my, 50%), rgba(251,133,0,0.08), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .bento:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-lg); }
        .bento:hover::before { opacity: 1; }

        .bento-tag {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }
        .bento h3 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .bento p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 18px;
        }
        .bento-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }
        .ico-orange { background: rgba(251,133,0,0.12); color: var(--orange); }
        .ico-pink   { background: rgba(196,19,121,0.14); color: var(--pink-2); }
        .ico-blue   { background: rgba(77,125,255,0.14); color: var(--blue-2); }
        .ico-green  { background: rgba(47,212,122,0.14); color: var(--green); }
        .ico-purple { background: rgba(139,92,246,0.14); color: var(--purple); }
        .ico-cyan   { background: rgba(0,212,255,0.14); color: var(--cyan); }
        .ico-amber  { background: rgba(245,158,11,0.14); color: #f59e0b; }
        .ico-red    { background: rgba(255,107,107,0.14); color: #ff6b6b; }

        /* Bento sizing */
        .bento-large    { grid-column: span 4; grid-row: span 2; }
        .bento-medium   { grid-column: span 3; grid-row: span 1; }
        .bento-small    { grid-column: span 2; grid-row: span 1; }
        .bento-tall     { grid-column: span 2; grid-row: span 2; }

        /* Bento "AI" hero card özel */
        .bento-ai {
            background:
                radial-gradient(600px 400px at 80% 20%, rgba(196,19,121,0.18), transparent 60%),
                radial-gradient(500px 400px at 20% 80%, rgba(139,92,246,0.15), transparent 60%),
                linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            grid-column: span 4;
            grid-row: span 2;
        }
        .bento-ai-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 20px;
        }
        .bento-ai-thumb {
            aspect-ratio: 1;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            color: rgba(255,255,255,0.85);
            position: relative;
            overflow: hidden;
        }
        .bai-1 { background: linear-gradient(135deg, #f27a1a, #ffaa3c); }
        .bai-2 { background: linear-gradient(135deg, #4d7dff, #6c8eff); }
        .bai-3 { background: linear-gradient(135deg, #C41379, #8b5cf6); }
        .bai-4 { background: linear-gradient(135deg, #2fd47a, #10b981); }

        /* Bento "BuyBox" özel — chart preview */
        .bento-buy {
            background:
                radial-gradient(500px 400px at 90% 50%, rgba(77,125,255,0.18), transparent 60%),
                linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            grid-column: span 2;
            grid-row: span 2;
        }
        .bento-buy-rate {
            font-size: 56px;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--blue), var(--blue-2));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.04em;
            margin-bottom: 8px;
        }
        .bento-buy-spark {
            margin-top: 18px;
            height: 56px;
        }
        .bento-buy-spark svg { width: 100%; height: 100%; }

        /* Bento "Karlılık" özel — bars */
        .bento-bars {
            display: flex; align-items: flex-end; gap: 6px;
            height: 70px;
            margin-top: 18px;
        }
        .bento-bar {
            flex: 1;
            background: var(--grad-brand);
            border-radius: 4px 4px 0 0;
            position: relative;
        }
        .bento-bar:nth-child(1) { height: 30%; opacity: 0.5; }
        .bento-bar:nth-child(2) { height: 45%; opacity: 0.65; }
        .bento-bar:nth-child(3) { height: 60%; opacity: 0.8; }
        .bento-bar:nth-child(4) { height: 80%; opacity: 0.92; }
        .bento-bar:nth-child(5) { height: 100%; }

        @media (max-width: 991px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
            .bento-large, .bento-medium, .bento-small, .bento-tall, .bento-ai, .bento-buy {
                grid-column: span 2; grid-row: auto;
            }
        }
        @media (max-width: 575px) {
            .bento-grid { grid-template-columns: 1fr; }
            .bento-large, .bento-medium, .bento-small, .bento-tall, .bento-ai, .bento-buy {
                grid-column: 1; grid-row: auto;
            }
        }

        /* ===== Sticky Scroll Showcase ===== */
        .showcase {
            background: linear-gradient(180deg, transparent 0%, var(--bg-1) 50%, transparent 100%);
        }
        .showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }
        .showcase-sticky {
            position: sticky;
            top: 110px;
        }
        .showcase-step {
            padding: 50px 0;
            opacity: 0.4;
            transform: translateY(30px);
            transition: opacity 0.5s, transform 0.5s;
        }
        .showcase-step.in-view { opacity: 1; transform: translateY(0); }
        .showcase-step + .showcase-step { border-top: 1px solid var(--border); }
        .showcase-step .num {
            display: inline-flex;
            width: 38px; height: 38px;
            border-radius: 10px;
            background: var(--grad-brand);
            color: #fff; font-weight: 800; font-size: 16px;
            align-items: center; justify-content: center;
            margin-bottom: 18px;
            box-shadow: 0 8px 20px rgba(251,133,0,0.4);
        }
        .showcase-step h3 { font-size: 28px; margin-bottom: 12px; letter-spacing: -0.03em; }
        .showcase-step p { color: var(--muted); font-size: 16px; line-height: 1.65; }

        .showcase-visual {
            background: var(--surface);
            border: 1px solid var(--border-2);
            border-radius: var(--radius-lg);
            padding: 30px;
            min-height: 480px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .showcase-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(500px 400px at 50% 30%, rgba(251,133,0,0.10), transparent 60%);
            pointer-events: none;
        }
        .visual-content {
            position: relative; z-index: 1;
            text-align: center;
            font-size: 100px;
            color: var(--orange);
            opacity: 0.85;
        }

        @media (max-width: 991px) {
            .showcase-grid { grid-template-columns: 1fr; }
            .showcase-sticky { position: static; }
            .showcase-visual { min-height: 280px; }
        }

        /* ===== Comparison ===== */
        .compare {
            background: linear-gradient(180deg, var(--bg-1) 0%, transparent 100%);
        }
        .compare-table-wrap {
            margin-top: 50px;
            border: 1px solid var(--border-2);
            border-radius: var(--radius-lg);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            background: var(--surface);
            box-shadow: var(--shadow-lg);
        }
        .compare-table {
            width: 100%;
            min-width: 560px;
            border-collapse: collapse;
        }
        .compare-table thead th {
            padding: 22px 22px;
            font-size: 13px;
            font-weight: 700;
            text-align: left;
            background: var(--bg-2);
            color: var(--muted);
            border-bottom: 1px solid var(--border);
        }
        .compare-table thead th.compare-h-asis {
            background: linear-gradient(135deg, var(--orange), var(--orange-2));
            color: #fff;
            text-align: center;
            font-weight: 800;
        }
        .compare-table thead th.compare-h-other {
            text-align: center;
        }
        .compare-table tbody td {
            padding: 18px 22px;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }
        .compare-table tbody tr:last-child td { border-bottom: 0; }
        .compare-table td.feat {
            font-weight: 600;
            color: var(--text);
            width: 40%;
        }
        .compare-table td.cell-asis,
        .compare-table td.cell-other {
            text-align: center;
            width: 30%;
            color: var(--muted);
        }
        .compare-table td.cell-asis i { color: var(--green); font-size: 22px; }
        .compare-table td.cell-other i { color: #ff6b6b; font-size: 22px; }
        .compare-table small { display: block; font-size: 11.5px; color: var(--faded); margin-top: 3px; font-weight: 500; }

        /* ===== Testimonials ===== */
        .tm-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .tm-card {
            background: linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            position: relative;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .tm-card:hover {
            transform: translateY(-6px);
            border-color: var(--orange);
            box-shadow: 0 30px 60px rgba(251,133,0,0.10);
        }
        .tm-stars {
            color: var(--orange);
            font-size: 14px;
            margin-bottom: 18px;
            letter-spacing: 2px;
        }
        .tm-quote {
            color: var(--text);
            font-size: 15.5px;
            line-height: 1.65;
            margin-bottom: 28px;
            min-height: 110px;
        }
        .tm-author {
            display: flex; align-items: center; gap: 12px;
            padding-top: 22px;
            border-top: 1px solid var(--border);
        }
        .tm-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: var(--grad-brand);
            display: inline-flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 16px;
        }
        .tm-name { font-weight: 700; font-size: 14px; }
        .tm-role { color: var(--faded); font-size: 12px; margin-top: 2px; }

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

        /* ===== Pricing ===== */
        .pricing-toggle-wrap {
            display: flex; justify-content: center;
            margin: 30px 0 50px;
        }
        .pricing-toggle {
            display: inline-flex;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            position: relative;
        }
        .pricing-toggle button {
            padding: 8px 22px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--muted);
            transition: color 0.25s;
            position: relative;
            z-index: 1;
        }
        .pricing-toggle button.active { color: #fff; }
        .pricing-toggle .toggle-pill {
            position: absolute;
            top: 4px; bottom: 4px;
            left: 0;
            width: 0;
            background: var(--grad-brand);
            border-radius: 999px;
            transition: transform 0.3s cubic-bezier(.2,.7,.3,1.2), width 0.3s cubic-bezier(.2,.7,.3,1.2);
        }
        .pricing-toggle .save {
            font-size: 10px;
            font-weight: 700;
            background: var(--green);
            color: #042b14;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 6px;
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .price-card {
            background: linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
            display: flex; flex-direction: column;
        }
        .price-card:hover { transform: translateY(-4px); }
        .price-card.featured {
            border-color: var(--orange);
            background:
                linear-gradient(155deg, rgba(251,133,0,0.06) 0%, var(--surface) 60%);
            box-shadow: 0 30px 60px rgba(251,133,0,0.15);
        }
        .price-badge {
            position: absolute; top: -12px; left: 50%;
            transform: translateX(-50%);
            background: var(--grad-brand);
            color: #fff;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 8px 20px rgba(251,133,0,0.4);
        }
        .price-name {
            font-size: 13px;
            color: var(--muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
        .price-amount .num {
            font-size: 48px; font-weight: 900;
            line-height: 1; letter-spacing: -0.04em;
            color: var(--text);
        }
        .price-amount .per { font-size: 13px; color: var(--faded); }
        .price-tag { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; min-height: 44px; }
        .price-list {
            margin-bottom: 28px;
            flex-grow: 1;
        }
        .price-list li {
            display: flex; gap: 10px; align-items: center;
            padding: 9px 0;
            font-size: 13.5px;
            color: var(--muted);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .price-list li:last-child { border-bottom: 0; }
        .price-list li i { color: var(--green); font-size: 17px; flex-shrink: 0; }
        .price-list li.off { color: var(--faded); opacity: 0.5; }
        .price-list li.off i { color: var(--faded); }

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

        /* ===== CTA ===== */
        .cta-wrap {
            margin: 60px 0;
            padding: 80px 40px;
            background:
                radial-gradient(700px 400px at 50% 50%, rgba(251,133,0,0.18), transparent 70%),
                linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
            border: 1px solid var(--border-2);
            border-radius: var(--radius-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-wrap::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 1200px; height: 1200px;
            background: conic-gradient(from 0deg, transparent, rgba(251,133,0,0.06), transparent 50%);
            transform: translate(-50%, -50%);
            animation: rot 22s linear infinite;
            pointer-events: none;
        }
        @keyframes rot {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        .cta-wrap > * { position: relative; z-index: 1; }
        .cta-wrap h2 { margin-bottom: 18px; }
        .cta-wrap p { color: var(--muted); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
        .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        /* ===== Footer ===== */
        footer {
            padding: 70px 0 30px;
            border-top: 1px solid var(--border);
            background: var(--bg);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-grid h6 {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 18px;
        }
        .footer-grid li { margin-bottom: 10px; }
        .footer-grid li a {
            color: var(--muted);
            font-size: 13.5px;
            transition: color 0.2s;
        }
        .footer-grid li a:hover { color: var(--orange); }
        .footer-grid p {
            color: var(--muted);
            font-size: 13.5px;
            max-width: 320px;
            line-height: 1.6;
            margin: 14px 0 0;
        }
        .footer-social {
            display: flex; gap: 8px;
            margin-top: 22px;
        }
        .footer-social a {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            display: inline-flex; align-items: center; justify-content: center;
            color: var(--muted);
            font-size: 16px;
            transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
        }
        .footer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); border-color: var(--orange); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            color: var(--faded);
            font-size: 13px;
        }
        .footer-bottom a { color: var(--muted); transition: color 0.2s; }
        .footer-bottom a:hover { color: var(--orange); }

        @media (max-width: 991px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 575px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
        }

        /* ===== Responsive nav/hero ===== */
        @media (max-width: 991px) {
            /* Mobile slide-down menu */
            .nav-menu {
                display: none;
                position: absolute;
                top: calc(100% + 6px);
                left: 12px;
                right: 12px;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                background: rgba(7,8,11,0.96);
                backdrop-filter: saturate(180%) blur(20px);
                -webkit-backdrop-filter: saturate(180%) blur(20px);
                border: 1px solid var(--border);
                border-radius: 14px;
                padding: 10px;
                box-shadow: var(--shadow-lg);
            }
            .nav-menu a {
                padding: 12px 16px;
                text-align: left;
                background: rgba(255,255,255,0.02);
                border-radius: 10px;
            }
            .nav.mobile-open .nav-menu { display: flex; }

            .nav-mobile-toggle {
                display: inline-flex; align-items: center; justify-content: center;
                transition: background 0.2s, color 0.2s;
            }
            .nav.mobile-open .nav-mobile-toggle {
                background: var(--grad-brand);
                color: #fff;
            }
            .nav.mobile-open .nav-mobile-toggle i {
                transform: rotate(90deg);
                transition: transform 0.25s;
            }

            /* CTA butonları üst bardan kaldırılır — taşmayı önler, hamburger +
               tema toggle görünür kalır. Butonlar slide-down menünün içine taşınır. */
            .nav-cta .btn { display: none; }

            .nav-menu-cta {
                display: flex;
                flex-direction: column;
                gap: 8px;
                margin-top: 6px;
                padding-top: 10px;
                border-top: 1px solid var(--border);
            }
            /* .nav-menu a (mobil) kuralını ez — butonlar .btn görünümünü korusun */
            .nav-menu .nav-menu-cta .btn {
                padding: 12px 16px;
                border-radius: 10px;
                font-size: 14px;
                font-weight: 600;
                justify-content: center;
                text-align: center;
            }
            .nav-menu .nav-menu-cta .btn-primary {
                background: var(--grad-brand);
                color: #fff;
            }
            .nav-menu .nav-menu-cta .btn-ghost {
                background: rgba(255,255,255,0.04);
                color: var(--text);
                border: 1px solid var(--border);
            }

            .hero-bento { grid-template-columns: 1fr; gap: 60px; }
            .hero-mockup { transform: none; }
            .hero-mockup:hover { transform: none; }
            .float-card { display: none; }
            section { padding: 80px 0; }
            .section-head { margin-bottom: 50px; }
        }

        /* Reveal-on-scroll utility */
        [data-reveal] {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        [data-reveal].revealed {
            opacity: 1;
            transform: translateY(0);
        }
        [data-reveal-delay="100"] { transition-delay: 100ms; }
        [data-reveal-delay="200"] { transition-delay: 200ms; }
        [data-reveal-delay="300"] { transition-delay: 300ms; }

        /* ============================================================
           GOREV-1409 / ONERI-0033 — 22 Modül Bento Yenileme
           Mockup: canlidev/mockup/anasayfa-21-ozellik-mockup.html (v8)
           ============================================================ */

        /* Rozetler */
        .bento-yeni, .bento-public {
            position: absolute; top: 14px; right: 14px;
            font-size: 10px; font-weight: 800; letter-spacing: 1px;
            padding: 4px 8px; border-radius: 6px; text-transform: uppercase;
            z-index: 3;
        }
        .bento-yeni { display: none; }
        .bento-public { background: rgba(47,212,122,0.18); color: var(--green); border: 1px solid rgba(47,212,122,0.3); }

        /* WIDE kart (4 col x 1 row, BuyBox yatay versiyonu) */
        .bento-wide {
            grid-column: span 4;
            grid-row: span 1;
            display: flex;
            gap: 24px;
            align-items: stretch;
        }
        .bento-wide .wide-left { flex: 1.05; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
        .bento-wide .wide-right { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: stretch; }
        .bento-wide .wide-right > * { width: 100%; }

        /* WIDE-FULL: tüm satırı kaplar (6 col), vurgu kart */
        .bento-wide-full {
            grid-column: span 6;
            grid-row: span 1;
            display: flex;
            gap: 32px;
            align-items: stretch;
        }
        .bento-wide-full .wide-left { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
        .bento-wide-full .wide-right { flex: 1; min-width: 0; display: flex; align-items: center; }
        .bento-wide-full .wide-right > * { width: 100%; }

        /* Stat (solid color) */
        .big-stat {
            font-size: 44px; font-weight: 900;
            line-height: 1; letter-spacing: -0.04em;
            margin-top: 6px; margin-bottom: 6px;
        }
        .big-stat.s56 { font-size: 56px; }
        .big-stat.s44 { font-size: 44px; }
        .big-stat.s36 { font-size: 32px; }
        .stat-orange { color: #ffae3c; }
        .stat-blue   { color: #6c8eff; }
        .stat-green  { color: #2fd47a; }
        .stat-purple { color: #a78bfa; }
        .stat-pink   { color: #ff58a8; }
        .stat-cyan   { color: #00d4ff; }
        .stat-amber  { color: #fbbf24; }
        .stat-red    { color: #ff8787; }
        .stat-label { font-size: 12px; color: var(--faded); margin-bottom: 14px; }

        /* SVG area chart */
        .chart-area { width: 100%; height: 100%; min-height: 90px; }
        .chart-area svg { width: 100%; height: 100%; display: block; }
        .chart-small { min-height: 60px; }

        /* Pazaryeri 3'lü mini chart */
        .triple-chart { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%; }
        .triple-chart .tc {
            padding: 10px 8px; border-radius: 10px;
            display: flex; flex-direction: column; align-items: center;
            position: relative; overflow: hidden;
        }
        .triple-chart .tc .pct { font-size: 24px; font-weight: 900; }
        .triple-chart .tc .nm { font-size: 10px; font-weight: 700; opacity: 0.85; letter-spacing: 1px; margin-top: 2px; }
        .triple-chart .tc .mini-svg { width: 100%; height: 34px; margin-top: 6px; }
        .triple-chart .tc.ty { background: linear-gradient(180deg, rgba(242,122,26,0.18), rgba(242,122,26,0.05)); border: 1px solid rgba(242,122,26,0.3); color: #ff9540; }
        .triple-chart .tc.hb { background: linear-gradient(180deg, rgba(255,96,0,0.18), rgba(255,96,0,0.05)); border: 1px solid rgba(255,96,0,0.3); color: #ff8030; }
        .triple-chart .tc.n11 {
            background: linear-gradient(180deg, rgba(139,92,246,0.25), rgba(139,92,246,0.08));
            border: 1px solid rgba(139,92,246,0.5); color: #b794f6;
            box-shadow: 0 0 20px rgba(139,92,246,0.3);
        }
        .triple-chart .star { position: absolute; top: 6px; right: 8px; font-size: 11px; color: #fbbf24; }

        /* AI Chat */
        .ai-chat-big { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
        .ai-chat-big .bubble {
            padding: 9px 13px; border-radius: 14px; font-size: 12px;
            max-width: 85%; line-height: 1.4;
        }
        .ai-chat-big .b-user {
            background: linear-gradient(135deg, rgba(77,125,255,0.18), rgba(77,125,255,0.06));
            color: var(--blue); align-self: flex-start; border-bottom-left-radius: 4px;
            border: 1px solid rgba(77,125,255,0.2);
        }
        .ai-chat-big .b-ai {
            background: linear-gradient(135deg, rgba(47,212,122,0.22), rgba(16,185,129,0.08));
            color: var(--green); align-self: flex-end; border-bottom-right-radius: 4px;
            display: flex; gap: 7px; align-items: flex-start;
            border: 1px solid rgba(47,212,122,0.3);
            box-shadow: 0 0 16px rgba(47,212,122,0.15);
        }
        .ai-chat-big .b-ai i { font-size: 14px; margin-top: 1px; }

        /* Multi mağaza zinciri */
        .mp-chain-big {
            display: flex; align-items: center; justify-content: center; gap: 6px;
            margin-top: 14px; padding: 14px 10px;
            background: radial-gradient(ellipse at center, rgba(77,125,255,0.1), transparent 70%);
            border-radius: 12px;
        }
        .mp-chain-big .mp {
            width: 42px; height: 42px; border-radius: 10px; color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 800;
        }
        .mp-chain-big .mp.ty { background: linear-gradient(135deg, #F27A1A, #ff9540); box-shadow: 0 0 16px rgba(242,122,26,0.4); }
        .mp-chain-big .mp.hb { background: linear-gradient(135deg, #ff6000, #ff8030); box-shadow: 0 0 16px rgba(255,96,0,0.4); }
        .mp-chain-big .mp.n11 { background: linear-gradient(135deg, #6f12af, #9020d0); box-shadow: 0 0 16px rgba(111,18,175,0.4); }
        .mp-chain-big i { color: var(--blue); font-size: 16px; }
        .mp-chain-big .plus {
            width: 42px; height: 42px; border-radius: 10px;
            background: rgba(77,125,255,0.15); border: 1px dashed rgba(77,125,255,0.3);
            color: var(--blue); display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 900;
        }

        /* Rakip Fiyat 3 sütun bar */
        .price-bars-big { display: flex; align-items: flex-end; gap: 12px; height: 80px; margin-top: 14px; padding: 8px 4px; }
        .price-bars-big .pb-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .price-bars-big .pb-bar { width: 100%; border-radius: 6px 6px 0 0; position: relative; min-height: 20px; }
        .price-bars-big .pb-bar.you { background: linear-gradient(180deg, #FB8500, #ffae3c); height: 75%; box-shadow: 0 0 20px rgba(251,133,0,0.5); }
        .price-bars-big .pb-bar.you::after { content: 'SİZ'; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 900; color: var(--orange); letter-spacing: 1px; }
        .price-bars-big .pb-bar.r1 { background: linear-gradient(180deg, rgba(107,114,128,0.5), rgba(107,114,128,0.25)); height: 92%; }
        .price-bars-big .pb-bar.r2 { background: linear-gradient(180deg, rgba(107,114,128,0.5), rgba(107,114,128,0.25)); height: 65%; }
        .price-bars-big .pb-label { font-size: 10px; color: var(--faded); font-weight: 700; letter-spacing: 0.5px; }

        /* Hızlı hesap mini tablo */
        .calc-mini { background: rgba(0,0,0,0.25); padding: 10px 12px; border-radius: 8px; margin-top: 6px; border: 1px solid rgba(255,255,255,0.05); }
        .calc-mini .row { display: flex; justify-content: space-between; font-size: 11px; color: var(--faded); margin-bottom: 3px; font-family: 'JetBrains Mono', 'Courier New', monospace; }
        .calc-mini .row .v { color: var(--text); }
        .calc-mini .divider { border-top: 1px dashed rgba(255,255,255,0.15); margin: 6px 0; }
        .calc-mini .total { color: var(--green); font-weight: 800; }

        /* Sync */
        .sync-big {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-top: 14px; padding: 14px;
            background: radial-gradient(ellipse at center, rgba(139,92,246,0.12), transparent 70%);
            border-radius: 12px;
        }
        .sync-big .mp { width: 42px; height: 42px; border-radius: 10px; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
        .sync-big .mp.ty { background: linear-gradient(135deg, #F27A1A, #ff9540); box-shadow: 0 0 16px rgba(242,122,26,0.5); }
        .sync-big .mp.hb { background: linear-gradient(135deg, #ff6000, #ff8030); box-shadow: 0 0 16px rgba(255,96,0,0.5); }
        .sync-big .mp.n11 { background: linear-gradient(135deg, #6f12af, #9020d0); box-shadow: 0 0 16px rgba(111,18,175,0.5); }
        .sync-big .arrow { color: var(--purple); font-size: 20px; animation: pulseArrow 1.8s ease-in-out infinite; }
        .sync-big .arrow:nth-child(4) { animation-delay: -0.9s; }
        @keyframes pulseArrow { 0%, 100% { transform: scale(0.85); opacity: 0.5; } 50% { transform: scale(1.15); opacity: 1; } }

        /* 6 Kanal grid */
        .channel-big { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-top: 14px; padding: 8px; background: rgba(255,255,255,0.02); border-radius: 10px; }
        .channel-big .ch { aspect-ratio: 1; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; position: relative; overflow: hidden; }
        .channel-big .ch::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, currentColor, transparent 70%); opacity: 0; animation: chPulse 6s ease-in-out infinite; }
        .channel-big .ch:nth-child(1)::before { animation-delay: 0s; }
        .channel-big .ch:nth-child(2)::before { animation-delay: 1s; }
        .channel-big .ch:nth-child(3)::before { animation-delay: 2s; }
        .channel-big .ch:nth-child(4)::before { animation-delay: 3s; }
        .channel-big .ch:nth-child(5)::before { animation-delay: 4s; }
        .channel-big .ch:nth-child(6)::before { animation-delay: 5s; }
        @keyframes chPulse { 0%, 90%, 100% { opacity: 0; } 5%, 15% { opacity: 0.4; } }
        .channel-big .ch i { position: relative; z-index: 1; }
        .channel-big .ch.wa  { color: #25D366; background: rgba(37,211,102,0.14); }
        .channel-big .ch.em  { color: #4d7dff; background: rgba(77,125,255,0.14); }
        .channel-big .ch.tg  { color: #0088cc; background: rgba(0,136,204,0.14); }
        .channel-big .ch.sms { color: #ffae3c; background: rgba(255,174,60,0.14); }
        .channel-big .ch.psh { color: #8b5cf6; background: rgba(139,92,246,0.14); }
        .channel-big .ch.brw { color: #2fd47a; background: rgba(47,212,122,0.14); }

        /* 5 Kargo chip */
        .cargo-big { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
        .cargo-big .c { font-size: 10.5px; font-weight: 800; padding: 8px 10px; border-radius: 7px; color: #fff; text-align: center; flex: 1; min-width: 0; }
        .cargo-big .c-surat { background: linear-gradient(135deg, #e63946, #ff5050); box-shadow: 0 0 10px rgba(230,57,70,0.4); }
        .cargo-big .c-mng { background: linear-gradient(135deg, #003a70, #0055a0); }
        .cargo-big .c-yk { background: linear-gradient(135deg, #ff6b00, #ff8800); }
        .cargo-big .c-aras { background: linear-gradient(135deg, #0066cc, #0088ee); }
        .cargo-big .c-ptt { background: linear-gradient(135deg, #ffcc00, #ffd700); color: #000; }

        /* Kampanya badge */
        .campaign-big { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
        .campaign-big .bc { font-size: 10.5px; font-weight: 800; padding: 7px 10px; border-radius: 7px; display: flex; align-items: center; gap: 5px; }
        .campaign-big .plus { background: linear-gradient(135deg, #FB8500, #ffae3c); color: #000; box-shadow: 0 0 14px rgba(251,133,0,0.5); }
        .campaign-big .adv { background: rgba(139,92,246,0.2); color: var(--purple); border: 1px solid rgba(139,92,246,0.5); }
        .campaign-big .flash { background: rgba(255,107,107,0.2); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.5); animation: bentoPulse 1.4s infinite; }
        @keyframes bentoPulse { 50% { opacity: 0.5; transform: scale(0.95); } }

        /* İnfografik polaroid */
        .infografik-big { display: flex; gap: 6px; margin-top: 14px; perspective: 600px; padding: 8px 4px; }
        .infografik-big .pol { flex: 1; aspect-ratio: 0.78; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; transform: rotate(-3deg); box-shadow: 0 6px 14px rgba(0,0,0,0.4); }
        .infografik-big .pol:nth-child(2n) { transform: rotate(3deg) translateY(-3px); }
        .infografik-big .pol:nth-child(3n) { transform: rotate(-1deg); }
        .infografik-big .p-1 { background: linear-gradient(135deg, #FB8500, #ffae3c); }
        .infografik-big .p-2 { background: linear-gradient(135deg, #4d7dff, #6c8eff); }
        .infografik-big .p-3 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
        .infografik-big .p-4 { background: linear-gradient(135deg, #2fd47a, #10b981); }
        .infografik-big .p-5 { background: linear-gradient(135deg, #00d4ff, #0ea5e9); }

        /* e-Fatura GİB stamp */
        .efatura-big { margin-top: 14px; padding: 14px; background: linear-gradient(135deg, rgba(47,212,122,0.14), rgba(16,185,129,0.04)); border-radius: 12px; border: 2px dashed rgba(47,212,122,0.5); display: flex; align-items: center; gap: 14px; position: relative; }
        .efatura-big .gib-seal { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #2fd47a, #10b981); color: #000; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; box-shadow: 0 0 24px rgba(47,212,122,0.6); transform: rotate(-12deg); border: 3px solid rgba(255,255,255,0.2); }
        .efatura-big .gib-text { font-size: 12px; color: var(--green); font-weight: 700; line-height: 1.4; }
        .efatura-big .gib-text small { color: var(--faded); font-weight: 500; display: block; font-size: 10.5px; margin-top: 2px; }

        /* Akıllı Paketleme - paket scan feed */
        .pkg-feed { display: flex; flex-direction: column; gap: 5px; margin-top: 14px; padding: 10px; background: linear-gradient(180deg, rgba(255,107,107,0.08), rgba(255,107,107,0.02)); border: 1px solid rgba(255,107,107,0.15); border-radius: 10px; }
        .pkg-feed .pkg-row { display: flex; align-items: center; gap: 8px; padding: 6px 9px; background: rgba(0,0,0,0.25); border-radius: 6px; font-size: 10.5px; font-family: 'JetBrains Mono', 'Courier New', monospace; border-left: 2px solid var(--green); }
        .pkg-feed .pkg-row.active { background: rgba(255,107,107,0.15); border-left-color: #ff6b6b; }
        .pkg-feed .pkg-row .pkg-icon { font-size: 15px; }
        .pkg-feed .pkg-row .pkg-no { color: var(--text); font-weight: 700; flex: 1; }
        .pkg-feed .pkg-row .pkg-w { color: var(--faded); font-size: 10px; }
        .pkg-feed .pkg-row .pkg-tick { color: var(--green); font-weight: 900; font-size: 13px; }
        .pkg-feed .pkg-row.active .pkg-tick { color: #ff6b6b; }
        .pkg-feed .pkg-row.active .pkg-tick i { animation: bentoSpin 1.2s linear infinite; }
        @keyframes bentoSpin { to { transform: rotate(360deg); } }

        /* Birleşik Kampanya - vertical broadcast list */
        .broadcast-list { margin-top: 14px; padding: 12px; background: linear-gradient(180deg, rgba(255,88,168,0.1), rgba(255,88,168,0.03)); border: 1px solid rgba(255,88,168,0.2); border-radius: 10px; }
        .broadcast-list .center-btn { background: linear-gradient(135deg, #FB8500, #ff58a8); color: #fff; padding: 6px 11px; border-radius: 7px; font-size: 10.5px; font-weight: 800; display: inline-flex; align-items: center; gap: 5px; box-shadow: 0 0 14px rgba(255,88,168,0.4); margin-bottom: 10px; }
        .broadcast-list .target-row { display: flex; align-items: center; gap: 6px; padding: 5px 0; font-size: 11px; }
        .broadcast-list .target-row .arrow { color: #ff58a8; font-size: 14px; }
        .broadcast-list .target-row .mp { width: 26px; height: 26px; border-radius: 6px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; }
        .broadcast-list .target-row .mp.ty { background: linear-gradient(135deg, #F27A1A, #ff9540); }
        .broadcast-list .target-row .mp.hb { background: linear-gradient(135deg, #ff6000, #ff8030); }
        .broadcast-list .target-row .mp.n11 { background: linear-gradient(135deg, #6f12af, #9020d0); }
        .broadcast-list .target-row .pz-name { font-size: 10.5px; color: var(--text); font-weight: 600; flex: 1; }
        .broadcast-list .target-row .status { color: var(--green); font-size: 9.5px; font-weight: 800; letter-spacing: 0.5px; }

        /* SEO AI - eski/yeni karşılaştırma */
        .seo-compare { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
        .seo-compare .seo-row { padding: 8px 11px; border-radius: 8px; font-size: 11px; font-family: 'JetBrains Mono', 'Courier New', monospace; position: relative; }
        .seo-compare .seo-row.old { background: rgba(107,114,128,0.08); color: var(--faded); border-left: 3px solid rgba(107,114,128,0.5); text-decoration: line-through; opacity: 0.7; }
        .seo-compare .seo-row.new { background: rgba(77,125,255,0.1); color: var(--text); border-left: 3px solid var(--blue); box-shadow: 0 0 12px rgba(77,125,255,0.15); }
        .seo-compare .seo-tag { font-size: 8.5px; font-weight: 800; letter-spacing: 1.5px; opacity: 0.65; margin-bottom: 3px; }
        .seo-compare .seo-row.new .seo-tag { color: var(--blue); opacity: 1; }
        .seo-compare .kw { background: rgba(77,125,255,0.28); color: var(--blue); padding: 1px 5px; border-radius: 3px; font-weight: 700; }

        /* Stok Alarmı - 3 kritik ürün listesi */
        .stok-alarm-list { margin-top: 14px; padding: 10px; background: radial-gradient(ellipse at top, rgba(255,107,107,0.14), transparent 70%); border-radius: 10px; border: 1px solid rgba(255,107,107,0.15); }
        .stok-alarm-list .stok-bell { display: flex; justify-content: center; margin-bottom: 10px; padding: 4px 0; position: relative; }
        .stok-alarm-list .bell-pulse { width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle, #ff6b6b, #ff5050); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; box-shadow: 0 0 18px rgba(255,107,107,0.6); animation: bellRing 1.5s ease-in-out infinite; position: relative; z-index: 2; }
        .stok-alarm-list .bell-pulse::after { content: ''; position: absolute; inset: 0; border: 2px solid #ff6b6b; border-radius: 50%; opacity: 0; animation: bellWave 1.5s ease-out infinite; }
        @keyframes bellRing { 0%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(-15deg); } 20%, 40% { transform: rotate(15deg); } }
        @keyframes bellWave { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
        .stok-alarm-list .alarm-row { display: flex; align-items: center; gap: 8px; padding: 5px 9px; background: rgba(255,107,107,0.08); border-radius: 6px; font-size: 10.5px; margin-bottom: 4px; border-left: 2px solid #ff6b6b; }
        .stok-alarm-list .alarm-row:last-child { margin-bottom: 0; }
        .stok-alarm-list .alarm-row .urun { color: var(--text); font-weight: 600; flex: 1; }
        .stok-alarm-list .alarm-row .qty { color: #ff6b6b; font-weight: 800; font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 11px; }

        /* Otomatik Veri Çekme - 3 transport satır */
        .veri-feed { margin-top: 14px; padding: 12px; background: linear-gradient(180deg, rgba(0,212,255,0.08), rgba(0,212,255,0.02)); border: 1px solid rgba(0,212,255,0.15); border-radius: 10px; }
        .veri-feed .veri-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 11px; border-bottom: 1px dashed rgba(0,212,255,0.1); }
        .veri-feed .veri-row:last-child { border-bottom: none; padding-bottom: 0; }
        .veri-feed .veri-row:first-child { padding-top: 0; }
        .veri-feed .veri-row .v-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,212,255,0.18); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 13px; }
        .veri-feed .veri-row .v-label { color: var(--text); font-weight: 600; flex: 1; font-size: 11px; }
        .veri-feed .veri-row .v-count { color: var(--cyan); font-weight: 800; font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 11px; }
        .veri-feed .veri-row .v-bar { width: 36px; height: 4px; background: rgba(0,212,255,0.12); border-radius: 2px; overflow: hidden; position: relative; }
        .veri-feed .veri-row .v-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: slideRight 1.8s ease-in-out infinite; }
        @keyframes slideRight { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
        .veri-feed .veri-row .v-tick { color: var(--green); font-size: 13px; font-weight: 900; }

        /* Responsive: wide cards stack on small screens */
        @media (max-width: 991px) {
            .bento-wide { flex-direction: column; grid-column: span 2; }
            .bento-wide-full { flex-direction: column; grid-column: span 2; }
        }
        @media (max-width: 575px) {
            .bento-wide, .bento-wide-full { grid-column: 1; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            .marquee-track { animation: none; }
        }


/* ===================================================================
   GOREV-1420: Yeni Sistem Özellikleri layout (sol sidenav + 23 kart)
   --ot-* homepage tema değişkenlerine bağlı → light/dark otomatik uyum
   =================================================================== */
        #yetenekler {
            --ot-card-bg:     var(--bg-2);
            --ot-card-bg-2:   var(--bg-1);
            --ot-fg:          var(--text);
            --ot-muted:       var(--faded);
            --ot-border:      var(--border);
            --ot-brand-orange: var(--orange);
            --ot-brand-teal:  #2dd4bf;
            --ot-orange-soft: rgba(251,133,0,0.13);
            --ot-teal-soft:   rgba(45,212,191,0.13);
            --ot-radius:      14px;
        }
        #yetenekler .ot-oz-layout { display:grid; grid-template-columns:268px 1fr; gap:34px; align-items:start; margin-top:36px; }
        #yetenekler .ot-sidenav { position:sticky; top:84px; max-height:calc(100vh - 104px); overflow-y:auto; display:flex; flex-direction:column; gap:3px; padding:10px; border:1px solid var(--ot-border); border-radius:var(--ot-radius); background:var(--ot-card-bg); scrollbar-width:thin; scrollbar-color:var(--ot-border) transparent; }
        #yetenekler .ot-sidenav::-webkit-scrollbar { width:10px; }
        #yetenekler .ot-sidenav::-webkit-scrollbar-track { background:transparent; margin:6px 0; }
        #yetenekler .ot-sidenav::-webkit-scrollbar-thumb { background:var(--ot-border); border-radius:999px; border:3px solid var(--ot-card-bg); background-clip:padding-box; }
        #yetenekler .ot-sidenav::-webkit-scrollbar-thumb:hover { background:var(--ot-brand-orange); background-clip:padding-box; }
        #yetenekler .ot-sidenav-title { font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--ot-muted); padding:6px 12px 8px; }
        #yetenekler .ot-anchor { display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:10px; font-size:13.5px; font-weight:600; color:var(--ot-muted); border-left:3px solid transparent; text-decoration:none; transition:background .16s,color .16s,border-color .16s; }
        #yetenekler .ot-anchor:hover { background:var(--ot-card-bg-2); color:var(--ot-fg); }
        #yetenekler .ot-anchor[aria-current="location"] { color:var(--ot-brand-orange); background:var(--ot-orange-soft); border-left-color:var(--ot-brand-orange); font-weight:800; }
        #yetenekler .ot-anchor .ot-emoji { font-size:16px; width:22px; text-align:center; flex:none; }
        #yetenekler .ot-features { display:flex; flex-direction:column; gap:26px; }
        #yetenekler .ot-feature { scroll-margin-top:90px; background:var(--ot-card-bg); border:1px solid var(--ot-border); border-radius:var(--ot-radius); padding:38px 36px; transition:transform .2s,border-color .2s; }
        #yetenekler .ot-feature:hover { transform:translateY(-3px); border-color:var(--ot-brand-teal); }
        #yetenekler .ot-feature.is-ai { border-color:rgba(251,133,0,0.40); }
        #yetenekler .ot-feature.is-ai:hover { border-color:var(--ot-brand-orange); }
        #yetenekler .ot-feature-head { display:flex; align-items:center; gap:18px; margin-bottom:10px; }
        #yetenekler .ot-feature-emoji { width:64px; height:64px; flex:none; border-radius:16px; display:grid; place-items:center; font-size:32px; background:var(--ot-card-bg-2); border:1px solid var(--ot-border); }
        #yetenekler .ot-feature.is-ai .ot-feature-emoji { background:var(--ot-orange-soft); border-color:rgba(251,133,0,0.35); }
        #yetenekler .ot-feature h3 { font-size:25px; font-weight:800; margin:0; color:var(--ot-fg); line-height:1.2; }
        #yetenekler .ot-tag { display:inline-block; margin-top:3px; font-size:11px; font-weight:800; letter-spacing:.8px; text-transform:uppercase; padding:2px 8px; border-radius:999px; background:var(--ot-teal-soft); color:var(--ot-brand-teal); border:1px solid rgba(45,212,191,0.32); }
        #yetenekler .ot-tag.is-ai { background:var(--ot-orange-soft); color:var(--ot-brand-orange); border-color:rgba(251,133,0,0.35); }
        #yetenekler .ot-feature-desc { color:var(--ot-muted); font-size:16px; margin:10px 0 20px; }
        #yetenekler .ot-feature ul { margin:0; padding:0; list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:13px 30px; }
        #yetenekler .ot-feature ul li { display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--ot-fg); }
        #yetenekler .ot-bullet-ico { flex:none; width:21px; height:21px; margin-top:2px; color:var(--ot-brand-orange); fill:currentColor; }
        @media (max-width:980px){
            #yetenekler .ot-oz-layout { grid-template-columns:1fr; gap:22px; }
            #yetenekler .ot-sidenav { position:sticky; top:70px; flex-direction:row; gap:6px; max-height:none; overflow-x:auto; overflow-y:hidden; z-index:30; }
            #yetenekler .ot-sidenav-title { display:none; }
            #yetenekler .ot-anchor { white-space:nowrap; flex:none; border-left:0; border-bottom:3px solid transparent; }
            #yetenekler .ot-anchor[aria-current="location"]{ border-left:0; border-bottom-color:var(--ot-brand-orange); }
        }
        @media (max-width:768px){
            #yetenekler .ot-feature { padding:26px 20px; }
            #yetenekler .ot-feature ul { grid-template-columns:1fr; }
            #yetenekler .ot-feature h3 { font-size:21px; }
        }
        @media (prefers-reduced-motion: reduce){
            #yetenekler .ot-feature, #yetenekler .ot-anchor { transition:none !important; }
        }


/* ===================================================================
   GOREV-1420: Entegrasyonlar tab section (#entegrasyonlar)
   --ot-* homepage tema değişkenlerine bağlı → light/dark otomatik
   =================================================================== */
        #entegrasyonlar {
            --ot-card-bg: var(--bg-2); --ot-card-bg-2: var(--bg-1); --ot-fg: var(--text);
            --ot-muted: var(--faded); --ot-border: var(--border); --ot-brand-orange: var(--orange);
            --ot-brand-teal:#2dd4bf; --ot-orange-soft:rgba(251,133,0,0.13); --ot-teal-soft:rgba(45,212,191,0.13); --ot-radius:14px;
        }
        #entegrasyonlar .ent-tabs-wrap { margin-top:30px; }
        #entegrasyonlar .ent-tablist { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin:0 0 30px; }
        #entegrasyonlar .ent-tab { appearance:none; cursor:pointer; white-space:nowrap; padding:11px 22px; border-radius:999px; font-size:14px; font-weight:700; border:1px solid var(--ot-border); background:var(--ot-card-bg); color:var(--ot-muted); display:inline-flex; align-items:center; gap:8px; transition:background .18s,color .18s,border-color .18s,transform .18s; }
        #entegrasyonlar .ent-tab:hover { transform:translateY(-2px); color:var(--ot-fg); }
        #entegrasyonlar .ent-tab[aria-selected="true"] { background:linear-gradient(135deg,var(--ot-brand-orange),#ffae3c); color:#fff; border-color:transparent; box-shadow:0 8px 20px rgba(251,133,0,0.30); }
        #entegrasyonlar .ent-tab-count { font-size:11px; font-weight:800; padding:1px 7px; border-radius:999px; background:rgba(127,127,127,0.18); }
        #entegrasyonlar .ent-tab[aria-selected="true"] .ent-tab-count { background:rgba(255,255,255,0.25); }
        #entegrasyonlar .ent-tabpanel { display:none; }
        #entegrasyonlar .ent-tabpanel.is-active { display:block; animation:entFade .35s ease; }
        @keyframes entFade { from{opacity:0;transform:translateY(8px);} to{opacity:1;transform:none;} }
        #entegrasyonlar .ent-panel-grid { display:grid; grid-template-columns:1.15fr 1fr; gap:36px; align-items:start; max-width:1080px; margin:0 auto; }
        #entegrasyonlar .ent-panel-head { font-size:13px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--ot-muted); margin-bottom:14px; }
        #entegrasyonlar .ent-logo-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(132px,1fr)); gap:12px; }
        #entegrasyonlar .ent-chip { position:relative; display:flex; align-items:center; gap:10px; padding:13px 14px; border-radius:10px; background:var(--ot-card-bg); border:1px solid var(--ot-border); transition:transform .18s,border-color .18s; }
        #entegrasyonlar .ent-chip:hover { transform:translateY(-3px); border-color:var(--ot-brand-teal); }
        #entegrasyonlar .ent-chip.is-soon { opacity:.72; }
        #entegrasyonlar .ent-badge { width:32px; height:32px; flex:none; border-radius:8px; display:grid; place-items:center; font-weight:900; font-size:13px; color:#fff; }
        #entegrasyonlar .ent-name { font-size:13px; font-weight:700; line-height:1.2; }
        #entegrasyonlar .ent-soon { position:absolute; top:-8px; right:-6px; font-size:9px; font-weight:800; letter-spacing:.5px; padding:2px 7px; border-radius:999px; background:var(--ot-card-bg-2); color:var(--ot-brand-teal); border:1px solid rgba(45,212,191,0.4); }
        #entegrasyonlar .ent-bullets { display:grid; grid-template-columns:1fr 1fr; gap:11px 22px; margin:0; padding:0; list-style:none; }
        #entegrasyonlar .ent-bullets li { display:flex; align-items:flex-start; gap:9px; font-size:14px; color:var(--ot-fg); }
        #entegrasyonlar .ent-bullet-ico { flex:none; width:19px; height:19px; margin-top:2px; color:var(--ot-brand-orange); fill:currentColor; }
        #entegrasyonlar .ent-ty{background:linear-gradient(135deg,#F27A1A,#ff9a3c);}
        #entegrasyonlar .ent-hb{background:linear-gradient(135deg,#ff6000,#ff8a3c);}
        #entegrasyonlar .ent-n11{background:linear-gradient(135deg,#6f12af,#9020d0);}
        #entegrasyonlar .ent-tl{background:linear-gradient(135deg,#2dd4bf,#14b8a6);}
        #entegrasyonlar .ent-bl{background:linear-gradient(135deg,#4d7dff,#6c8eff);}
        #entegrasyonlar .ent-gr{background:linear-gradient(135deg,#10b981,#2fd47a);}
        #entegrasyonlar .ent-rd{background:linear-gradient(135deg,#ef4444,#ff7a7a);}
        #entegrasyonlar .ent-gy{background:linear-gradient(135deg,#64748b,#94a3b8);}
        #entegrasyonlar .ent-pk{background:linear-gradient(135deg,#ec4899,#ff7ab8);}
        #entegrasyonlar .ent-am{background:linear-gradient(135deg,#f59e0b,#fbbf24);}
        @media (max-width:768px){
            #entegrasyonlar .ent-panel-grid { grid-template-columns:1fr; gap:28px; }
            #entegrasyonlar .ent-tablist { flex-wrap:nowrap; overflow-x:auto; justify-content:flex-start; }
            #entegrasyonlar .ent-bullets { grid-template-columns:1fr; }
            #entegrasyonlar .ent-logo-grid { grid-template-columns:repeat(3,1fr); }
        }
        @media (prefers-reduced-motion:reduce){
            #entegrasyonlar .ent-tabpanel.is-active{ animation:none; }
            #entegrasyonlar .ent-tab,#entegrasyonlar .ent-chip{ transition:none !important; }
        }

        /* GOREV-1420: local entegrasyon logosu (png->svg->harf-rozeti fallback) */
        #entegrasyonlar .ent-logo { width:46px; height:46px; flex:none; display:grid; place-items:center; }
        #entegrasyonlar .ent-logo-img { width:46px; height:46px; object-fit:contain; border-radius:10px; background:#fff; padding:3px; }
        #entegrasyonlar .ent-badge-fb { width:46px; height:46px; font-size:16px; border-radius:10px; }

        /* GOREV-1420 fix: gizli fallback rozeti display:grid ile ezilmesin (logo yuklenince rozet gizli kalsin) */
        #entegrasyonlar .ent-badge-fb[hidden] { display: none !important; }

        /* GOREV-1420: entegrasyon alani biraz aydinlat (chip lift + ust isilti, temaya duyarli) */
        #entegrasyonlar { background: radial-gradient(1000px 440px at 50% -60px, rgba(251,133,0,0.07), transparent 72%); }
        #entegrasyonlar .ent-chip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
        html[data-theme="light"] #entegrasyonlar .ent-chip { background:#ffffff; border-color:rgba(0,0,0,0.08); }
        #entegrasyonlar .ent-chip:hover { background: rgba(255,255,255,0.07); }
        html[data-theme="light"] #entegrasyonlar .ent-chip:hover { background:#f7f9fc; }

        /* iyzico footer toggle (GOREV-1504/ONERI-0088) + layout (GOREV-1507) asistron-shell.css'e taşındı */
