/* ==========================================================================
   Landing page (anasayfa) — Gülmar Yapı
   Tasarım dili: 2026 "Editorial Bento" — asimetrik bento grid, dev index
   numaraları (01–08), iri başlıklar, ince ayraçlar, sıcak amber + kırık beyaz.
   Hero (.scrolly-hero) ve pill bar mekanizması BU DOSYAYA DAHİL DEĞİLDİR.
   Tüm sınıflar .lp- ön ekiyle namespace'lenmiştir.
   ========================================================================== */

:root {
    --lp-accent: #f2a100;
    --lp-accent-dark: #cf8800;
    --lp-ink: #1b1b1b;
    --lp-ink-soft: #2c2a26;
    --lp-muted: #6b6b6b;
    --lp-line: #e6e0d6;
    --lp-soft: #f6f3ee;   /* sıcak kırık beyaz — ahşap/orman teması */
    --lp-card: #ffffff;
    --lp-radius: 22px;
    --lp-radius-sm: 16px;
    --lp-shadow: 0 22px 55px rgba(24, 32, 28, 0.09);
    --lp-shadow-hover: 0 32px 70px rgba(24, 32, 28, 0.16);
}

/* --------------------------------------------------------------------------
   Bölüm iskeleti
   -------------------------------------------------------------------------- */
.lp-section {
    position: relative;
    padding: clamp(64px, 9vw, 130px) 0;
}

.lp-section--soft {
    background: var(--lp-soft);
}

.lp-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-accent);
}

/* --------------------------------------------------------------------------
   Editoryal bölüm başlığı — index no. + eyebrow + iri başlık + (opsiyonel) lead
   -------------------------------------------------------------------------- */
.lp-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    align-items: end;
    gap: clamp(18px, 4vw, 64px);
    padding-top: 26px;
    border-top: 1px solid var(--lp-line);
    margin-bottom: clamp(38px, 5vw, 70px);
}

.lp-head--solo {
    grid-template-columns: 1fr;
}

.lp-head-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

.lp-head-eyebrow b {
    color: var(--lp-accent);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lp-head-title {
    margin: 16px 0 0;
    font-size: clamp(30px, 4.6vw, 60px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--lp-ink);
    text-wrap: balance;
}

.lp-head-lead {
    margin: 0;
    max-width: 46ch;
    justify-self: end;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Kayan kelime şeridi (marquee) — editoryal ayraç
   -------------------------------------------------------------------------- */
.lp-marquee {
    overflow: hidden;
    border-block: 1px solid var(--lp-line);
    background: var(--lp-ink);
    padding: 16px 0;
}

.lp-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: lp-marq 30s linear infinite;
}

.lp-marquee-track span {
    display: inline-flex;
    align-items: center;
    font-size: clamp(18px, 2.3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #f4efe7;
}

.lp-marquee-track span::after {
    content: "✦";
    margin: 0 clamp(22px, 3vw, 50px);
    font-size: 0.7em;
    color: var(--lp-accent);
}

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

/* --------------------------------------------------------------------------
   İŞARETLİ RESİM ALANI (placeholder)
   Görseli sonra atamak için: .lp-imgph div'ini <img> ile değiştir.
   -------------------------------------------------------------------------- */
.lp-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--lp-radius);
    background: #efe9df;
}

.lp-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-ratio-1x1 { aspect-ratio: 1 / 1; }
.lp-ratio-4x3 { aspect-ratio: 4 / 3; }
.lp-ratio-3x2 { aspect-ratio: 3 / 2; }
.lp-ratio-3x4 { aspect-ratio: 3 / 4; }
.lp-ratio-16x9 { aspect-ratio: 16 / 9; }

.lp-imgph {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 8px;
    padding: 16px;
    text-align: center;
    color: #9a907f;
    background:
        repeating-linear-gradient(45deg, rgba(242, 161, 0, 0.045) 0 14px, transparent 14px 28px),
        #efe9df;
    border: 1.5px dashed #cdbfa6;
    border-radius: inherit;
}

.lp-imgph i {
    font-size: 32px;
    line-height: 1;
    color: #c3b59b;
}

.lp-imgph::before {
    content: attr(data-label);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #8a7f6b;
}

