/* Custom additions on top of vevona.min.css */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all .2s ease;
}
.footer-social-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
.footer-link--muted {
    color: rgba(255, 255, 255, 0.45);
    cursor: default;
}
.footer-link--muted:hover {
    color: rgba(255, 255, 255, 0.45);
}

/* Lang switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-btn {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all .15s ease;
    cursor: pointer;
    background: transparent;
    border: none;
}
.lang-btn:hover { color: rgba(255, 255, 255, 0.85); }
.lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Pagination — Vevona */
.vv-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 60px auto 40px;
}
.vv-pagination-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    list-style: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.vv-page {
    display: inline-flex;
}
.vv-page > a,
.vv-page > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all .18s ease;
}
.vv-page > a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.vv-page--active > span {
    color: var(--bg, #050508);
    background: var(--accent, #40C9A2);
}
.vv-page--disabled > span {
    color: rgba(255, 255, 255, 0.18);
    cursor: not-allowed;
}
.vv-page--ellipsis > span {
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
    padding: 0 8px;
    min-width: 24px;
}
.vv-pagination-summary {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    letter-spacing: 0.2px;
}

/* Anasayfa Blog "Tüm Yazılar" CTA */
.blog-cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* ===========================================================================
   PROJE DETAY HERO — Browser/Laptop Mockup
   ---------------------------------------------------------------------------
   Web/SaaS/E-commerce projeleri için 16:10 laptop ekran mockup'ı.
   Mobil projeler için mevcut .pd-hero-phone (9:16) kullanılır.
   Kategori bazlı seçim show.blade.php'de yapılır.
   =========================================================================== */
.pd-hero-browser {
    width: 100%;
    max-width: 720px;
    /* Container = chrome bar (32px) + image area (16:10 = 720×450) = 720×482 */
    aspect-ratio: 720 / 482;
    border-radius: 14px;
    background: #0a0a14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}
/* Browser chrome bar (üst 32px, image'ın ÜSTÜNE değil, kendi alanında) */
.pd-hero-browser::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 32px;
    background: linear-gradient(180deg, #1a1a24 0%, #14141e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
}
.pd-hero-browser::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 16px 0 0 #febc2e, 32px 0 0 #28c841;
    z-index: 3;
}
.pd-hero-browser-shot {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #0a0a14;
}

/* Mobilde browser çerçevesini de küçült */
@media (max-width: 768px) {
    .pd-hero-browser {
        max-width: 100%;
    }
}

/* ===========================================================================
   İLETİŞİM FORMU — Alert + Inline error mesajları
   =========================================================================== */
.il-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}
.il-alert--ok {
    background: rgba(64, 201, 162, 0.08);
    border: 1px solid rgba(64, 201, 162, 0.3);
    color: #d1f5e7;
}
.il-alert--ok svg { color: var(--accent, #40C9A2); flex-shrink: 0; margin-top: 2px; }
.il-alert--err {
    background: rgba(255, 77, 106, 0.08);
    border: 1px solid rgba(255, 77, 106, 0.3);
    color: #fec5cf;
}
.il-alert--err ul { margin: 6px 0 0; padding-left: 20px; }
.il-alert--err li { margin-top: 2px; }

.il-err-msg {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #ff8094;
    font-weight: 500;
}

/* Lead form flash mesajı (cta-form'larda) */
.lead-flash {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 720px;
}
.lead-flash--ok {
    background: rgba(64, 201, 162, 0.1);
    border: 1px solid rgba(64, 201, 162, 0.3);
    color: #d1f5e7;
}
.lead-flash--ok svg { color: var(--accent, #40C9A2); flex-shrink: 0; }
.lead-flash--err {
    background: rgba(255, 77, 106, 0.1);
    border: 1px solid rgba(255, 77, 106, 0.3);
    color: #fec5cf;
}
.lead-flash--err svg { color: #ff4d6a; flex-shrink: 0; }
.lead-flash strong { display: block; margin-bottom: 4px; font-weight: 700; }
.lead-flash ul { margin: 6px 0 0; padding-left: 20px; font-size: 13px; }
.il-input:has(+ .il-err-msg),
.il-field:has(.il-err-msg) .il-input {
    border-color: rgba(255, 77, 106, 0.4);
}

/* Çerçevesiz görsel — admin "none" seçtiyse */
.pd-hero-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    display: block;
}

/* ===========================================================================
   PROJE DETAY HERO — GPU rasterization fix
   ---------------------------------------------------------------------------
   .pd-hero-grid'in animation'ı transform: translateY içerir — bu element'i
   GPU compositing'e alır ve image içeriğini fraksiyonel DPI'de bulanıklaştırır.
   Animation'ı sadece opacity ile yapıyoruz (transform yok).
   =========================================================================== */
.pd-hero-grid {
    animation: none;
}
.pd-hero-grid[data-reveal],
.pd-hero-grid {
    animation: pd-fade-opacity 0.7s ease both;
    transform: none !important;
}
@keyframes pd-fade-opacity {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Mockup container'larını GPU layer'dan çıkar */
.pd-hero-visual,
.pd-hero-phone,
.pd-hero-browser {
    transform: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
}

/* Browser mockup içindeki img — chrome bar 32px altında, kalan alan 16:10 ratio
   Tam uyumlu image yüklenirse (16:10 oran) cover hiç crop yapmaz → keskin */
.pd-hero-browser-img {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: calc(100% - 32px);
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Phone mockup içindeki img — tüm alanı doldurur */
.pd-hero-phone .pd-hero-shot-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    display: block;
}
.pd-hero-phone:has(.pd-hero-shot-img) {
    padding: 0;
    overflow: hidden;
}

/* Anasayfa proje kartı — cover image direkt kartı doldurur */
.project-card-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}
.project-card-img:has(.project-card-cover) {
    position: relative;
    overflow: hidden;
}

/* ===========================================================================
   ANASAYFA EKOSİSTEM — MOBİL ALTERNATİF (bento grid)
   ---------------------------------------------------------------------------
   Desktop'ta hexagon (.hex-grid) görünür, .eco-mobile gizli.
   Mobilde hexagon gizlenir, .eco-mobile bento görünür.
   =========================================================================== */
.eco-mobile {
    display: none;
}

@media (max-width: 700px) {
    /* Mobilde hexagon ve onun büyük scale override'ını gizle */
    .hex-stage > .hex-grid {
        display: none !important;
    }
    .hex-stage {
        min-height: auto !important;
        margin-top: 0 !important;
        align-items: flex-start;
        padding: 0 16px;
        width: 100%;
    }

    /* Bento grid göster */
    .eco-mobile {
        display: block;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}

.eco-mobile-header {
    text-align: center;
    margin-bottom: 28px;
}
.eco-mobile-mark {
    display: inline-block;
    width: auto;
    height: 52px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 24px rgba(64, 201, 162, 0.4));
}
.eco-mobile-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent, #40C9A2);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.eco-mobile-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

.eco-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eco-mobile-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    isolation: isolate;
}
.eco-mobile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(64, 201, 162, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
}
.eco-mobile-card:active,
.eco-mobile-card:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 201, 162, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.eco-mobile-card:active::before,
.eco-mobile-card:hover::before {
    opacity: 1;
}

.eco-mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(64, 201, 162, 0.08);
    border: 1px solid rgba(64, 201, 162, 0.2);
    color: var(--accent, #40C9A2);
}
.eco-mobile-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.eco-mobile-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Çok küçük ekranlarda (320-360px) — kart padding'i daha sıkı */
@media (max-width: 380px) {
    .eco-mobile-card {
        padding: 14px 12px;
    }
    .eco-mobile-title {
        font-size: 14px;
    }
}

/* ===========================================================================
   ANASAYFA HAKKIMIZDA — Ofisler grid'i (TR/EE/UK/US)
   ---------------------------------------------------------------------------
   Vevona base CSS'inde yapı var ama mobilde uniform görünmüyor.
   Override ile kart yüksekliklerini eşitle, flag'i belirgin yap.
   =========================================================================== */
.about-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    margin: 0;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-location:hover {
    border-color: rgba(64, 201, 162, 0.3);
    transform: translateY(-1px);
}

.about-location-flag {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 201, 162, 0.1);
    border: 1px solid rgba(64, 201, 162, 0.25);
    border-radius: 10px;
    font-family: var(--font-small, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent, #40C9A2);
}

.about-location > div:not(.about-location-flag) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0; /* flex item'ın text-overflow için gerekli */
    flex: 1;
}
.about-location strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
.about-location span {
    font-family: var(--font-small, 'Inter', sans-serif);
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobilde 2x2 grid yerine tek sütun — daha okunaklı */
@media (max-width: 480px) {
    .about-locations {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .about-location span {
        white-space: normal;
    }
}

/* ===========================================================================
   ÜRÜN SAYFALARI — MOBİL OVERFLOW DÜZELTMELERİ
   ---------------------------------------------------------------------------
   Decorative mockup'lar mobilde sığmadığı için ya küçültülür ya gizlenir.
   Kod blokları yatay scrollable yapılır.
   Hero alanları stack edilir.
   =========================================================================== */
@media (max-width: 768px) {
    /* GENEL: yatay scroll'u engelle — taşan dekoratif elementler kırpılır */
    html, body { overflow-x: clip; }

    /* === VONAPOS — Tech/SDK code blokları ===
       Grid item shrink fix: child <pre> intrinsic width grid track'ı patlatıyor.
       min-width: 0 ile grid item'ın container'a sığmasına zorla. */
    .vp-tech-grid {
        grid-template-columns: 1fr !important;
        min-width: 0;
    }
    .vp-tech-card {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .vp-tech-code,
    .vp-tech-card pre,
    .vp-tech-card code {
        max-width: 100% !important;
        min-width: 0;
        overflow-x: auto;
        white-space: pre;
        font-size: 11px;
        line-height: 1.55;
        -webkit-overflow-scrolling: touch;
        word-break: normal;
    }

    /* === VONARIDE — Decorative voucher + hero visual === */
    .vd-hero,
    .vd-hero-inner,
    [class^="vd-"][class*="-grid"],
    [class^="vd-"][class*="-row"] {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        min-width: 0;
    }
    .vd-hero-visual,
    .vd-voucher,
    .vd-voucher-stub,
    .vd-voucher-route,
    .vd-voucher-meta {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    .vd-voucher {
        transform: scale(0.95);
        transform-origin: left top;
    }

    /* === HEKİM REHBERİ — Doc/browser mockup'ları + feature grid === */
    [class^="hr-"][class*="-grid"],
    [class^="hr-"][class*="-row"],
    .hr-feat,
    .hr-feat-grid,
    .hr-hero,
    .hr-hero-inner {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        min-width: 0;
    }
    .hr-doc-mock,
    .hr-browser,
    .hr-feat-card,
    .hr-feat-col {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    .hr-doc-mock,
    .hr-browser {
        transform: scale(0.85);
        transform-origin: left top;
        height: auto !important;
    }

    /* === VONASOFT — Hero side-by-side mobilde stack === */
    .vs-hero,
    .vs-hero-inner,
    [class^="vs-"][class*="-grid"],
    [class^="vs-"][class*="-row"] {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        min-width: 0;
    }
    .vs-hero-text,
    .vs-hero-visual,
    .vs-logo-lockup,
    .vs-hero-cta,
    .vs-hero-badges {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    .vs-hero-cta {
        flex-wrap: wrap;
        gap: 10px;
    }
    .vs-hero-badges {
        flex-wrap: wrap;
    }

    /* === VONAASİSTAN — Long CTA bubble + chat container === */
    .va-bubble,
    .va-bubble--cta,
    [class^="va-"][class*="-card"],
    [class^="va-"][class*="-chat"] {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        word-break: break-word;
    }
    [class^="va-"][class*="-grid"],
    [class^="va-"][class*="-row"] {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    /* === GENEL: tüm ürün hero visual'ları stack === */
    [class$="-hero-inner"],
    [class$="-hero"] {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Geniş tablolar her sayfada scrollable */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }

    /* Geniş image ve iframe */
    img, iframe, video {
        max-width: 100%;
        height: auto;
    }

    /* === SON SAVUNMA: Tüm ürün sayfası prefix'li elementler ===
       Spesifik selector'larla yakalanamayan tüm dekoratif/içerik bloklarını
       viewport'a sığdır. Tasarım kayıpları minimum, içerik korunur. */
    [class^="vp-"],
    [class^="vd-"],
    [class^="vs-"],
    [class^="vr-"],
    [class^="va-"],
    [class^="hr-"],
    [class*=" vp-"],
    [class*=" vd-"],
    [class*=" vs-"],
    [class*=" vr-"],
    [class*=" va-"],
    [class*=" hr-"] {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* Decorative glow/blob'lar mobilde küçültülür — taşmasın */
    .ambient-blob,
    [class*="-glow"],
    [class*="-blob"] {
        max-width: 80vw !important;
        max-height: 80vw !important;
    }
}

/* ===========================================================================
   MOBİL MENÜ — Tek standart versiyon
   ---------------------------------------------------------------------------
   Tüm sayfalarda aynı: header (logo + X) + nav + footer (lang + iletişim)
   =========================================================================== */
.mobile-overlay {
    /* vevona.min.css default'ları override et */
    justify-content: flex-start !important;
    padding: 0 !important;
    z-index: 9999 !important;
}

.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.mobile-overlay-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
}
.mobile-overlay-logo img {
    height: 26px;
    width: auto;
}
.mobile-overlay-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background .2s ease;
}
.mobile-overlay-close:hover,
.mobile-overlay-close:focus {
    background: rgba(255, 255, 255, 0.06);
    outline: 0;
}

/* Nav block — overlay'in büyük kısmını kaplar */
.mobile-overlay > .mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(20px, 5vw, 40px);
    gap: 6px;
}

/* Footer (alt blok) */
.mobile-overlay > .mobile-footer {
    flex-shrink: 0;
    padding: 24px clamp(20px, 5vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
}
.mobile-lang-btn {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all .15s ease;
}
.mobile-lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease;
}
.mobile-email:hover {
    color: var(--accent, #40C9A2);
}

.mobile-socials {
    display: inline-flex;
    gap: 10px;
}
.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all .2s ease;
}
.mobile-socials a:hover {
    color: #fff;
    border-color: rgba(64, 201, 162, 0.35);
    background: rgba(64, 201, 162, 0.08);
}

/* Vevona Ecosystem hexagon — büyütme override */
.products-hex.section {
    padding-block: 40px 50px;
}
.hex-stage {
    min-height: 880px;
    margin-top: 20px;
}
.hex-grid {
    transform: rotateX(20deg) rotateY(-8deg) scale(1.5);
    transform-origin: center center;
}
/* Responsive scale kademeleri — declared width 680px × scale ≤ viewport olmalı */
@media (max-width: 1100px) {
    .hex-stage { min-height: 760px; }
    .hex-grid { transform: rotateX(20deg) rotateY(-8deg) scale(1.2); }
}
@media (max-width: 900px) {
    .hex-stage { min-height: 640px; }
    .hex-grid { transform: rotateX(20deg) rotateY(-8deg) scale(1); }
}
@media (max-width: 700px) {
    .hex-stage { min-height: 540px; }
    .hex-grid { transform: rotateX(20deg) rotateY(-8deg) scale(0.78); }
}
@media (max-width: 550px) {
    .hex-stage { min-height: 460px; }
    .hex-grid { transform: rotateX(20deg) rotateY(-8deg) scale(0.65); }
}
@media (max-width: 420px) {
    .hex-stage { min-height: 400px; }
    .hex-grid { transform: rotateX(20deg) rotateY(-8deg) scale(0.55); }
}

/* =====================================================
   Project Detail — Enhanced empty browser mockup (sim UI)
   Used as fallback when no cover_image uploaded
   ===================================================== */
.pd-sim {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.pd-sim-urlbar {
    height: 26px;
    margin: 6px 14px 0 76px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}
.pd-sim-url {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.02em;
}
.pd-sim-body {
    flex: 1;
    display: flex;
    gap: 0;
    padding: 14px;
    min-height: 0;
}
.pd-sim-nav {
    width: 44px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.pd-sim-nav-item {
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}
.pd-sim-nav-item--active {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.pd-sim-main {
    flex: 1;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.pd-sim-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.pd-sim-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 56px;
}
.pd-sim-stat-bar {
    display: block;
    height: 7px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.5);
}
.pd-sim-stat-bar--sm {
    height: 4px;
    width: 40%;
    background: rgba(255, 255, 255, 0.18) !important;
}
.pd-sim-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    min-height: 80px;
}
.pd-sim-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(255, 255, 255, 0.3);
    min-height: 8%;
}
.pd-sim-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pd-sim-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}
.pd-sim-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.pd-sim-row-bar {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.18);
    max-width: 85%;
}
.pd-sim-row-bar--w70 { max-width: 70%; }
.pd-sim-row-bar--w55 { max-width: 55%; }
.pd-sim-row-tail {
    width: 28px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* =====================================================
   Project Detail — Rich content blocks (stats/modules/tech)
   Used inside $project->description HTML
   ===================================================== */
.pd-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 32px 0;
}
.pd-stat-card {
    background: linear-gradient(135deg, rgba(64, 201, 162, 0.08) 0%, rgba(64, 201, 162, 0.02) 100%);
    border: 1px solid rgba(64, 201, 162, 0.2);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pd-stat-card strong {
    font-size: 28px;
    line-height: 1;
    color: var(--accent, #40C9A2);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.pd-stat-card span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.pd-problem-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pd-problem-list li {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent, #40C9A2);
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
.pd-problem-list li strong { color: rgba(255, 255, 255, 1); }

.pd-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 18px 0 32px;
}
.pd-module {
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-module-icon {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 4px;
}
.pd-module strong {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}
.pd-module p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    margin: 0;
}

.pd-tech-block {
    margin: 18px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pd-tech-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.pd-tech-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 90px;
    padding-top: 6px;
}
.pd-tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.pd-chip {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    white-space: nowrap;
}

/* =====================================================
   Project Detail — Hero layout fix + visible mockup
   ===================================================== */
/* Hero grid: title kolonu uzun text yüzünden mockup'ı ezmesin */
.pd-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 1fr) !important;
    gap: 56px !important;
    align-items: center !important;
}
@media (max-width: 968px) {
    .pd-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}
.pd-hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}
.pd-hero-browser {
    width: 100% !important;
    max-width: 560px !important;
    /* aspect-ratio container'ı küçülmesin */
    min-width: 0 !important;
}

/* Sim dashboard: container ne kadar küçükse o kadar yoğun şekilde sığmasını garanti et */
.pd-sim-stat { min-height: 0 !important; padding: 8px !important; }
.pd-sim-chart { min-height: 60px !important; padding: 8px !important; }
.pd-sim-rows { gap: 4px !important; }
.pd-sim-row { padding: 5px 8px !important; }
.pd-sim-body { padding: 10px !important; gap: 0 !important; }
.pd-sim-main { gap: 6px !important; padding-left: 10px !important; }
.pd-sim-nav { width: 36px !important; padding-right: 8px !important; gap: 6px !important; }
.pd-sim-nav-item { height: 22px !important; }

/* =====================================================
   Project Detail — Description'daki zengin bloklar prose içinde
   .pd-lead wrapper'ı muhtemelen `prose` veya benzeri tipografi
   uyguluyor; içerideki grid/flex'leri korumamız lazım.
   ===================================================== */
.pd-lead .pd-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 14px !important;
    margin: 32px 0 !important;
    list-style: none !important;
    padding: 0 !important;
}
.pd-lead .pd-stat-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 20px 18px !important;
    background: linear-gradient(135deg, rgba(64, 201, 162, 0.1) 0%, rgba(64, 201, 162, 0.02) 100%) !important;
    border: 1px solid rgba(64, 201, 162, 0.22) !important;
    border-radius: 12px !important;
}
.pd-lead .pd-stat-card strong {
    display: block !important;
    font-size: 32px !important;
    line-height: 1 !important;
    color: var(--accent, #40C9A2) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}
.pd-lead .pd-stat-card span {
    display: block !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.pd-lead .pd-modules-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 14px !important;
    margin: 18px 0 32px !important;
    list-style: none !important;
    padding: 0 !important;
}
.pd-lead .pd-module {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 20px 18px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
}
.pd-lead .pd-module-icon {
    font-size: 26px !important;
    line-height: 1 !important;
    margin: 0 0 4px 0 !important;
}
.pd-lead .pd-module strong {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}
.pd-lead .pd-module p {
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.pd-lead .pd-problem-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 32px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.pd-lead .pd-problem-list li {
    padding: 16px 18px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border-left: 3px solid var(--accent, #40C9A2) !important;
    border-radius: 0 8px 8px 0 !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.78) !important;
}
.pd-lead .pd-problem-list li::before { display: none !important; content: none !important; }
.pd-lead .pd-problem-list li strong { color: rgba(255, 255, 255, 1) !important; }

.pd-lead .pd-tech-block {
    margin: 18px 0 32px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}
.pd-lead .pd-tech-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}
.pd-lead .pd-tech-label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    min-width: 90px !important;
    padding-top: 6px !important;
}
.pd-lead .pd-tech-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    flex: 1 !important;
    min-width: 0 !important;
}
.pd-lead .pd-chip {
    display: inline-block !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 12.5px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

/* H3'ler description içinde */
.pd-lead h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 40px 0 12px !important;
    letter-spacing: -0.01em !important;
}

/* =====================================================
   Project Detail Hero Title — Daha mütevazı clamp
   Önceki: clamp(48px, 7vw, 96px) → 1440px'te ~89px (uzun title 6 satıra dağılıyordu)
   Şimdi:  clamp(34px, 4vw, 56px) → 1440px'te ~56px, 4-5 satırda durur
   + text-wrap balance: dengeli line break
   + hyphens auto: Almanca compound noun + uzun TR kelimeler için
   ===================================================== */
.pd-hero-title {
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    text-wrap: balance;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* Mobil — biraz daha küçük */
@media (max-width: 640px) {
    .pd-hero-title {
        font-size: clamp(28px, 7vw, 42px) !important;
    }
}

/* =====================================================
   KARİYER SAYFASI
   ===================================================== */
.kariyer-body { background: var(--bg, #050508); }

.krv-eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent, #40C9A2);
    font-weight: 700;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
}

.krv-h2 {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
    text-wrap: balance;
}

/* HERO */
.krv-hero {
    padding: 100px 28px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 20% 0%, rgba(64, 201, 162, 0.08), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(124, 106, 239, 0.06), transparent 50%);
}
.krv-hero-inner { max-width: 920px; margin: 0 auto; }
.krv-hero-title {
    font-size: clamp(36px, 5.4vw, 68px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 22px;
    text-wrap: balance;
}
.krv-hero-desc {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    max-width: 720px;
    margin: 0 auto 36px;
}
.krv-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.krv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--accent, #40C9A2);
    color: #000;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.krv-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -8px rgba(64, 201, 162, 0.4);
    text-decoration: none;
}
.krv-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.krv-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
}
.krv-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.krv-trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.krv-trust-item strong {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
}
.krv-trust-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: "Inter", sans-serif;
}
.krv-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 640px) {
    .krv-hero-trust { gap: 18px; }
    .krv-trust-divider { display: none; }
}

/* SECTION */
.krv-section {
    padding: 100px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.krv-section--alt { background: rgba(255, 255, 255, 0.015); }
.krv-section-inner { max-width: 1200px; margin: 0 auto; }
.krv-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.krv-section-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 12px;
}

/* GRID */
.krv-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}
.krv-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