.lp-imgph::after {
    content: attr(data-size);
    font-size: 11.5px;
    color: #a89c84;
}

/* --------------------------------------------------------------------------
   "İncele" tipi metin linki
   -------------------------------------------------------------------------- */
.lp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--lp-ink);
    text-decoration: none;
    transition: color .25s ease, gap .25s ease;
}

.lp-link i { color: var(--lp-accent); transition: transform .25s ease; }
.lp-link:hover { color: var(--lp-accent-dark); gap: 12px; }
.lp-link:hover i { transform: translateX(3px); }

/* Kart artık bir <a>: "İncele" (span) afordansı kart hover'ında canlanır */
.lp-bento-card:hover .lp-link { color: var(--lp-accent-dark); gap: 12px; }
.lp-bento-card:hover .lp-link i { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   BENTO grid — Ürün Grupları (2) ve Öne Çıkan Ürünler (6) paylaşır
   -------------------------------------------------------------------------- */
.lp-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(228px, 23vw, 286px);
    gap: clamp(14px, 1.4vw, 20px);
}

.lp-bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    color: inherit;
    text-decoration: none;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease, border-color .45s ease;
}

.lp-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-hover);
    border-color: transparent;
}

.lp-bento-card .lp-figure {
    flex: 1 1 auto;
    min-height: 0;
    border-radius: 0;
}

.lp-bento-body {
    position: relative;
    padding: clamp(16px, 1.5vw, 24px);
}

.lp-bento-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-muted);
    font-variant-numeric: tabular-nums;
}

.lp-bento-meta b { color: var(--lp-accent); font-weight: 700; }

.lp-bento-meta .lp-tag {
    margin-left: auto;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(242, 161, 0, 0.12);
    color: var(--lp-accent-dark);
    letter-spacing: 0.06em;
}

.lp-bento-card h3 {
    margin: 0;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.2;
    color: var(--lp-ink);
}

.lp-bento-card p {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lp-muted);
}

.lp-bento-card .lp-link { margin-top: 16px; }

/* Bento boyut varyantları */
.lp-bento-card--big {
    grid-column: span 2;
    grid-row: span 2;
}

.lp-bento-card--big h3 { font-size: clamp(22px, 2.2vw, 30px); }

.lp-bento-card--wide {
    grid-column: span 2;
    flex-direction: row;
}

.lp-bento-card--wide .lp-figure { flex: 1 1 50%; }

.lp-bento-card--wide .lp-bento-body {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   3) KULLANIM ALANLARI — bento + görsel üstü editoryal etiket
   -------------------------------------------------------------------------- */
.lp-usage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(186px, 19vw, 240px);
    gap: clamp(14px, 1.4vw, 20px);
}

.lp-usage-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--lp-radius);
    text-decoration: none;
    box-shadow: var(--lp-shadow);
}

.lp-usage-tile .lp-figure {
    position: absolute;
    inset: 0;
    height: 100%;
    border-radius: 0;
}

.lp-usage-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(18px, 1.8vw, 26px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(15, 12, 6, 0.78) 100%);
    pointer-events: none;
}

.lp-usage-index {
    position: absolute;
    top: clamp(16px, 1.6vw, 22px);
    left: clamp(18px, 1.8vw, 26px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    opacity: 0.85;
    font-variant-numeric: tabular-nums;
}

.lp-usage-overlay span {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-accent);
}

.lp-usage-overlay h3 {
    margin: 6px 0 0;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.15;
    color: #fff;
}

.lp-usage-tile--big { grid-column: span 2; grid-row: span 2; }
.lp-usage-tile--wide { grid-column: span 2; }
.lp-usage-tile--big .lp-usage-overlay h3 { font-size: clamp(22px, 2.4vw, 32px); }

/* --------------------------------------------------------------------------
   4) NEDEN GÜLMAR? — sticky görsel + editoryal numaralı liste
   -------------------------------------------------------------------------- */
.lp-why {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 84px);
    align-items: start;
}

.lp-why-media {
    position: sticky;
    top: 100px;
}

.lp-why-media .lp-figure {
    aspect-ratio: 4 / 5;
    box-shadow: var(--lp-shadow);
}

.lp-why-head .lp-eyebrow { margin-bottom: 14px; }

.lp-why-head h2 {
    margin: 0 0 16px;
    font-size: clamp(27px, 3.3vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--lp-ink);
}

.lp-why-head > p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--lp-muted);
}

.lp-why-list { margin-top: clamp(20px, 3vw, 36px); }

.lp-why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 26px;
    padding: clamp(20px, 2.4vw, 30px) 0;
    border-top: 1px solid var(--lp-line);
}

.lp-why-item:last-child { border-bottom: 1px solid var(--lp-line); }

.lp-why-num {
    grid-row: span 2;
    align-self: start;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}

.lp-why-num b { color: var(--lp-accent); }

.lp-why-item h4 {
    margin: 4px 0 6px;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--lp-ink);
}

.lp-why-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   5) SÜREÇ — hairline üstünde accent nokta + dev numaralı editoryal adımlar
   -------------------------------------------------------------------------- */
.lp-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 30px);
    padding-top: 40px;
    border-top: 1px solid var(--lp-line);
}

.lp-step { position: relative; }

.lp-step::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--lp-accent);
    box-shadow: 0 0 0 5px rgba(242, 161, 0, 0.16);
}

.lp-step-num {
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}

.lp-step h3 {
    margin: 14px 0 8px;
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--lp-ink);
}

.lp-step p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   7) UYGULAMA ÖRNEKLERİ — mozaik bento
   -------------------------------------------------------------------------- */
.lp-apps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(160px, 18vw, 230px);
    gap: clamp(14px, 1.4vw, 20px);
}

.lp-app-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    color: inherit;
    text-decoration: none;
}

.lp-app-tile .lp-figure,
.lp-app-tile .lp-imgph {
    border-radius: 0;
    height: 100%;
    aspect-ratio: auto;
}

.lp-app-tile--wide { grid-column: span 2; }
.lp-app-tile--tall { grid-row: span 2; }
.lp-app-tile--big  { grid-column: span 2; grid-row: span 2; }

.lp-app-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: clamp(16px, 1.6vw, 24px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(15, 12, 6, 0.72) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   8) TEKLİF / İLETİŞİM CTA — editoryal, oversized tipografi
   -------------------------------------------------------------------------- */
.lp-cta {
    position: relative;
    overflow: hidden;
}

.lp-cta-bg { position: absolute; inset: 0; z-index: 0; }
.lp-cta-bg .lp-figure { border-radius: 0; height: 100%; }
.lp-cta-bg .lp-imgph { border-radius: 0; }

.lp-cta-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(18, 14, 7, 0.90) 0%, rgba(18, 14, 7, 0.66) 52%, rgba(18, 14, 7, 0.40) 100%);
}

.lp-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: clamp(76px, 11vw, 150px) 0;
    color: #fff;
}

.lp-cta-index {
    display: inline-block;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.lp-cta-index b { color: var(--lp-accent); }

.lp-cta-inner h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 5.4vw, 68px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #fff;
    text-wrap: balance;
}