/* VALUE CARD */
.krv-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.krv-card:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 201, 162, 0.25);
    background: rgba(64, 201, 162, 0.04);
}
.krv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(64, 201, 162, 0.1);
    border: 1px solid rgba(64, 201, 162, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent, #40C9A2);
}
.krv-card-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}
.krv-card-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.krv-card-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

/* ROLE CARD */
.krv-role-card {
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, border-color 0.2s;
}
.krv-role-card:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 201, 162, 0.3);
}
.krv-role-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.krv-role-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(64, 201, 162, 0.1);
    border: 1px solid rgba(64, 201, 162, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #40C9A2);
    flex-shrink: 0;
}
.krv-role-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}
.krv-role-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent, #40C9A2);
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.krv-role-title {
    font-size: 17px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.krv-role-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    flex: 1;
}
.krv-role-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.krv-role-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Inter", sans-serif;
}
.krv-role-pill--accent {
    background: rgba(64, 201, 162, 0.14);
    border-color: rgba(64, 201, 162, 0.4);
    color: #65e3bb;
    font-weight: 600;
}

/* WIDE ROLE CARD — tüm satırı kapla, horizontal layout */
.krv-role-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
    margin-top: 8px;
    background:
        linear-gradient(135deg, rgba(64, 201, 162, 0.08), rgba(124, 106, 239, 0.06)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(64, 201, 162, 0.22);
    position: relative;
    overflow: hidden;
}
.krv-role-card--wide::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(124, 106, 239, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0.6;
}
.krv-role-card--wide:hover {
    border-color: rgba(64, 201, 162, 0.4);
    transform: translateY(-2px);
}
.krv-wide-left {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.krv-wide-icon-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.krv-wide-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    background: rgba(64, 201, 162, 0.14) !important;
    border: 1px solid rgba(64, 201, 162, 0.32) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--accent, #40C9A2) !important;
}
.krv-wide-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}
.krv-wide-mid {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.krv-wide-title {
    font-size: 22px !important;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.krv-wide-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}
.krv-wide-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.krv-wide-right .krv-role-tags {
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0;
    margin-top: 0;
    gap: 6px;
}

/* Mobile: wide card → vertical stack */
@media (max-width: 900px) {
    .krv-role-card--wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 26px;
    }
    .krv-wide-icon-block {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }
    .krv-wide-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 12px !important;
    }
    .krv-wide-icon svg {
        width: 26px;
        height: 26px;
    }
    .krv-wide-title {
        font-size: 19px !important;
    }
    .krv-wide-right .krv-role-tags {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }
}