.lp-cta-inner p {
    margin: 0 0 34px;
    max-width: 600px;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.lp-btn-primary { background: var(--lp-accent); color: #1b1b1b; }
.lp-btn-primary:hover { background: #ffb71f; transform: translateY(-2px); }

/* Teklif / WhatsApp buton rengi artık GLOBAL standart → header-pill.css içindeki
   "WHATSAPP CTA STANDARDI" bloğu (her sayfada yüklenir). Tek kaynak olsun diye
   kural buradan kaldırıldı; tüm sayfalarda aynı #25d366 yeşili geçerli. */

.lp-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.lp-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-2px);
}

.lp-section-cta {
    margin-top: clamp(34px, 4vw, 56px);
}

/* SOL BÖLÜM NAVİGASYONU (.lp-spy "cam panel stepper") artık GLOBAL → tüm
   bileşen header-pill.css'e taşındı (her sayfada yüklenir; bespoke çözüm
   sayfalarında section-spy.js otomatik kurar). Tek kaynak orada. */

/* --------------------------------------------------------------------------
   Duyarlı (responsive)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .lp-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }
    .lp-head-lead { justify-self: start; }

    .lp-bento,
    .lp-usage {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-bento-card--big,
    .lp-usage-tile--big { grid-column: span 2; grid-row: span 1; }
    .lp-usage-tile--tall { grid-row: span 1; }
    .lp-bento-card--wide { grid-column: span 2; }

    .lp-why {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .lp-why-media { position: static; }
    .lp-why-media .lp-figure { aspect-ratio: 16 / 10; }

    .lp-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 24px;
    }
    .lp-step::before { display: none; }

    .lp-apps {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(150px, 30vw, 220px);
    }
    .lp-app-tile--big { grid-column: span 2; grid-row: span 1; }
    .lp-app-tile--tall { grid-row: span 1; }
}

@media (max-width: 575px) {
    .lp-bento,
    .lp-usage,
    .lp-apps {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .lp-bento-card,
    .lp-usage-tile,
    .lp-app-tile {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .lp-bento-card { min-height: 340px; }
    .lp-bento-card .lp-figure { min-height: 200px; }
    .lp-bento-card--wide { flex-direction: column; }
    .lp-usage-tile,
    .lp-app-tile { min-height: 260px; }

    .lp-process { grid-template-columns: 1fr; }

    .lp-cta-actions { flex-direction: column; align-items: stretch; }
    .lp-btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-marquee-track { animation: none; }
}

/* ==========================================================================
   2026 CİLA — interaktif spotlight, manyetik buton, parallax, stat bandı
   ========================================================================== */

/* İmleç takipli amber spotlight (bento / kullanım / uygulama tile'ları) */
.lp-bento-card::after,
.lp-usage-tile::after,
.lp-app-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
    background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 161, 0, 0.20), transparent 62%);
}

@media (hover: hover) {
    .lp-bento-card:hover::after,
    .lp-usage-tile:hover::after,
    .lp-app-tile:hover::after { opacity: 1; }
}

/* Manyetik buton — JS imlece göre transform verir */
.lp-btn { will-change: transform; }

/* Görsel: hover zoom + (destekleyen tarayıcıda) scroll-driven parallax.
   Sadece gerçek <img> atandığında görünür; placeholder'larda etkisizdir. */
.lp-figure img {
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.lp-bento-card:hover .lp-figure img,
.lp-usage-tile:hover .lp-figure img,
.lp-app-tile:hover .lp-figure img {
    transform: scale(1.05);
}

@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        .lp-figure img {
            animation: lp-img-parallax linear both;
            animation-timeline: view();
            animation-range: cover 0% cover 100%;
        }
    }
}

@keyframes lp-img-parallax {
    from { transform: translateY(-3.5%) scale(1.08); }
    to   { transform: translateY(3.5%) scale(1.08); }
}

/* Rakamlarla Gülmar — koyu editoryal stat bandı */
.lp-stats {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 100px) 0;
    background: var(--lp-ink);
    color: #fff;
}

.lp-stats .lp-eyebrow { color: var(--lp-accent); }

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(22px, 3vw, 52px);
    margin-top: clamp(28px, 4vw, 50px);
}

.lp-stat {
    padding-left: clamp(16px, 2vw, 30px);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: clamp(38px, 5.4vw, 70px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.lp-stat-value b {
    font-size: 0.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--lp-accent);
}

.lp-stat-label {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 991px) {
    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px clamp(22px, 3vw, 52px);
    }
}

@media (max-width: 575px) {
    .lp-stats-grid { grid-template-columns: 1fr; gap: 0; }
    .lp-stat {
        padding: 20px 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }
    .lp-stat:first-child { padding-top: 0; border-top: none; }
}

/* ---- Film grain dokusu (koyu bantlarda, çok hafif) ---- */
.lp-grain { position: relative; }

.lp-grain::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-size: 170px 170px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-stats .container,
.lp-cta .container { position: relative; z-index: 2; }

/* ---- Marquee: hover'da durur ---- */
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }

/* ---- Klavye erişilebilirliği ---- */
.lp-link:focus-visible,
.lp-btn:focus-visible,
.lp-usage-tile:focus-visible,
.lp-bento-card a:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 3px;
    border-radius: 6px;
}