/* SPONTANE CTA */
.krv-spontane {
    margin-top: 48px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(64, 201, 162, 0.06), rgba(124, 106, 239, 0.04));
    border: 1px solid rgba(64, 201, 162, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.krv-spontane-text strong {
    display: block;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}
.krv-spontane-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

/* PERK */
.krv-perk {
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}
.krv-perk-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(64, 201, 162, 0.08);
    border: 1px solid rgba(64, 201, 162, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent, #40C9A2);
}
.krv-perk-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}
.krv-perk h4 {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}
.krv-perk p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 0;
}

/* PROCESS / TIMELINE */
.krv-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.krv-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}
.krv-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(64, 201, 162, 0.12);
    border: 1px solid rgba(64, 201, 162, 0.3);
    color: var(--accent, #40C9A2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    font-family: "Inter", sans-serif;
}
.krv-step-content h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.krv-step-content p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 0;
}

/* CTA */
.krv-cta {
    padding: 100px 28px;
    background: linear-gradient(180deg, rgba(64, 201, 162, 0.04), transparent 70%);
    text-align: center;
}
.krv-cta-inner { max-width: 640px; margin: 0 auto; }
.krv-cta-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.krv-cta-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}
.krv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent, #40C9A2);
    color: #000;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.krv-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px -8px rgba(64, 201, 162, 0.45);
    text-decoration: none;
}
.krv-cta-note {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
    .krv-section { padding: 64px 24px; }
    .krv-hero { padding: 64px 24px 56px; }
    .krv-cta { padding: 72px 24px; }
    .krv-spontane { padding: 24px 22px; }
}

/* =====================================================
   HERO ORB — Daha aydınlık varyant
   Önceki opacity'ler (0.04-0.30) gündüz ekranlarda silikti.
   Halkalar ve core daha belirgin, float tag'lar daha okunaklı.
   ===================================================== */

/* Core — merkez yeşil küre, daha canlı */
.hero-orb-core {
    background: radial-gradient(
        circle at 35% 35%,
        rgba(64, 201, 162, 0.55) 0%,
        rgba(64, 201, 162, 0.22) 35%,
        rgba(64, 201, 162, 0.06) 65%,
        transparent 80%
    ) !important;
    box-shadow:
        0 0 100px rgba(64, 201, 162, 0.35),
        0 0 40px rgba(64, 201, 162, 0.25),
        inset 0 0 50px rgba(64, 201, 162, 0.18) !important;
}

/* Halkalar — opacity boost (silinik → görünür) */
.hero-orb-ring--1 {
    border-color: rgba(64, 201, 162, 0.38) !important;
    border-width: 1.5px !important;
}
.hero-orb-ring--2 {
    border-color: rgba(64, 201, 162, 0.22) !important;
    border-width: 1.5px !important;
}
.hero-orb-ring--3 {
    border-color: rgba(124, 106, 239, 0.15) !important; /* mor accent — beyaz yerine */
    border-width: 1px !important;
}

/* Halka üzerindeki noktalar — daha geniş glow */
.hero-orb-ring--1::before {
    width: 10px !important;
    height: 10px !important;
    box-shadow: 0 0 18px var(--accent-glow), 0 0 6px rgba(64, 201, 162, 0.8) !important;
}
.hero-orb-ring--2::before {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 16px var(--red-glow), 0 0 6px rgba(255, 77, 106, 0.8) !important;
}
.hero-orb-ring--3::before {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 16px rgba(124, 106, 239, 0.7), 0 0 6px rgba(124, 106, 239, 0.9) !important;
}

/* Float tag'lar — okunaklı arka plan + metin */
.hero-float-tag {
    background: rgba(18, 20, 30, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: rgba(244, 244, 246, 0.92) !important;
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
}

/* Float tag noktaları — daha parlak ve büyük */
.float-tag-dot {
    width: 8px !important;
    height: 8px !important;
}
.float-tag-dot--office {
    box-shadow: 0 0 10px var(--red-glow), 0 0 4px rgba(255, 77, 106, 1) !important;
}
.float-tag-dot--client {
    box-shadow: 0 0 10px var(--accent-glow), 0 0 4px rgba(64, 201, 162, 1) !important;
}
