/**
 * iMRAK.COM.TR
 * Creative Web Design Agency
 * Korhan Mustafa İMRAK
 */

/* ===== CSS Variables — Kurumsal yazılım · kırmızı & nötr ===== */
:root {
    --primary: #e4e4e7;
    --primary-dark: #050303;
    --primary-light: #27272a;
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --accent-purple: #e11d48;
    --accent-purple-light: #fb7185;
    --light: #18181b;
    --bg-beige: #080706;
    --bg-warm: #0c0a0a;
    --bg-card: rgba(14, 14, 16, 0.82);
    --bg-card-hover: rgba(30, 27, 27, 0.9);
    --muted: #a1a1aa;
    --white: #fafafa;
    --shadow: 0 4px 24px rgba(0,0,0,0.35);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.45);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.2s ease;
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    --gradient-btn: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    --glow-accent: 0 0 40px rgba(239, 68, 68, 0.25);
    --glow-card: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --accent-icon: #ef4444;
    --accent-glow: rgba(239, 68, 68, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(220, 38, 38, 0.22);
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; margin: 0; padding: 0; font-size: 100%; }
body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: var(--bg-beige);
    color: var(--primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.korhan-mustafa-imrak-page-wrap {
    flex: 1;
}

/* ===== Responsive H Etiketleri ===== */
h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; line-height: 1.3; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; line-height: 1.4; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); font-weight: 600; line-height: 1.4; }
h5 { font-size: clamp(1rem, 2vw, 1.1rem); font-weight: 600; line-height: 1.5; }

/* ===== Navigation - DEVRİM NİTELİĞİNDE ===== */
.korhan-mustafa-imrak-nav-bar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease-out-expo);
}
.korhan-mustafa-imrak-nav-bar.korhan-mustafa-imrak-nav-premium {
    overflow: hidden;
}
.korhan-mustafa-imrak-nav-bar.korhan-mustafa-imrak-nav-premium .korhan-mustafa-imrak-nav-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}
/* Header Premium BG - Footer ile aynı animasyonlar (ölçeklenmiş) */
.korhan-mustafa-imrak-nav-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #080505 0%, #0f0606 50%, #050303 100%);
}
.korhan-mustafa-imrak-nav-premium-mesh {
    position: absolute;
    inset: -30%;
    background-size: 200% 200%;
    background-image: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.25) 0%, transparent 50%);
    pointer-events: none;
    animation: heroMeshMove 18s ease-in-out infinite;
}
.korhan-mustafa-imrak-nav-premium-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
}
.korhan-mustafa-imrak-nav-premium-orb-1 {
    width: 120px;
    height: 120px;
    background: rgba(127, 29, 29, 0.5);
    top: -60px;
    right: 5%;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-nav-premium-orb-2 {
    width: 90px;
    height: 90px;
    background: rgba(127, 29, 29, 0.4);
    bottom: -45px;
    left: 10%;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-nav-premium-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: 0 0;
    pointer-events: none;
    animation: heroGridPulse 8s ease-in-out infinite, footerGridMove 25s linear infinite;
}
.korhan-mustafa-imrak-nav-premium-glow {
    position: absolute;
    width: 150%;
    height: 200%;
    top: -50%;
    left: -25%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.25), transparent, rgba(127, 29, 29, 0.15), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}
.korhan-mustafa-imrak-nav-premium-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-nav-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.5);
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-nav-particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; animation-duration: 9s; }
.korhan-mustafa-imrak-nav-particle:nth-child(2) { left: 60%; top: 60%; animation-delay: -3s; animation-duration: 11s; }
.korhan-mustafa-imrak-nav-particle:nth-child(3) { left: 85%; top: 40%; animation-delay: -5s; animation-duration: 8s; }
.korhan-mustafa-imrak-nav-premium-code {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.korhan-mustafa-imrak-nav-code-item {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(239, 68, 68, 0.12);
    white-space: nowrap;
    animation: footerCodeFloat 20s ease-in-out infinite;
}
.korhan-mustafa-imrak-nav-code-item:nth-child(1) { left: 8%; top: 20%; animation-delay: 0s; }
.korhan-mustafa-imrak-nav-code-item:nth-child(2) { left: 35%; top: 60%; animation-delay: -4s; }
.korhan-mustafa-imrak-nav-code-item:nth-child(3) { left: 55%; top: 25%; animation-delay: -2s; }
.korhan-mustafa-imrak-nav-code-item:nth-child(4) { left: 72%; top: 70%; animation-delay: -6s; }
.korhan-mustafa-imrak-nav-code-item:nth-child(5) { left: 90%; top: 35%; animation-delay: -3s; }
.korhan-mustafa-imrak-nav-code-item:nth-child(6) { left: 15%; top: 75%; animation-delay: -5s; }
.korhan-mustafa-imrak-nav-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
    background-size: 200% 100%;
    animation: navGlowLine 8s ease-in-out infinite;
    opacity: 0.8;
}
@keyframes navGlowLine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.korhan-mustafa-imrak-nav-bar.korhan-mustafa-imrak-scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.korhan-mustafa-imrak-nav-logo {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.43rem, 3.6vw, 1.79rem);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    transition: opacity 0.3s;
    flex-shrink: 0;
}
.korhan-mustafa-imrak-nav-logo:hover { opacity: 0.95; }
/* Logo üstte ortada */
.korhan-mustafa-imrak-nav-bar .korhan-mustafa-imrak-nav-logo {
    align-items: center;
}
.korhan-mustafa-imrak-nav-logo-img {
    height: 57px;
    width: auto;
    max-width: 257px;
    object-fit: contain;
    display: block;
}
.korhan-mustafa-imrak-nav-marka {
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #fca5a5 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.korhan-mustafa-imrak-nav-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 0.1rem;
}

.korhan-mustafa-imrak-nav-links {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.korhan-mustafa-imrak-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
}
.korhan-mustafa-imrak-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
.korhan-mustafa-imrak-nav-links a:hover {
    color: #fff;
    background: rgba(239, 68, 68, 0.1);
}
.korhan-mustafa-imrak-nav-links a:hover::after { width: 60%; }
.korhan-mustafa-imrak-nav-links a.korhan-mustafa-imrak-active {
    color: #fff;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-nav-links a.korhan-mustafa-imrak-active::after {
    width: 70%;
}
.korhan-mustafa-imrak-nav-links a i[aria-hidden="true"] {
    margin-right: 0.4rem;
    opacity: 0.9;
    color: var(--accent);
}


/* Mobil: Logo ortada, hamburger sağda */
@media (max-width: 992px) {
    .korhan-mustafa-imrak-nav-bar {
        padding: 0.75rem 1rem;
    }
    .korhan-mustafa-imrak-nav-links {
        display: none !important;
    }
    .korhan-mustafa-imrak-nav-hamburger {
        display: flex !important;
        margin-left: auto;
        position: relative;
        z-index: 1;
    }
    .korhan-mustafa-imrak-nav-bar.korhan-mustafa-imrak-nav-premium .korhan-mustafa-imrak-nav-inner {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    .korhan-mustafa-imrak-nav-bar .korhan-mustafa-imrak-nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .korhan-mustafa-imrak-nav-logo-img {
        height: 52px;
        max-width: 229px;
    }
}

/* Hamburger Buton - Sadece mobilde görünsün */
.korhan-mustafa-imrak-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-left: auto;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all 0.3s var(--ease-out-expo);
}
.korhan-mustafa-imrak-nav-hamburger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--accent);
}
.korhan-mustafa-imrak-nav-hamburger:active {
    transform: scale(0.96);
}
.korhan-mustafa-imrak-hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out-expo);
}
.korhan-mustafa-imrak-nav-hamburger.korhan-mustafa-imrak-active .korhan-mustafa-imrak-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.korhan-mustafa-imrak-nav-hamburger.korhan-mustafa-imrak-active .korhan-mustafa-imrak-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.korhan-mustafa-imrak-nav-hamburger.korhan-mustafa-imrak-active .korhan-mustafa-imrak-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobil Menü Overlay - DEVRİM NİTELİĞİNDE */
.korhan-mustafa-imrak-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1301;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.35s;
}
.korhan-mustafa-imrak-mobile-menu.korhan-mustafa-imrak-open {
    pointer-events: auto;
    visibility: visible;
}
.korhan-mustafa-imrak-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out-expo);
}
.korhan-mustafa-imrak-mobile-menu.korhan-mustafa-imrak-open .korhan-mustafa-imrak-mobile-menu-backdrop {
    opacity: 1;
}
.korhan-mustafa-imrak-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 90vw);
    background: linear-gradient(180deg, #0f0606 0%, #0a0a0a 50%, #080505 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.korhan-mustafa-imrak-mobile-menu.korhan-mustafa-imrak-open .korhan-mustafa-imrak-mobile-menu-panel {
    transform: translateX(0);
}
.korhan-mustafa-imrak-mobile-menu-header {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.korhan-mustafa-imrak-mobile-menu-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
}
.korhan-mustafa-imrak-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    border-left: 3px solid transparent;
}
.korhan-mustafa-imrak-mobile-menu-link i {
    width: 1.25rem;
    text-align: center;
    color: var(--accent);
    font-size: 1rem;
}
.korhan-mustafa-imrak-mobile-menu-link:active {
    background: rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-mobile-menu-link.korhan-mustafa-imrak-active {
    background: rgba(239, 68, 68, 0.12);
    border-left-color: var(--accent);
    color: var(--white);
}
.korhan-mustafa-imrak-mobile-menu-link.korhan-mustafa-imrak-active i {
    color: var(--accent);
}
body.korhan-mustafa-imrak-nav-open {
    overflow: hidden;
}
/* Mobil menü - sadece mobilde (JS ile açılır) */
@media (min-width: 993px) {
    .korhan-mustafa-imrak-mobile-menu {
        display: none !important;
    }
}

/* ===== Footer ===== */
.korhan-mustafa-imrak-footer {
    position: relative;
    background: #0f0606;
    color: var(--white);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-footer-inner { max-width: 1100px; margin: 0 auto; }
.korhan-mustafa-imrak-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color var(--transition);
}
.korhan-mustafa-imrak-footer-links a:hover { color: var(--white); }
.korhan-mustafa-imrak-footer-links a i[aria-hidden="true"] { margin-right: 0.35rem; opacity: 0.9; }
.korhan-mustafa-imrak-footer p { opacity: 0.8; font-size: 0.9rem; }

@media (max-width: 480px) {
    .korhan-mustafa-imrak-footer-links { flex-direction: column; gap: 0.75rem; }
}

/* ===== Footer Premium (Anasayfa) ===== */
.korhan-mustafa-imrak-footer-premium {
    position: relative;
    margin-top: 0;
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-footer-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #050303 0%, #0f0606 30%, #080505 100%);
}
/* Hero slider tarzı mesh - translate, scale, rotate */
.korhan-mustafa-imrak-footer-premium-mesh {
    position: absolute;
    inset: -50%;
    background-size: 200% 200%;
    background-image: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(127, 29, 29, 0.2) 0%, transparent 60%);
    pointer-events: none;
    animation: heroMeshMove 18s ease-in-out infinite;
}
/* Hero slider tarzı orb'lar - heroOrbFloat1/2/3 */
.korhan-mustafa-imrak-footer-premium-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(50px, 10vw, 80px));
    opacity: 0.5;
    pointer-events: none;
}
.korhan-mustafa-imrak-footer-premium-orb-1 {
    width: clamp(180px, 35vw, 380px);
    height: clamp(180px, 35vw, 380px);
    background: rgba(127, 29, 29, 0.45);
    top: -120px;
    right: -80px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-footer-premium-orb-2 {
    width: clamp(140px, 28vw, 300px);
    height: clamp(140px, 28vw, 300px);
    background: rgba(127, 29, 29, 0.35);
    bottom: -60px;
    left: -60px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-footer-premium-orb-3 {
    width: clamp(100px, 20vw, 220px);
    height: clamp(100px, 20vw, 220px);
    background: rgba(153, 27, 27, 0.35);
    top: 40%;
    left: 5%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-footer-premium-orb-4 {
    width: clamp(80px, 15vw, 160px);
    height: clamp(80px, 15vw, 160px);
    background: rgba(127, 29, 29, 0.3);
    top: 20%;
    right: 15%;
    animation: heroOrbFloat2 13s ease-in-out infinite reverse 3s;
}
/* Hero slider tarzı grid - pulse + mask */
.korhan-mustafa-imrak-footer-premium-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: clamp(30px, 5vw, 48px) clamp(30px, 5vw, 48px);
    background-position: 0 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
    animation: heroGridPulse 8s ease-in-out infinite, footerGridMove 25s linear infinite;
}
@keyframes footerGridMove {
    0% { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}
/* Hero slider tarzı dönen glow halkası */
.korhan-mustafa-imrak-footer-premium-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.3), transparent, rgba(127, 29, 29, 0.2), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}
/* Hero slider tarzı parçacıklar */
.korhan-mustafa-imrak-footer-premium-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-footer-premium-particles::before,
.korhan-mustafa-imrak-footer-premium-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: heroParticleFloat 10s ease-in-out infinite;
}
.korhan-mustafa-imrak-footer-premium-particles::before {
    background: rgba(127, 29, 29, 0.5);
    left: 18%;
    top: 25%;
    animation-delay: 0s;
}
.korhan-mustafa-imrak-footer-premium-particles::after {
    background: rgba(127, 29, 29, 0.45);
    right: 22%;
    bottom: 35%;
    animation-delay: -4s;
}
.korhan-mustafa-imrak-footer-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-footer-particle:nth-child(1) { left: 55%; top: 15%; animation-delay: -2s; animation-duration: 9s; }
.korhan-mustafa-imrak-footer-particle:nth-child(2) { left: 75%; top: 60%; animation-delay: -5s; animation-duration: 11s; }
.korhan-mustafa-imrak-footer-particle:nth-child(3) { left: 12%; top: 70%; animation-delay: -1s; animation-duration: 8s; }
.korhan-mustafa-imrak-footer-particle:nth-child(4) { left: 40%; top: 85%; animation-delay: -7s; animation-duration: 10s; }
/* Arka planda hareket eden kod parçacıkları */
.korhan-mustafa-imrak-footer-premium-code {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.korhan-mustafa-imrak-footer-code-item {
    position: absolute;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    color: rgba(239, 68, 68, 0.15);
    white-space: nowrap;
    animation: footerCodeFloat 20s ease-in-out infinite;
}
.korhan-mustafa-imrak-footer-code-item:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; animation-duration: 18s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(2) { left: 25%; top: 8%; animation-delay: -3s; animation-duration: 22s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(3) { left: 45%; top: 25%; animation-delay: -6s; animation-duration: 16s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(4) { left: 70%; top: 12%; animation-delay: -2s; animation-duration: 24s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(5) { left: 85%; top: 30%; animation-delay: -8s; animation-duration: 19s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(6) { left: 12%; top: 55%; animation-delay: -4s; animation-duration: 21s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(7) { left: 35%; top: 65%; animation-delay: -1s; animation-duration: 17s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(8) { left: 55%; top: 75%; animation-delay: -5s; animation-duration: 23s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(9) { left: 78%; top: 60%; animation-delay: -7s; animation-duration: 15s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(10) { left: 92%; top: 80%; animation-delay: -9s; animation-duration: 20s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(11) { left: 8%; top: 85%; animation-delay: -2s; animation-duration: 18s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(12) { left: 40%; top: 40%; animation-delay: -4s; animation-duration: 25s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(13) { left: 62%; top: 45%; animation-delay: -6s; animation-duration: 14s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(14) { left: 18%; top: 35%; animation-delay: -10s; animation-duration: 26s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(15) { left: 88%; top: 50%; animation-delay: -3s; animation-duration: 19s; }
.korhan-mustafa-imrak-footer-code-item:nth-child(odd) { animation-name: footerCodeFloat; }
.korhan-mustafa-imrak-footer-code-item:nth-child(even) { animation-name: footerCodeDrift; }
@keyframes footerCodeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.12; }
    25% { transform: translate(15px, -20px) rotate(2deg); opacity: 0.2; }
    50% { transform: translate(-10px, 15px) rotate(-1deg); opacity: 0.15; }
    75% { transform: translate(20px, 10px) rotate(1deg); opacity: 0.18; }
}
@keyframes footerCodeDrift {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(-25px, -30px) rotate(3deg); opacity: 0.18; }
    100% { transform: translate(20px, 15px) rotate(-2deg); opacity: 0.12; }
}
.korhan-mustafa-imrak-footer-premium-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.korhan-mustafa-imrak-footer-premium-cta {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.korhan-mustafa-imrak-footer-premium-cta .korhan-mustafa-imrak-footer-premium-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.korhan-mustafa-imrak-footer-cta-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}
.korhan-mustafa-imrak-footer-cta-content p {
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.95rem;
}
.korhan-mustafa-imrak-btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    color: #0a0a0a !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
    animation: footerCtaGlow 3s ease-in-out infinite;
}
.korhan-mustafa-imrak-btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
    animation: none;
}
@keyframes footerCtaGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35); }
    50% { box-shadow: 0 4px 28px rgba(239, 68, 68, 0.5); }
}
.korhan-mustafa-imrak-footer-premium-main {
    padding: 3.5rem 0;
}
.korhan-mustafa-imrak-footer-premium-grid-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.korhan-mustafa-imrak-footer-col-brand {
    padding-right: 1rem;
}
.korhan-mustafa-imrak-footer-brand {
    display: inline-block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--white);
}
.korhan-mustafa-imrak-footer-brand-img {
    max-height: 42px;
    width: auto;
    display: block;
}
.korhan-mustafa-imrak-footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-footer-brand-tagline {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-footer-social {
    display: flex;
    gap: 0.65rem;
}
.korhan-mustafa-imrak-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.12);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.25s ease;
}
.korhan-mustafa-imrak-footer-social-link:hover {
    background: rgba(239, 68, 68, 0.25);
    color: var(--white);
    transform: translateY(-2px) scale(1.08);
}
.korhan-mustafa-imrak-footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-footer-col-links,
.korhan-mustafa-imrak-footer-col-contact {
    list-style: none;
}
.korhan-mustafa-imrak-footer-col-links li,
.korhan-mustafa-imrak-footer-col-contact li {
    margin-bottom: 0.6rem;
}
.korhan-mustafa-imrak-footer-col-links a,
.korhan-mustafa-imrak-footer-col-contact a {
    color: rgba(248, 250, 252, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition), transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.korhan-mustafa-imrak-footer-col-links a:hover,
.korhan-mustafa-imrak-footer-col-contact a:hover {
    color: var(--accent);
    transform: translateX(4px);
}
.korhan-mustafa-imrak-footer-col-links a i,
.korhan-mustafa-imrak-footer-col-contact a i {
    font-size: 0.75rem;
    opacity: 0.8;
}
.korhan-mustafa-imrak-footer-premium-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.korhan-mustafa-imrak-footer-premium-bottom .korhan-mustafa-imrak-footer-premium-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.korhan-mustafa-imrak-footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}
.korhan-mustafa-imrak-footer-action-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    color: var(--white);
    border-color: var(--accent);
}
.korhan-mustafa-imrak-footer-action-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}
.korhan-mustafa-imrak-footer-action-whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    color: var(--white);
    border-color: #25d366;
}
.korhan-mustafa-imrak-footer-action-support {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}
.korhan-mustafa-imrak-footer-action-support:hover {
    background: rgba(139, 92, 246, 0.3);
    color: var(--white);
    border-color: #a78bfa;
}
.korhan-mustafa-imrak-footer-actions-simple {
    margin-top: 0.75rem;
}
.korhan-mustafa-imrak-footer-mobile-fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
.korhan-mustafa-imrak-footer-mobile-fixed .korhan-mustafa-imrak-footer-action-btn {
    flex: 1;
    max-width: 180px;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}
.korhan-mustafa-imrak-footer-mobile-fixed .korhan-mustafa-imrak-footer-action-btn i {
    font-size: 1rem;
}
.korhan-mustafa-imrak-footer-premium-bottom .korhan-mustafa-imrak-footer-actions,
.korhan-mustafa-imrak-footer-actions-simple {
    display: none;
}
body {
    padding-bottom: 70px;
}
@media (max-width: 768px) {
    body {
        padding-bottom: 54px;
    }
    .korhan-mustafa-imrak-footer-mobile-fixed {
        padding: 0.4rem 0.5rem;
        gap: 0.35rem;
    }
    .korhan-mustafa-imrak-footer-mobile-fixed .korhan-mustafa-imrak-footer-action-btn {
        max-width: none;
        padding: 0.45rem 0.35rem;
        font-size: 0.75rem;
    }
    .korhan-mustafa-imrak-footer-mobile-fixed .korhan-mustafa-imrak-footer-action-btn i {
        font-size: 0.9rem;
    }
    .korhan-mustafa-imrak-footer {
        margin-top: 1rem;
    }
    .korhan-mustafa-imrak-footer-premium-cta {
        padding: 0.75rem 0;
    }
    .korhan-mustafa-imrak-footer-premium-main {
        padding: 0.75rem 0;
    }
    .korhan-mustafa-imrak-footer-premium-bottom {
        padding: 0.4rem 0;
    }
    .korhan-mustafa-imrak-section-testimonials-ui {
        padding: 1.5rem 1rem 1.75rem;
    }
    .korhan-mustafa-imrak-section-uzman-devrim {
        padding: 1.5rem 1rem 1.75rem;
    }
    .korhan-mustafa-imrak-yorumlar-main-section {
        padding: 1.5rem 1rem 1.75rem;
    }
    .korhan-mustafa-imrak-yorumlar-stats-section {
        padding: 1rem 1rem 1.25rem;
    }
    .korhan-mustafa-imrak-yorumlar-hero {
        min-height: 28vh;
        padding: 1.25rem 1rem;
    }
}
.korhan-mustafa-imrak-footer-copyright {
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.65);
    text-align: center;
}
.korhan-mustafa-imrak-footer-copyright strong {
    color: rgba(248, 250, 252, 0.9);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-footer-premium-grid-cols {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-footer-premium-cta .korhan-mustafa-imrak-footer-premium-inner {
        flex-direction: column;
        text-align: center;
    }
    .korhan-mustafa-imrak-footer-premium-grid-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .korhan-mustafa-imrak-footer-col-brand {
        padding-right: 0;
        text-align: center;
    }
    .korhan-mustafa-imrak-footer-brand {
        display: flex;
        justify-content: center;
    }
    .korhan-mustafa-imrak-footer-social {
        justify-content: center;
    }
}

/* ===== Hero Slider - Ekrana göre responsive (büyüsün/küçülsün) ===== */
.korhan-mustafa-imrak-hero-slider-wrap {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    border-bottom: 2px solid rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-hero-slider-wrap .swiper {
    width: 100%;
    height: 100%;
    min-height: 70vh;
}
.korhan-mustafa-imrak-hero-slider-wrap .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.korhan-mustafa-imrak-hero-slide {
    min-height: 70vh;
    color: #fff;
    text-align: center;
}
.korhan-mustafa-imrak-hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
/* Arka plan görseli - animasyonların en arkasında */
.korhan-mustafa-imrak-hero-slide-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}
/* Hero Slide BG - base gradient */
.korhan-mustafa-imrak-hero-slide-bg {
    display: block;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #991b1b 100%);
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #991b1b 100%);
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #b91c1c 100%);
}

/* DEVRİM - Animasyonlu mesh (her slide farklı) */
.korhan-mustafa-imrak-hero-slide-mesh {
    position: absolute;
    inset: -50%;
    background-size: 200% 200%;
    animation: heroMeshMove 18s ease-in-out infinite;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-mesh {
    background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 50% 50%, rgba(127, 29, 29, 0.25) 0%, transparent 60%);
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-mesh {
    background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 80% 50% at 20% 70%, rgba(127, 29, 29, 0.4) 0%, transparent 50%);
    animation: heroMeshMove 16s ease-in-out infinite reverse;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-mesh {
    background: radial-gradient(ellipse 60% 70% at 30% 70%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 70% 50% at 70% 20%, rgba(127, 29, 29, 0.4) 0%, transparent 50%);
    animation: heroMeshMove 20s ease-in-out infinite 1s;
}
@keyframes heroMeshMove {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(4%, -4%) scale(1.08) rotate(2deg); }
    66% { transform: translate(-3%, 3%) scale(0.95) rotate(-1deg); }
}

/* DEVRİM - Yüzen orb'lar (ekrana göre ölçeklenir) */
.korhan-mustafa-imrak-hero-slide-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(40px, 8vw, 70px));
    opacity: 0.55;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-orb-1 {
    width: clamp(180px, 35vw, 420px); height: clamp(180px, 35vw, 420px);
    background: rgba(127, 29, 29, 0.5);
    top: -120px; left: -100px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-orb-2 {
    width: clamp(140px, 28vw, 320px); height: clamp(140px, 28vw, 320px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -80px; right: -60px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-orb-3 {
    width: clamp(100px, 20vw, 220px); height: clamp(100px, 20vw, 220px);
    background: rgba(153, 27, 27, 0.4);
    top: 45%; left: 8%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-orb-4 {
    width: clamp(80px, 15vw, 160px); height: clamp(80px, 15vw, 160px);
    background: rgba(127, 29, 29, 0.35);
    top: 18%; right: 12%;
    animation: heroOrbFloat2 13s ease-in-out infinite reverse 3s;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-orb-1 {
    width: clamp(160px, 32vw, 380px); height: clamp(160px, 32vw, 380px);
    background: rgba(127, 29, 29, 0.5);
    top: -80px; right: -80px;
    animation: heroOrbFloat2 15s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-orb-2 {
    width: clamp(120px, 25vw, 280px); height: clamp(120px, 25vw, 280px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -60px; left: -50px;
    animation: heroOrbFloat1 17s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-orb-3 {
    width: clamp(90px, 18vw, 200px); height: clamp(90px, 18vw, 200px);
    background: rgba(153, 27, 27, 0.4);
    top: 60%; right: 15%;
    animation: heroOrbFloat3 11s ease-in-out infinite 0.5s;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-orb-4 {
    width: clamp(70px, 13vw, 140px); height: clamp(70px, 13vw, 140px);
    background: rgba(127, 29, 29, 0.35);
    bottom: 25%; left: 20%;
    animation: heroOrbFloat1 14s ease-in-out infinite reverse;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-orb-1 {
    width: clamp(170px, 33vw, 400px); height: clamp(170px, 33vw, 400px);
    background: rgba(127, 29, 29, 0.5);
    bottom: -100px; left: -80px;
    animation: heroOrbFloat1 16s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-orb-2 {
    width: clamp(130px, 25vw, 300px); height: clamp(130px, 25vw, 300px);
    background: rgba(127, 29, 29, 0.4);
    top: -60px; right: 10%;
    animation: heroOrbFloat2 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-orb-3 {
    width: clamp(100px, 18vw, 220px); height: clamp(100px, 18vw, 220px);
    background: rgba(153, 27, 27, 0.4);
    top: 50%; right: -30px;
    animation: heroOrbFloat3 13s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-orb-4 {
    width: clamp(70px, 12vw, 150px); height: clamp(70px, 12vw, 150px);
    background: rgba(127, 29, 29, 0.35);
    top: 30%; left: 5%;
    animation: heroOrbFloat2 12s ease-in-out infinite reverse;
}
@keyframes heroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, -45px) scale(1.12); }
}
@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-45px, 35px) scale(1.08); }
}
@keyframes heroOrbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, 25px) scale(1.05); }
}

/* DEVRİM - Grid overlay (ekrana göre ölçeklenir) */
.korhan-mustafa-imrak-hero-slide-grid {
    position: absolute;
    inset: 0;
    background-size: clamp(30px, 5vw, 55px) clamp(30px, 5vw, 55px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, black 15%, transparent 72%);
    animation: heroGridPulse 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-grid {
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-grid {
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-grid {
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
}
@keyframes heroGridPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* DEVRİM - Dönen glow halkası */
.korhan-mustafa-imrak-hero-slide-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.35), transparent, rgba(127, 29, 29, 0.25), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-glow {
    background: conic-gradient(from 90deg, transparent, rgba(127, 29, 29, 0.35), transparent, rgba(127, 29, 29, 0.25), transparent);
    animation: heroGlowRotate 22s linear infinite reverse;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-glow {
    background: conic-gradient(from 180deg, transparent, rgba(127, 29, 29, 0.35), transparent, rgba(127, 29, 29, 0.25), transparent);
    animation: heroGlowRotate 28s linear infinite 3s;
}
@keyframes heroGlowRotate {
    to { transform: rotate(360deg); }
}

/* DEVRİM - Parçacıklar (CSS ile) */
.korhan-mustafa-imrak-hero-slide-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-slide-particles::before,
.korhan-mustafa-imrak-hero-slide-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: inherit;
    border-radius: 50%;
    animation: heroParticleFloat 10s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-particles::before {
    background: rgba(127, 29, 29, 0.6);
    left: 15%; top: 20%;
    animation-delay: 0s;
}
.korhan-mustafa-imrak-hero-slide-1 .korhan-mustafa-imrak-hero-slide-particles::after {
    background: rgba(127, 29, 29, 0.5);
    right: 25%; bottom: 30%;
    animation-delay: -4s;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-particles::before {
    background: rgba(127, 29, 29, 0.6);
    left: 70%; top: 15%;
    animation-delay: -2s;
}
.korhan-mustafa-imrak-hero-slide-2 .korhan-mustafa-imrak-hero-slide-particles::after {
    background: rgba(127, 29, 29, 0.5);
    right: 15%; bottom: 25%;
    animation-delay: -6s;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-particles::before {
    background: rgba(127, 29, 29, 0.6);
    left: 25%; bottom: 20%;
    animation-delay: -1s;
}
.korhan-mustafa-imrak-hero-slide-3 .korhan-mustafa-imrak-hero-slide-particles::after {
    background: rgba(127, 29, 29, 0.5);
    right: 30%; top: 40%;
    animation-delay: -5s;
}
@keyframes heroParticleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(25px, -35px) scale(1.3); opacity: 1; }
    50% { transform: translate(-20px, -55px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(35px, -25px) scale(1.15); opacity: 0.85; }
}
.korhan-mustafa-imrak-hero-slide-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: heroParticleFloat 9s ease-in-out infinite;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-slide-particle:nth-child(3n) { width: 2px; height: 2px; animation-duration: 11s; }
.korhan-mustafa-imrak-hero-slide-particle:nth-child(5n) { animation-duration: 7s; animation-direction: reverse; }
.korhan-mustafa-imrak-hero-slide-content {
    position: relative;
    z-index: 2;
    padding: clamp(3rem, 8vw, 6rem) 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.korhan-mustafa-imrak-hero-slide-content.korhan-mustafa-imrak-hero-content-active {
    opacity: 1;
    transform: translateY(0);
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-badge .korhan-mustafa-imrak-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #fff;
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-title.korhan-mustafa-imrak-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fca5a5 60%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    opacity: 0.95;
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.korhan-mustafa-imrak-hero-slide .korhan-mustafa-imrak-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.korhan-mustafa-imrak-hero-slider-prev,
.korhan-mustafa-imrak-hero-slider-next {
    color: rgba(255,255,255,0.9) !important;
}
.korhan-mustafa-imrak-hero-slider-prev:hover,
.korhan-mustafa-imrak-hero-slider-next:hover {
    color: #fff !important;
}
.korhan-mustafa-imrak-hero-slider-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 10px;
    height: 10px;
}
.korhan-mustafa-imrak-hero-slider-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}
/* Hero Slider - Ekran boyutuna göre yükseklik */
@media (min-width: 769px) {
    .korhan-mustafa-imrak-hero-slider-wrap, .korhan-mustafa-imrak-hero-slider-wrap .swiper, .korhan-mustafa-imrak-hero-slide { min-height: 85vh; }
}
@media (min-width: 992px) {
    .korhan-mustafa-imrak-hero-slider-wrap, .korhan-mustafa-imrak-hero-slider-wrap .swiper, .korhan-mustafa-imrak-hero-slide { min-height: 90vh; }
}
@media (min-width: 1200px) {
    .korhan-mustafa-imrak-hero-slider-wrap, .korhan-mustafa-imrak-hero-slider-wrap .swiper, .korhan-mustafa-imrak-hero-slide { min-height: 92vh; }
}
@media (min-width: 1400px) {
    .korhan-mustafa-imrak-hero-slider-wrap, .korhan-mustafa-imrak-hero-slider-wrap .swiper, .korhan-mustafa-imrak-hero-slide { min-height: 95vh; }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-hero-slider-wrap,
    .korhan-mustafa-imrak-hero-slider-wrap .swiper,
    .korhan-mustafa-imrak-hero-slide {
        min-height: 50vh;
        min-height: 50dvh;
        height: 50vh;
        height: 50dvh;
    }
    .korhan-mustafa-imrak-hero-slider-wrap { overflow: hidden; }
    .korhan-mustafa-imrak-hero-slide-content { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
    .korhan-mustafa-imrak-hero-slider-wrap,
    .korhan-mustafa-imrak-hero-slider-wrap .swiper,
    .korhan-mustafa-imrak-hero-slide {
        min-height: 50vh;
        min-height: 50dvh;
        height: 50vh;
        height: 50dvh;
    }
    .korhan-mustafa-imrak-hero-slide-content { padding: 1.5rem 1rem; }
}

/* ===== Hero Section (eski - geriye uyumluluk) ===== */
.korhan-mustafa-imrak-hero {
    background: #05070c;
    color: var(--white);
    padding: clamp(3rem, 8vw, 6rem) 1.5rem;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.korhan-mustafa-imrak-hero h1 { margin-bottom: 0.5rem; color: var(--white); font-size: clamp(2rem, 6vw, 3.5rem); letter-spacing: -0.02em; }
.korhan-mustafa-imrak-hero .korhan-mustafa-imrak-tagline { font-size: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: 1rem; opacity: 0.95; }
.korhan-mustafa-imrak-hero p { opacity: 0.9; font-size: clamp(0.95rem, 2vw, 1.1rem); max-width: 700px; margin: 0 auto 1.5rem; }
.korhan-mustafa-imrak-hero .korhan-mustafa-imrak-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin: 0 0.5rem 0.5rem 0;
    transition: background var(--transition);
}
.korhan-mustafa-imrak-hero .korhan-mustafa-imrak-btn:hover { background: var(--accent-hover); }
.korhan-mustafa-imrak-hero .korhan-mustafa-imrak-btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white) !important;
}
.korhan-mustafa-imrak-hero .korhan-mustafa-imrak-btn-outline:hover {
    background: var(--white);
    color: var(--primary) !important;
}

/* ===== Section ===== */
.korhan-mustafa-imrak-section {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-beige);
}
.korhan-mustafa-imrak-section:first-of-type {
    border-top: none;
}
/* İstatistikler */
.korhan-mustafa-imrak-section-stats {
    background: var(--bg-warm);
}
/* İçerik ortalanmış kare/kutu içinde (max-width) */
.korhan-mustafa-imrak-section:not(.korhan-mustafa-imrak-section-hizmetler):not(.korhan-mustafa-imrak-section-hakkimizda-hizmetler):not(.korhan-mustafa-imrak-section-misyon):not(.korhan-mustafa-imrak-referanslar-revolution):not(.korhan-mustafa-imrak-uzman-revolution):not(.korhan-mustafa-imrak-yazilimlar-revolution):not(.korhan-mustafa-imrak-testimonials-revolution):not(.korhan-mustafa-imrak-stats-revolution):not(.korhan-mustafa-imrak-blog-anasayfa-stats-revolution):not(.korhan-mustafa-imrak-blog-main-revolution):not(.korhan-mustafa-imrak-iletisim-anasayfa-revolution) > * {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.korhan-mustafa-imrak-section-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-section h2 { margin-bottom: 1rem; color: var(--primary); }
.korhan-mustafa-imrak-section p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.korhan-mustafa-imrak-section-dark { 
    background: var(--bg-warm);
    position: relative;
    border-top: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    opacity: 0.5;
}

/* ===== Buttons ===== */
.korhan-mustafa-imrak-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-btn);
    color: var(--primary-dark) !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-btn:hover { filter: brightness(1.1); box-shadow: 0 6px 28px rgba(239, 68, 68, 0.35); }
.korhan-mustafa-imrak-btn-muted { background: #64748b !important; }
.korhan-mustafa-imrak-btn-muted:hover { background: #475569 !important; }

/* ===== Services Grid ===== */
.korhan-mustafa-imrak-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-services-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-services-grid .korhan-mustafa-imrak-service-card {
        max-width: 360px;
        width: 100%;
    }
}
.korhan-mustafa-imrak-service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.korhan-mustafa-imrak-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
    border-color: rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-service-card.korhan-mustafa-imrak-card-devrim {
    background: var(--bg-card);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.korhan-mustafa-imrak-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    background: var(--gradient-btn);
    border-radius: 14px;
    color: var(--primary-dark);
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.korhan-mustafa-imrak-service-card:hover .korhan-mustafa-imrak-service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-service-card h3 { margin-bottom: 0.5rem; color: var(--primary); }
.korhan-mustafa-imrak-service-card p { font-size: 0.9rem; margin: 0; color: var(--muted); }

/* ===== Hizmetlerimiz - Slider gibi animasyonlu arka plan ===== */
.korhan-mustafa-imrak-section-hizmetler {
    position: relative;
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    overflow: hidden;
}
.korhan-mustafa-imrak-hizmetler-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-hizmetler-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 40%, #991b1b 70%, #b91c1c 100%);
}
.korhan-mustafa-imrak-hizmetler-bg-mesh {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(239, 68, 68, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse 60% 80% at 80% 80%, rgba(127, 29, 29, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 50% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: hizmetlerMeshMove 18s ease-in-out infinite;
}
@keyframes hizmetlerMeshMove {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(4%, -4%) scale(1.08) rotate(2deg); }
    66% { transform: translate(-3%, 3%) scale(0.95) rotate(-1deg); }
}
.korhan-mustafa-imrak-hizmetler-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}
.korhan-mustafa-imrak-hizmetler-orb-1 {
    width: clamp(150px, 30vw, 350px);
    height: clamp(150px, 30vw, 350px);
    background: rgba(239, 68, 68, 0.35);
    top: -80px;
    left: -80px;
    animation: hizmetlerOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-hizmetler-orb-2 {
    width: clamp(120px, 24vw, 280px);
    height: clamp(120px, 24vw, 280px);
    background: rgba(127, 29, 29, 0.3);
    bottom: -60px;
    right: -60px;
    animation: hizmetlerOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-hizmetler-orb-3 {
    width: clamp(90px, 18vw, 200px);
    height: clamp(90px, 18vw, 200px);
    background: rgba(239, 68, 68, 0.25);
    top: 50%;
    left: 10%;
    animation: hizmetlerOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-hizmetler-orb-4 {
    width: clamp(70px, 14vw, 150px);
    height: clamp(70px, 14vw, 150px);
    background: rgba(127, 29, 29, 0.2);
    top: 20%;
    right: 15%;
    animation: hizmetlerOrbFloat2 13s ease-in-out infinite reverse 3s;
}
@keyframes hizmetlerOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}
@keyframes hizmetlerOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.06); }
}
@keyframes hizmetlerOrbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px) scale(1.04); }
}
.korhan-mustafa-imrak-hizmetler-bg-grid {
    position: absolute;
    inset: 0;
    background-size: clamp(28px, 4vw, 50px) clamp(28px, 4vw, 50px);
    background-image: linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(127, 29, 29, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, black 15%, transparent 72%);
    animation: hizmetlerGridPulse 8s ease-in-out infinite;
}
@keyframes hizmetlerGridPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
.korhan-mustafa-imrak-hizmetler-bg-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(239, 68, 68, 0.15), transparent, rgba(127, 29, 29, 0.15), transparent);
    animation: hizmetlerGlowRotate 28s linear infinite;
    opacity: 0.4;
}
@keyframes hizmetlerGlowRotate {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-hizmetler-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.korhan-mustafa-imrak-hizmetler-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
}
.korhan-mustafa-imrak-hizmetler-badge .korhan-mustafa-imrak-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-icon);
    border-radius: 50%;
}
.korhan-mustafa-imrak-hizmetler-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
}
.korhan-mustafa-imrak-hizmetler-title-accent { color: var(--accent-icon); }
.korhan-mustafa-imrak-hizmetler-title-white { color: #fff; }
.korhan-mustafa-imrak-hizmetler-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-hizmetler-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-hizmetler-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}
.korhan-mustafa-imrak-hizmetler-list .korhan-mustafa-imrak-list-dot {
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--accent-icon);
    border-radius: 50%;
}
.korhan-mustafa-imrak-hizmetler-profil {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.korhan-mustafa-imrak-hizmetler-profil-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.korhan-mustafa-imrak-hizmetler-profil-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-icon);
    font-size: 1.5rem;
}
.korhan-mustafa-imrak-hizmetler-profil-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.korhan-mustafa-imrak-hizmetler-profil-info strong { color: #fff; font-size: 1.05rem; }
.korhan-mustafa-imrak-hizmetler-profil-unvan { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.korhan-mustafa-imrak-btn-hizmetler {
    background: var(--gradient-btn) !important;
    color: var(--primary-dark) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-btn-hizmetler:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(239, 68, 68, 0.35); }
.korhan-mustafa-imrak-hizmetler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.korhan-mustafa-imrak-hizmetler-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.korhan-mustafa-imrak-hizmetler-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 0 30px rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-hizmetler-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    color: var(--accent-icon);
    font-size: 1.6rem;
}
.korhan-mustafa-imrak-hizmetler-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-hizmetler-wrap { grid-template-columns: 1fr; }
    .korhan-mustafa-imrak-hizmetler-right { order: -1; }
    .korhan-mustafa-imrak-hizmetler-grid { grid-template-columns: 1fr; justify-items: center; }
    .korhan-mustafa-imrak-hizmetler-grid .korhan-mustafa-imrak-hizmetler-panel-card {
        max-width: 360px;
        width: 100%;
    }
}

/* ===== Hakkımızda + Hizmetler — REVOLUTION ===== */
.korhan-mustafa-imrak-section-hakkimizda-hizmetler {
    padding: 0;
    overflow: hidden;
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem) 1rem clamp(2.5rem, 6vw, 4.5rem);
    background: #060606;
}
.korhan-mustafa-imrak-hakkimizda-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-hakkimizda-revolution-beams {
    position: absolute;
    inset: -65%;
    background:
        conic-gradient(from 160deg at 45% 40%,
            transparent 0deg,
            rgba(239, 68, 68, 0.11) 55deg,
            transparent 100deg,
            rgba(127, 29, 29, 0.18) 175deg,
            transparent 255deg,
            rgba(239, 68, 68, 0.07) 310deg,
            transparent 360deg);
    animation: korhanHakkimizdaHzmtRevBeams 36s linear infinite;
    opacity: 0.9;
}
@keyframes korhanHakkimizdaHzmtRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-hakkimizda-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 35%, transparent 15%, rgba(0, 0, 0, 0.72) 100%);
}
.korhan-mustafa-imrak-hakkimizda-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.18) 3px,
        rgba(0, 0, 0, 0.18) 4px
    );
    opacity: 0.32;
    mix-blend-mode: multiply;
    animation: korhanHakkimizdaHzmtRevScan 16s linear infinite;
}
@keyframes korhanHakkimizdaHzmtRevScan {
    0%, 100% { opacity: 0.26; }
    50% { opacity: 0.38; }
}
.korhan-mustafa-imrak-hakkimizda-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(100deg, rgba(239, 68, 68, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 44px) clamp(26px, 4.5vw, 44px);
    mask-image: radial-gradient(ellipse 88% 72% at 50% 42%, black 22%, transparent 76%);
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-hizmetler-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.16);
    box-shadow:
        0 28px 80px -28px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(239, 68, 68, 0.05);
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-revolution-left {
    position: relative;
    background: linear-gradient(168deg, #0c0a0a 0%, #140909 42%, #070606 100%);
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.korhan-mustafa-imrak-hakkimizda-revolution-blob {
    position: absolute;
    top: -12%;
    left: -18%;
    width: 85%;
    height: 65%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(127, 29, 29, 0.55) 100%);
    border-radius: 45% 55% 65% 35% / 42% 48% 58% 52%;
    filter: blur(2px);
    pointer-events: none;
    opacity: 0.65;
}
.korhan-mustafa-imrak-hakkimizda-revolution-portrait {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 4/5;
    border-radius: 4px 18px 18px 4px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.3);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    box-shadow:
        0 24px 56px -20px rgba(0, 0, 0, 0.75),
        0 0 40px -16px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-hakkimizda-profil-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.korhan-mustafa-imrak-hakkimizda-profil-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.2) 0%, rgba(30, 10, 10, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fecaca;
    font-size: 3.5rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel {
    position: relative;
    z-index: 1;
    margin-top: -1.65rem;
    margin-left: 0.35rem;
    margin-right: 0.35rem;
    padding: 0;
    padding-bottom: 1.2rem;
    color: #f4f4f5;
    background: linear-gradient(180deg, rgba(11, 10, 10, 0.98) 0%, rgba(5, 5, 6, 0.99) 100%);
    border: 1px solid rgba(239, 68, 68, 0.24);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 32px 64px -32px rgba(0, 0, 0, 0.88),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-hizmetler-revolution-terminal-cap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.48);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    color: rgba(252, 165, 165, 0.88);
}
.korhan-mustafa-imrak-hizmetler-revolution-terminal-cap span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-hizmetler-revolution-terminal-cap span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-hizmetler-revolution-terminal-cap span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-hizmetler-revolution-terminal-cap code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-hizmetler-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 1.2rem 0.55rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(239, 68, 68, 0.32);
    border-radius: 5px;
}
.korhan-mustafa-imrak-hizmetler-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanHakkimizdaHzmtRevPulse 2.4s ease-out infinite;
}
@keyframes korhanHakkimizdaHzmtRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-title {
    font-size: 1.28rem;
    font-weight: 800;
    color: #fafafa;
    margin: 0 1.2rem 0.3rem;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-sub {
    font-size: 0.88rem;
    color: rgba(228, 228, 231, 0.78);
    margin: 0 1.2rem 0.65rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-desc {
    font-size: 0.86rem;
    color: rgba(200, 200, 210, 0.82);
    line-height: 1.65;
    margin: 0 1.2rem 0.95rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-list {
    list-style: none;
    margin: 0 1.2rem 1rem;
    padding: 0;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-list li {
    padding: 0.32rem 0;
    padding-left: 1.35rem;
    position: relative;
    color: rgba(244, 244, 245, 0.9);
    font-size: 0.84rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-panel .korhan-mustafa-imrak-hizmetler-panel-list li i {
    position: absolute;
    left: 0;
    color: #f87171;
    font-size: 0.72rem;
}
.korhan-mustafa-imrak-hizmetler-revolution-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin: 0 1rem 1.1rem;
}
.korhan-mustafa-imrak-hizmetler-revolution-card {
    position: relative;
    isolation: isolate;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}
.korhan-mustafa-imrak-hizmetler-revolution-card-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, transparent 85%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.9;
}
.korhan-mustafa-imrak-hizmetler-revolution-card-body {
    margin-left: 3px;
    padding: 0.95rem 0.65rem;
    text-align: center;
    min-height: 118px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, rgba(22, 20, 20, 0.92) 0%, rgba(8, 7, 8, 0.95) 100%);
    border: 1px solid rgba(239, 68, 68, 0.16);
    border-radius: 2px 10px 10px 2px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.85);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.4s ease;
}
.korhan-mustafa-imrak-hizmetler-revolution-card:nth-child(odd) .korhan-mustafa-imrak-hizmetler-revolution-card-body {
    transform: rotate(-0.4deg);
}
.korhan-mustafa-imrak-hizmetler-revolution-card:nth-child(even) .korhan-mustafa-imrak-hizmetler-revolution-card-body {
    transform: rotate(0.35deg);
}
.korhan-mustafa-imrak-hizmetler-revolution-card:hover .korhan-mustafa-imrak-hizmetler-revolution-card-body {
    transform: translateY(-4px) rotate(0deg);
    border-color: rgba(248, 113, 113, 0.42);
    box-shadow: 0 22px 48px -22px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-hizmetler-revolution-card .korhan-mustafa-imrak-hizmetler-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.55rem;
    background: var(--gradient-btn);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    color: #1a0505;
    font-size: 1.05rem;
    box-shadow: 0 8px 28px -6px rgba(239, 68, 68, 0.5);
}
.korhan-mustafa-imrak-hizmetler-revolution-card-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fafafa;
    margin: 0;
    line-height: 1.35;
}
.korhan-mustafa-imrak-hizmetler-revolution-cta.korhan-mustafa-imrak-btn-hizmetler {
    margin: 0 1.2rem;
    width: calc(100% - 2.4rem);
    justify-content: center;
    box-sizing: border-box;
}
.korhan-mustafa-imrak-hakkimizda-revolution-right {
    padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.35rem, 3vw, 2.5rem);
    background: linear-gradient(198deg, #080706 0%, #0c0a0a 40%, #050404 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-hakkimizda-revolution-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.82rem;
    width: fit-content;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.28);
    border-radius: 6px;
}
.korhan-mustafa-imrak-hakkimizda-revolution-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.55);
}
.korhan-mustafa-imrak-hakkimizda-revolution-title {
    font-size: clamp(1.45rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    color: #fafafa;
}
.korhan-mustafa-imrak-hakkimizda-revolution-title em {
    font-style: normal;
    background: linear-gradient(115deg, #fff 0%, #fecaca 42%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-hakkimizda-revolution-desc {
    color: rgba(212, 212, 216, 0.9);
    line-height: 1.75;
    margin-bottom: 1.35rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-content-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem 1.75rem;
    align-items: start;
    margin-bottom: 1.35rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav {
    margin: 0;
    padding: 0;
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav li {
    padding: 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav li:last-child {
    border-bottom: none;
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav li::before {
    content: none;
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.48rem 0;
    color: rgba(244, 244, 245, 0.9);
    text-decoration: none;
    font-size: 0.86rem;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    transition: color 0.25s ease, transform 0.25s ease;
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav a:hover {
    color: #fecaca;
    transform: translateX(3px);
}
.korhan-mustafa-imrak-hakkimizda-revolution-nav a i {
    width: 1.15rem;
    text-align: center;
    color: #ef4444;
    font-size: 0.85rem;
}
.korhan-mustafa-imrak-hakkimizda-revolution-stat {
    background: linear-gradient(148deg, rgba(239, 68, 68, 0.14) 0%, rgba(12, 10, 10, 0.92) 100%);
    border: 1px solid rgba(239, 68, 68, 0.32);
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    text-align: center;
    min-width: 116px;
    box-shadow: 0 20px 48px -24px rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-hakkimizda-revolution-stat .korhan-mustafa-imrak-num {
    display: block;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
}
.korhan-mustafa-imrak-hakkimizda-revolution-stat .korhan-mustafa-imrak-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(228, 228, 231, 0.72);
    letter-spacing: 0.12em;
    font-weight: 600;
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-title-accent {
    background: linear-gradient(135deg, #fecaca 0%, #ef4444 55%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-hakkimizda-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 1rem 0 1rem;
    color: var(--primary);
}
.korhan-mustafa-imrak-hakkimizda-title-accent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.korhan-mustafa-imrak-hakkimizda-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-revolution-title.korhan-mustafa-imrak-hakkimizda-title {
    color: #fafafa;
}
.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-revolution-desc.korhan-mustafa-imrak-hakkimizda-desc {
    color: rgba(212, 212, 216, 0.9);
}
@media (min-width: 1100px) {
    body.korhan-mustafa-imrak-home-v2 .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-hizmetler-wrap {
        grid-template-columns: 0.92fr 1.08fr;
    }
    body.korhan-mustafa-imrak-home-v2 .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-left {
        order: 2;
    }
    body.korhan-mustafa-imrak-home-v2 .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-right {
        order: 1;
    }
}
@media (max-width: 1024px) {
    .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-hizmetler-wrap {
        grid-template-columns: 1fr;
    }
    .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-left { order: 2; }
    .korhan-mustafa-imrak-hakkimizda-hizmetler-revolution .korhan-mustafa-imrak-hakkimizda-right {
        order: 1;
        padding: clamp(1.75rem, 4vw, 2.5rem) 1.25rem;
        border-left: none;
        border-bottom: 1px solid rgba(239, 68, 68, 0.12);
    }
    .korhan-mustafa-imrak-hakkimizda-revolution-portrait { max-width: 260px; }
}
@media (max-width: 640px) {
    .korhan-mustafa-imrak-hakkimizda-revolution-content-grid {
        grid-template-columns: 1fr;
    }
    .korhan-mustafa-imrak-hakkimizda-revolution-stat {
        justify-self: center;
        width: 100%;
        max-width: 280px;
    }
    .korhan-mustafa-imrak-hizmetler-revolution-panel-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-hizmetler-revolution-panel-grid .korhan-mustafa-imrak-hizmetler-revolution-card {
        max-width: 360px;
        width: 100%;
    }
}

/* ===== About ===== */
.korhan-mustafa-imrak-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.korhan-mustafa-imrak-about-list { list-style: none; }
.korhan-mustafa-imrak-about-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.korhan-mustafa-imrak-about-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    position: absolute;
    left: 0;
    color: var(--accent);
}
.korhan-mustafa-imrak-sayfalar-list { list-style: none; }
.korhan-mustafa-imrak-sayfalar-list li {
    padding: 0.45rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.korhan-mustafa-imrak-sayfalar-list li::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}
.korhan-mustafa-imrak-sayfalar-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
.korhan-mustafa-imrak-sayfalar-list a:hover {
    color: var(--accent);
}
.korhan-mustafa-imrak-stat-box { text-align: center; padding: 2rem; }
.korhan-mustafa-imrak-stat-box .korhan-mustafa-imrak-num {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.korhan-mustafa-imrak-stat-box .korhan-mustafa-imrak-label { font-size: 0.9rem; color: var(--muted); }
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box.korhan-mustafa-imrak-animate-on-scroll { transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }

/* ===== Stats Grid ===== */
.korhan-mustafa-imrak-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.korhan-mustafa-imrak-stats-grid {
    padding: 0 1rem;
}
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:nth-child(1) { transform: rotate(-1deg); }
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:nth-child(2) { transform: rotate(1.5deg); }
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:nth-child(3) { transform: rotate(-2deg); }
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:nth-child(4) { transform: rotate(1deg); }
.korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:hover {
    transform: translateY(-6px) rotate(0deg) !important;
    box-shadow: 0 20px 45px -15px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:nth-child(n) { transform: none; }
    .korhan-mustafa-imrak-stats-grid .korhan-mustafa-imrak-stat-box:hover { transform: translateY(-4px) !important; }
    .korhan-mustafa-imrak-about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .korhan-mustafa-imrak-stats-grid { grid-template-columns: 1fr; }
}

/* ===== İstatistikler — REVOLUTION (yalnızca anasayfa) ===== */
.korhan-mustafa-imrak-stats-revolution.korhan-mustafa-imrak-section-stats {
    position: relative;
    overflow: hidden;
    background: #060606;
    color: #fafafa;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
    padding: clamp(2.5rem, 5vw, 4.25rem) 1rem clamp(2.75rem, 5.5vw, 4.5rem);
}
.korhan-mustafa-imrak-stats-revolution.korhan-mustafa-imrak-section > * {
    max-width: none;
}
.korhan-mustafa-imrak-stats-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-stats-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 172deg at 48% 38%,
            transparent 0deg,
            rgba(239, 68, 68, 0.09) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.13) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.055) 312deg,
            transparent 360deg);
    animation: korhanStatsRevBeams 37s linear infinite;
    opacity: 0.88;
}
@keyframes korhanStatsRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-stats-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 74% 68% at 50% 32%, transparent 14%, rgba(0, 0, 0, 0.78) 100%);
}
.korhan-mustafa-imrak-stats-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.16) 3px,
        rgba(0, 0, 0, 0.16) 4px
    );
    opacity: 0.28;
    mix-blend-mode: multiply;
    animation: korhanStatsRevScan 14s linear infinite;
}
@keyframes korhanStatsRevScan {
    0%, 100% { opacity: 0.22; }
    50% { opacity: 0.34; }
}
.korhan-mustafa-imrak-stats-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
    mask-image: radial-gradient(ellipse 88% 72% at 50% 35%, black 20%, transparent 76%);
}
.korhan-mustafa-imrak-stats-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-stats-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
    margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
}
.korhan-mustafa-imrak-stats-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-stats-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-stats-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanStatsRevPulse 2.35s ease-out infinite;
}
@keyframes korhanStatsRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-stats-revolution-title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.75rem, 3.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-stats-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-stats-revolution-lead {
    margin: 0;
    max-width: 36rem;
    font-size: 0.97rem;
    line-height: 1.65;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-stats-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-stats-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-stats-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-stats-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-stats-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-stats-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-stats-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-stats-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-stats-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-grid {
    margin: 0;
    margin-top: 0;
    padding: 0;
    gap: 1.25rem;
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 20px 50px -28px rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow:
        0 28px 64px -28px rgba(239, 68, 68, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat .korhan-mustafa-imrak-num {
    background: linear-gradient(118deg, #fecaca 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat .korhan-mustafa-imrak-label {
    color: rgba(212, 212, 216, 0.85);
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-scale:not(.korhan-mustafa-imrak-visible) {
    transform: translateY(40px) scale(0.95);
}
.korhan-mustafa-imrak-stats-revolution .korhan-mustafa-imrak-stats-revolution-stat.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-scale.korhan-mustafa-imrak-visible {
    transform: translateY(0) scale(1);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-stats-revolution-head {
        grid-template-columns: 1fr;
    }
}

/* ===== Misyon & vizyon — spec / metrik kartları (yeni düzen) ===== */
.korhan-mustafa-imrak-section-misyon.korhan-mustafa-imrak-section-misyon-spec,
.korhan-mustafa-imrak-section-misyon {
    padding: 0;
    border-top: none;
    background: #09090b;
    overflow: hidden;
}
.korhan-mustafa-imrak-section-misyon-spec::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #7f1d1d, #ef4444 45%, #fca5a5 70%, transparent);
    opacity: 0.9;
}
.korhan-mustafa-imrak-section-misyon .korhan-mustafa-imrak-misyon-wrap {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2rem) clamp(2.75rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}
.korhan-mustafa-imrak-misyon-head {
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid rgba(220, 38, 38, 0.85);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}
.korhan-mustafa-imrak-section-misyon.korhan-mustafa-imrak-visible .korhan-mustafa-imrak-misyon-head {
    opacity: 1;
    transform: translateX(0);
}
.korhan-mustafa-imrak-section-misyon-spec .korhan-mustafa-imrak-misyon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 113, 113, 0.95);
}
.korhan-mustafa-imrak-section-misyon .korhan-mustafa-imrak-misyon-badge .korhan-mustafa-imrak-badge-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}
.korhan-mustafa-imrak-misyon-title {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 1rem;
    color: #fafafa;
    letter-spacing: -0.03em;
    max-width: 20ch;
}
.korhan-mustafa-imrak-misyon-title-kicker {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a1a1aa;
    margin-bottom: 0.35rem;
}
.korhan-mustafa-imrak-misyon-title-accent {
    color: #f87171;
    background: linear-gradient(135deg, #fca5a5 0%, #ef4444 55%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-section-misyon .korhan-mustafa-imrak-misyon-desc {
    margin: 0;
    max-width: 52ch;
    color: #a1a1aa;
    line-height: 1.75;
    font-size: 1.02rem;
}
.korhan-mustafa-imrak-misyon-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.35rem);
}
.korhan-mustafa-imrak-misyon-stat {
    position: relative;
    padding: 1.35rem 1.35rem 1.5rem;
    background: linear-gradient(165deg, rgba(24, 24, 27, 0.95) 0%, rgba(12, 12, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 40px -28px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo), border-color 0.3s ease;
}
.korhan-mustafa-imrak-misyon-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.35rem;
    right: 1.35rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.45), transparent);
    border-radius: 2px;
    opacity: 0.85;
}
.korhan-mustafa-imrak-misyon-stat.korhan-mustafa-imrak-visible {
    opacity: 1;
    transform: translateY(0);
}
.korhan-mustafa-imrak-misyon-stat:hover {
    border-color: rgba(220, 38, 38, 0.22);
}
.korhan-mustafa-imrak-misyon-stat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-misyon-stat-index {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(244, 244, 245, 0.35);
}
.korhan-mustafa-imrak-misyon-stat-pct {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.85rem;
    font-weight: 700;
    color: #fafafa;
    line-height: 1;
    letter-spacing: -0.04em;
}
.korhan-mustafa-imrak-misyon-stat-pct-sym {
    font-size: 0.55em;
    font-weight: 600;
    color: #f87171;
    margin-left: 0.08em;
}
.korhan-mustafa-imrak-misyon-stat-bar {
    height: 5px;
    margin-bottom: 1.1rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.korhan-mustafa-imrak-misyon-stat-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #991b1b, #ef4444 50%, #fca5a5);
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.35);
    transition: width 1.15s var(--ease-out-expo);
}
.korhan-mustafa-imrak-misyon-stat.korhan-mustafa-imrak-visible .korhan-mustafa-imrak-misyon-stat-bar-fill {
    width: calc(var(--yuzde, 90) * 1%);
}
.korhan-mustafa-imrak-misyon-stat.korhan-mustafa-imrak-delay-1 .korhan-mustafa-imrak-misyon-stat-bar-fill { transition-delay: 0.15s; }
.korhan-mustafa-imrak-misyon-stat.korhan-mustafa-imrak-delay-2 .korhan-mustafa-imrak-misyon-stat-bar-fill { transition-delay: 0.35s; }
.korhan-mustafa-imrak-misyon-stat.korhan-mustafa-imrak-delay-3 .korhan-mustafa-imrak-misyon-stat-bar-fill { transition-delay: 0.55s; }
.korhan-mustafa-imrak-misyon-stat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #f4f4f5;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-misyon-stat-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a1a1aa;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-misyon-stats { grid-template-columns: 1fr; }
    .korhan-mustafa-imrak-misyon-title { max-width: none; }
}
@media (max-width: 480px) {
    .korhan-mustafa-imrak-misyon-head { padding-left: 1rem; }
    .korhan-mustafa-imrak-misyon-stat { padding: 1.15rem 1.15rem 1.35rem; }
}

/* ===== Vision Grid ===== */
.korhan-mustafa-imrak-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.korhan-mustafa-imrak-vision-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.korhan-mustafa-imrak-vision-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.korhan-mustafa-imrak-vision-card .korhan-mustafa-imrak-vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    background: var(--gradient-btn);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
}
.korhan-mustafa-imrak-vision-card h4 { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-vision-card p { margin: 0; font-size: 0.95rem; }
@media (max-width: 768px) {
    .korhan-mustafa-imrak-vision-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-vision-card {
        max-width: 360px;
        width: 100%;
    }
}

/* ===== Ayrıcalıklar — REVOLUTION (matrix + terminal + neon sahne) ===== */
.korhan-mustafa-imrak-section-ayricaliklar {
    background: var(--bg-beige);
}
.korhan-mustafa-imrak-section-ayricaliklar-devrim {
    position: relative;
    overflow: hidden;
    background: #060606;
    color: #f4f4f5;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(3.5rem, 7vw, 5.5rem);
}
.korhan-mustafa-imrak-ayricalik-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-ayricalik-revolution-beams {
    position: absolute;
    inset: -70%;
    background:
        conic-gradient(from 200deg at 50% 50%,
            transparent 0deg,
            rgba(239, 68, 68, 0.14) 48deg,
            transparent 92deg,
            rgba(127, 29, 29, 0.2) 160deg,
            transparent 220deg,
            rgba(239, 68, 68, 0.08) 300deg,
            transparent 360deg);
    animation: korhanAyricalikRevBeams 32s linear infinite;
    opacity: 0.85;
}
@keyframes korhanAyricalikRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-ayricalik-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 65% at 50% 40%, transparent 20%, rgba(0, 0, 0, 0.75) 100%);
}
.korhan-mustafa-imrak-ayricalik-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.22) 3px,
        rgba(0, 0, 0, 0.22) 4px
    );
    opacity: 0.35;
    mix-blend-mode: multiply;
    animation: korhanAyricalikRevScan 14s linear infinite;
}
@keyframes korhanAyricalikRevScan {
    0% { opacity: 0.28; }
    50% { opacity: 0.4; }
    100% { opacity: 0.28; }
}
.korhan-mustafa-imrak-ayricalik-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(105deg, rgba(239, 68, 68, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, black 25%, transparent 75%);
}
.korhan-mustafa-imrak-ayricalik-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-ayricalik-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 2rem 2.5rem;
    align-items: end;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.korhan-mustafa-imrak-ayricalik-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-ayricalik-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(252, 165, 165, 0.95);
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 6px;
    box-shadow: 0 0 24px -8px rgba(239, 68, 68, 0.45);
}
.korhan-mustafa-imrak-ayricalik-revolution-eyebrow-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    animation: korhanAyricalikRevPulse 2.2s ease-out infinite;
}
@keyframes korhanAyricalikRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-ayricalik-revolution-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 4.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fafafa;
}
.korhan-mustafa-imrak-ayricalik-revolution-title em {
    font-style: normal;
    background: linear-gradient(120deg, #fff 0%, #fecaca 45%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-ayricalik-revolution-lead {
    margin: 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(228, 228, 231, 0.85);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.28);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 28px 60px -28px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(239, 68, 68, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-bar span:nth-child(1) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    opacity: 0.9;
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-bar span:nth-child(2) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.75);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-bar span:nth-child(3) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.55);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.62rem;
    color: rgba(244, 244, 245, 0.55);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-body {
    padding: 1rem 1rem 1.15rem 1.1rem;
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-ayricalik-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
@media (max-width: 899px) {
    .korhan-mustafa-imrak-ayricalik-revolution-head {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-section-ayricaliklar-devrim {
        padding: 3rem 1rem 4rem;
    }
}

/* ===== Privilege matrix (anasayfa ayrıcalıklar) ===== */
.korhan-mustafa-imrak-privilege-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 0;
}
.korhan-mustafa-imrak-privilege-grid.korhan-mustafa-imrak-privilege-devrim.korhan-mustafa-imrak-privilege-matrix {
    margin-top: 0;
    gap: 1.15rem;
}
.korhan-mustafa-imrak-privilege-matrix-card {
    position: relative;
    border-radius: 0;
    overflow: visible;
    isolation: isolate;
}
.korhan-mustafa-imrak-privilege-card-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.15) 55%, transparent 100%);
    border-radius: 2px;
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.korhan-mustafa-imrak-privilege-matrix-card:hover .korhan-mustafa-imrak-privilege-card-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-privilege-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 148px;
    box-sizing: border-box;
    text-align: left;
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
    background: linear-gradient(145deg, rgba(18, 18, 20, 0.92) 0%, rgba(8, 8, 10, 0.94) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 2px 10px 10px 2px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    box-shadow:
        0 22px 48px -28px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(239, 68, 68, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform 0.45s var(--ease-out-expo),
        border-color 0.35s ease,
        box-shadow 0.45s ease;
}
.korhan-mustafa-imrak-privilege-matrix-card:hover .korhan-mustafa-imrak-privilege-card-inner {
    transform: translateY(-5px);
    border-color: rgba(248, 113, 113, 0.45);
    box-shadow:
        0 32px 64px -28px rgba(239, 68, 68, 0.22),
        0 0 48px -18px rgba(239, 68, 68, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.korhan-mustafa-imrak-privilege-matrix-card:nth-child(odd) .korhan-mustafa-imrak-privilege-card-inner {
    transform: rotate(-0.35deg);
}
.korhan-mustafa-imrak-privilege-matrix-card:nth-child(even) .korhan-mustafa-imrak-privilege-card-inner {
    transform: rotate(0.35deg);
}
.korhan-mustafa-imrak-privilege-matrix-card:nth-child(odd):hover .korhan-mustafa-imrak-privilege-card-inner,
.korhan-mustafa-imrak-privilege-matrix-card:nth-child(even):hover .korhan-mustafa-imrak-privilege-card-inner {
    transform: translateY(-5px) rotate(0deg);
}
.korhan-mustafa-imrak-privilege-matrix-card.korhan-mustafa-imrak-privilege-card--matrix-featured .korhan-mustafa-imrak-privilege-card-inner {
    transform: none;
}
.korhan-mustafa-imrak-privilege-matrix-card.korhan-mustafa-imrak-privilege-card--matrix-featured:hover .korhan-mustafa-imrak-privilege-card-inner {
    transform: translateY(-5px);
}
.korhan-mustafa-imrak-privilege-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
    background: var(--gradient-btn);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 0;
    color: #1a0505;
    font-size: 1.25rem;
    box-shadow: 0 10px 32px -6px rgba(239, 68, 68, 0.55);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.35s ease;
}
.korhan-mustafa-imrak-privilege-matrix-card:hover .korhan-mustafa-imrak-privilege-icon {
    transform: scale(1.08) rotate(-8deg);
    box-shadow: 0 16px 40px -6px rgba(239, 68, 68, 0.65);
}
.korhan-mustafa-imrak-privilege-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fafafa;
}
.korhan-mustafa-imrak-privilege-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(212, 212, 216, 0.82);
}
@media (min-width: 900px) {
    .korhan-mustafa-imrak-privilege-card--matrix-featured .korhan-mustafa-imrak-privilege-card-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1rem 1.35rem;
        min-height: 132px;
        padding: 1.5rem 1.75rem 1.5rem 1.65rem;
    }
    .korhan-mustafa-imrak-privilege-card--matrix-featured .korhan-mustafa-imrak-privilege-icon {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.45rem;
    }
    .korhan-mustafa-imrak-privilege-card--matrix-featured .korhan-mustafa-imrak-privilege-title {
        font-size: 1.2rem;
    }
    .korhan-mustafa-imrak-privilege-card--matrix-featured {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-privilege-grid.korhan-mustafa-imrak-privilege-devrim.korhan-mustafa-imrak-privilege-matrix {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .korhan-mustafa-imrak-privilege-matrix-card,
    .korhan-mustafa-imrak-privilege-card {
        max-width: 420px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .korhan-mustafa-imrak-privilege-card-inner {
        min-height: 0;
    }
}
/* Eski privilege-item (geriye uyumluluk) */
.korhan-mustafa-imrak-privilege-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition);
}
.korhan-mustafa-imrak-privilege-item:hover { transform: translateY(-2px); }
.korhan-mustafa-imrak-privilege-item h4 { font-size: 0.95rem; }

/* ===== Referanslar — REVOLUTION (portfolio sahnesi) ===== */
.korhan-mustafa-imrak-referanslar-revolution {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5rem);
    background: #060606;
    color: #f4f4f5;
    text-align: left;
    overflow: hidden;
}
.korhan-mustafa-imrak-referanslar-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-referanslar-revolution-beams {
    position: absolute;
    inset: -68%;
    background:
        conic-gradient(from 190deg at 48% 45%,
            transparent 0deg,
            rgba(239, 68, 68, 0.12) 50deg,
            transparent 95deg,
            rgba(127, 29, 29, 0.17) 165deg,
            transparent 235deg,
            rgba(239, 68, 68, 0.08) 305deg,
            transparent 360deg);
    animation: korhanReferanslarRevBeams 34s linear infinite;
    opacity: 0.88;
}
@keyframes korhanReferanslarRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-referanslar-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 78% 68% at 50% 38%, transparent 18%, rgba(0, 0, 0, 0.74) 100%);
}
.korhan-mustafa-imrak-referanslar-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.19) 3px,
        rgba(0, 0, 0, 0.19) 4px
    );
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: korhanReferanslarRevScan 15s linear infinite;
}
@keyframes korhanReferanslarRevScan {
    0%, 100% { opacity: 0.26; }
    50% { opacity: 0.37; }
}
.korhan-mustafa-imrak-referanslar-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(102deg, rgba(239, 68, 68, 0.034) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 90% 74% at 50% 44%, black 20%, transparent 78%);
}
.korhan-mustafa-imrak-referanslar-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-referanslar-revolution-shell-sayfa {
    max-width: 1280px;
}
.korhan-mustafa-imrak-referanslar-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem 2.5rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.korhan-mustafa-imrak-referanslar-revolution-head-sayfa-full {
    align-items: start;
}
.korhan-mustafa-imrak-referanslar-sayfa-revolution-cta-row {
    margin-top: 1rem;
    justify-content: flex-start;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-revolution-stats {
    margin: 0 auto clamp(1.25rem, 2.5vw, 1.85rem);
    max-width: 900px;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-revolution-stat {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-yorumlar-stat-num {
    background: linear-gradient(118deg, #fecaca 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-yorumlar-stat-label {
    color: rgba(212, 212, 216, 0.82);
}
.korhan-mustafa-imrak-referanslar-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.32);
    border-radius: 6px;
}
.korhan-mustafa-imrak-referanslar-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanReferanslarRevPulse 2.3s ease-out infinite;
}
@keyframes korhanReferanslarRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-referanslar-revolution-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.6rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fafafa;
}
.korhan-mustafa-imrak-referanslar-revolution-title-sayfa {
    font-size: clamp(1.75rem, 4.5vw, 2.65rem);
}
.korhan-mustafa-imrak-referanslar-revolution-title em {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-referanslar-revolution-lead {
    margin: 0;
    max-width: 36rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(228, 228, 231, 0.86);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-body {
    padding: 0.95rem 1rem 1.05rem 1.05rem;
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-referanslar-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-referanslar-revolution-grid {
    margin-top: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}
.korhan-mustafa-imrak-referans-card-revolution {
    position: relative;
    isolation: isolate;
    overflow: visible;
    border-radius: 0;
}
.korhan-mustafa-imrak-referans-card-revolution-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.12) 70%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.88;
    transition: opacity 0.3s ease;
}
.korhan-mustafa-imrak-referans-card-revolution:hover .korhan-mustafa-imrak-referans-card-revolution-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-referans-card-revolution .korhan-mustafa-imrak-referans-card-inner {
    margin-left: 3px;
    padding: 1.35rem 1.35rem 1.5rem;
    border-radius: 2px 14px 14px 2px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    background: linear-gradient(148deg, rgba(18, 17, 18, 0.94) 0%, rgba(7, 7, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow:
        0 24px 56px -28px rgba(0, 0, 0, 0.82),
        0 0 0 1px rgba(239, 68, 68, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.korhan-mustafa-imrak-referans-card-revolution .korhan-mustafa-imrak-referans-card-img {
    height: 168px;
    margin-bottom: 1.1rem;
    border-radius: 4px 12px 12px 4px;
    border: 1px solid rgba(239, 68, 68, 0.12);
    background: rgba(0, 0, 0, 0.35);
}
.korhan-mustafa-imrak-referans-card-revolution .korhan-mustafa-imrak-referans-placeholder {
    color: rgba(248, 113, 113, 0.45);
    opacity: 1;
    font-size: 3rem;
}
.korhan-mustafa-imrak-referans-card-revolution .korhan-mustafa-imrak-referans-site-adi {
    color: #fafafa;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-referans-btn-revolution {
    font-size: 0.92rem;
    padding: 0.7rem 1.35rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.korhan-mustafa-imrak-referanslar-revolution-footer-cta {
    text-align: center;
    margin-top: 2.25rem;
    margin-bottom: 0;
}
.korhan-mustafa-imrak-referanslar-revolution-outline-btn {
    border-width: 1px;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-inner {
    position: relative;
    z-index: 1;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-grid {
    margin-top: 0;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-pagination-info {
    color: rgba(212, 212, 216, 0.78);
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-empty {
    background: linear-gradient(145deg, rgba(16, 14, 14, 0.9) 0%, rgba(6, 6, 7, 0.95) 100%);
    border-color: rgba(239, 68, 68, 0.28);
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-empty h3 {
    color: #fafafa;
}
.korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-empty p {
    color: rgba(200, 200, 210, 0.85);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-referanslar-revolution-head {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-revolution-stats {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-referanslar-revolution-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-referanslar-revolution .korhan-mustafa-imrak-referans-card {
        max-width: 400px;
        width: 100%;
    }
    .korhan-mustafa-imrak-referanslar-revolution-sayfa .korhan-mustafa-imrak-referanslar-sayfa-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* ===== Genel iç sayfalar — REVOLUTION (hizmetler, hakkımızda, iletişim, sayfa.php, yorum, script detay) ===== */
.korhan-mustafa-imrak-sayfa-genel-revolution.korhan-mustafa-imrak-referanslar-revolution .korhan-mustafa-imrak-referanslar-sayfa-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-referanslar-sayfa-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-sayfa-content-card-revolution {
    position: relative;
    border-radius: 2px 20px 20px 2px;
    padding: 2.5rem 2.5rem 2.5rem calc(2.5rem + 4px);
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-sayfa-content-card-revolution-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.18) 60%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}
.korhan-mustafa-imrak-sayfa-content-card-revolution:hover .korhan-mustafa-imrak-sayfa-content-card-revolution-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik,
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik p {
    color: rgba(228, 228, 231, 0.9);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik a {
    color: #fecaca;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik a:hover {
    color: #fff;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik h1,
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik h2,
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik h3,
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-icerik h4 {
    color: #fafafa;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmetler-grid {
    max-width: 1100px;
}
.korhan-mustafa-imrak-sayfa-hizmet-card-revolution-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.18) 60%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-card-revolution {
    position: relative;
    text-align: left;
    border-radius: 2px 16px 16px 2px;
    padding: 1.75rem 1.75rem 1.75rem calc(1.75rem + 4px);
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-card-revolution:hover {
    border-color: rgba(239, 68, 68, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-card-revolution:hover .korhan-mustafa-imrak-sayfa-hizmet-card-revolution-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-card-revolution h3 {
    color: #fafafa;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-card-revolution p {
    color: rgba(212, 212, 216, 0.85);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-hizmet-icon {
    background: rgba(239, 68, 68, 0.22);
    color: #fecaca;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-cta-wrap {
    margin-top: 2rem;
    text-align: center;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-form-section {
    padding: 0;
    background: transparent;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-info-card,
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-form-card {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #e4e4e7;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-info-card h3 {
    color: #fecaca;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-info-card a {
    color: #fecaca;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-iletisim-info-card a:hover {
    color: #fff;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-yorum-form-devrim .korhan-mustafa-imrak-yorum-form-group label {
    color: rgba(228, 228, 231, 0.92);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-genel-revolution-stats {
    margin: 0 auto clamp(1.25rem, 2.5vw, 1.85rem);
    max-width: 900px;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-genel-revolution-stat {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-genel-revolution-stats .korhan-mustafa-imrak-yorumlar-stat-num {
    background: linear-gradient(118deg, #fecaca 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-genel-revolution-stats .korhan-mustafa-imrak-yorumlar-stat-label {
    color: rgba(212, 212, 216, 0.82);
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-yorum-gonder-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-yorum-gonder-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}
.korhan-mustafa-imrak-yorum-gonder-card-shell {
    position: relative;
    border-radius: 2px 20px 20px 2px;
    padding: 2.25rem 2.25rem 2.25rem calc(2.25rem + 4px);
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-yorum-gonder-card-shell .korhan-mustafa-imrak-sayfa-content-card-revolution-rail {
    border-radius: 2px;
}
.korhan-mustafa-imrak-script-detay-revolution-inner {
    max-width: 860px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-script-detay-revolution-inner .korhan-mustafa-imrak-yazi-container {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}
.korhan-mustafa-imrak-script-detay-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(254, 202, 202, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
}
.korhan-mustafa-imrak-script-detay-back:hover {
    color: #fff;
}
.korhan-mustafa-imrak-script-detay-article {
    position: relative;
    border-radius: 2px 20px 20px 2px;
    padding: 2rem 2rem 2.25rem calc(2rem + 4px);
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-sayfa-content-card-revolution-rail {
    border-radius: 2px;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-baslik {
    color: #fafafa;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-tarih {
    color: rgba(212, 212, 216, 0.78);
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-fiyat {
    color: #fecaca;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0.75rem 0;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-icerik {
    color: rgba(228, 228, 231, 0.9);
    line-height: 1.75;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-icerik a {
    color: #fecaca;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-kapak {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-script-detay-article .korhan-mustafa-imrak-yazi-kapak img {
    border-radius: 12px;
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-sayfa-genel-revolution .korhan-mustafa-imrak-sayfa-genel-revolution-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== Referanslar — taban (revolution dışı) ===== */
.korhan-mustafa-imrak-section-referanslar:not(.korhan-mustafa-imrak-referanslar-revolution) {
    background: var(--bg-beige);
    text-align: center;
}
.korhan-mustafa-imrak-referanslar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-referanslar-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-referans-card {
        max-width: 360px;
        width: 100%;
    }
}
.korhan-mustafa-imrak-referanslar-anasayfa-link {
    margin-top: 2.5rem;
    margin-bottom: 0;
}
.korhan-mustafa-imrak-referans-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}
.korhan-mustafa-imrak-referans-card-inner {
    background: linear-gradient(135deg, rgba(22, 18, 18, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 68, 68, 0.05);
}
.korhan-mustafa-imrak-referans-card:hover .korhan-mustafa-imrak-referans-card-inner {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 35px 80px -25px rgba(239, 68, 68, 0.35), 0 0 60px -20px rgba(239, 68, 68, 0.2);
    transform: translateY(-12px);
}
.korhan-mustafa-imrak-referans-card.korhan-mustafa-imrak-referans-card-revolution {
    overflow: visible;
    border-radius: 0;
}
.korhan-mustafa-imrak-referans-card.korhan-mustafa-imrak-referans-card-revolution:hover .korhan-mustafa-imrak-referans-card-inner {
    border-color: rgba(248, 113, 113, 0.42);
    box-shadow:
        0 32px 64px -28px rgba(239, 68, 68, 0.2),
        0 0 48px -20px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
}
.korhan-mustafa-imrak-referans-card-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.6);
}
.korhan-mustafa-imrak-referans-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.korhan-mustafa-imrak-referans-placeholder {
    font-size: 4rem;
    color: var(--muted);
    opacity: 0.5;
}
.korhan-mustafa-imrak-referans-site-adi {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-referans-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    padding: 0.85rem 1.75rem;
}

/* Referanslar sayfası - sayfalama & boş durum */
.korhan-mustafa-imrak-section-referanslar-sayfa .korhan-mustafa-imrak-referanslar-sayfa-inner { max-width: 1280px; margin: 0 auto; }
.korhan-mustafa-imrak-referanslar-mesaj-success {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 12px;
    color: #fda4af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-referanslar-sayfa-grid { margin-bottom: 3rem; }
.korhan-mustafa-imrak-referanslar-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(22, 18, 18, 0.6) 0%, rgba(10, 10, 10, 0.7) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}
.korhan-mustafa-imrak-referanslar-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
}
.korhan-mustafa-imrak-referanslar-empty h3 { margin: 0 0 0.5rem; color: var(--primary); }
.korhan-mustafa-imrak-referanslar-empty p { color: var(--muted); margin: 0 0 1rem; }
.korhan-mustafa-imrak-referanslar-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}
.korhan-mustafa-imrak-referanslar-pagination-info {
    font-size: 0.95rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-referanslar-pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-referanslar-pagination-btn,
.korhan-mustafa-imrak-referanslar-pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    background: rgba(22, 18, 18, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}
.korhan-mustafa-imrak-referanslar-pagination-btn:hover:not(.korhan-mustafa-imrak-disabled),
.korhan-mustafa-imrak-referanslar-pagination-num:hover:not(.korhan-mustafa-imrak-active) {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent);
}
.korhan-mustafa-imrak-referanslar-pagination-num.korhan-mustafa-imrak-active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.2));
    border-color: rgba(239, 68, 68, 0.5);
    color: var(--accent);
}
.korhan-mustafa-imrak-referanslar-pagination-btn.korhan-mustafa-imrak-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.korhan-mustafa-imrak-referanslar-pagination-numbers { display: flex; gap: 0.35rem; }

/* ===== Team Grid ===== */
.korhan-mustafa-imrak-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.korhan-mustafa-imrak-team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.korhan-mustafa-imrak-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.korhan-mustafa-imrak-team-card h4 { margin-bottom: 0.25rem; }
.korhan-mustafa-imrak-team-card .korhan-mustafa-imrak-role { font-size: 0.85rem; color: var(--accent); }
@media (max-width: 768px) {
    .korhan-mustafa-imrak-team-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-team-card {
        max-width: 360px;
        width: 100%;
    }
}

/* ===== Uzman Kadro — REVOLUTION ===== */
.korhan-mustafa-imrak-uzman-revolution.korhan-mustafa-imrak-section-uzman {
    background: #060606;
    text-align: left;
}
.korhan-mustafa-imrak-uzman-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-uzman-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 175deg at 42% 42%,
            transparent 0deg,
            rgba(239, 68, 68, 0.11) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.16) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.07) 312deg,
            transparent 360deg);
    animation: korhanUzmanRevBeams 35s linear infinite;
    opacity: 0.9;
}
@keyframes korhanUzmanRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-uzman-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 76% 70% at 50% 36%, transparent 16%, rgba(0, 0, 0, 0.76) 100%);
}
.korhan-mustafa-imrak-uzman-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.18) 3px,
        rgba(0, 0, 0, 0.18) 4px
    );
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: korhanUzmanRevScan 15s linear infinite;
}
@keyframes korhanUzmanRevScan {
    0%, 100% { opacity: 0.26; }
    50% { opacity: 0.37; }
}
.korhan-mustafa-imrak-uzman-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.032) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 90% 76% at 50% 40%, black 18%, transparent 78%);
}
.korhan-mustafa-imrak-uzman-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-uzman-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.35rem);
}
.korhan-mustafa-imrak-uzman-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-uzman-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-uzman-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanUzmanRevPulse 2.35s ease-out infinite;
}
@keyframes korhanUzmanRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-uzman-revolution-heading.korhan-mustafa-imrak-uzman-main-title {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}
.korhan-mustafa-imrak-uzman-revolution-em {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-uzman-revolution .korhan-mustafa-imrak-uzman-subtitle {
    color: rgba(250, 250, 250, 0.96);
}
.korhan-mustafa-imrak-uzman-revolution-lead.korhan-mustafa-imrak-uzman-desc {
    max-width: 38rem;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-uzman-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-uzman-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-uzman-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-uzman-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-uzman-revolution-empty-msg {
    margin: 0;
    color: rgba(228, 228, 231, 0.82);
    font-size: 0.95rem;
}
.korhan-mustafa-imrak-uzman-revolution-swiper-wrap.korhan-mustafa-imrak-uzman-swiper-wrap {
    max-width: 100%;
    padding: 0 3.75rem;
    margin-top: 0.25rem;
}
.korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution .korhan-mustafa-imrak-uzman-profile-card-revolution-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.15) 65%, transparent 100%);
    border-radius: 2px;
    z-index: 4;
    pointer-events: none;
    opacity: 0.9;
}
.korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution:hover .korhan-mustafa-imrak-uzman-profile-card-revolution-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution {
    border-radius: 2px 22px 22px 2px;
    border: 1px solid rgba(239, 68, 68, 0.28) !important;
    box-shadow:
        0 28px 64px -28px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(239, 68, 68, 0.06);
}
.korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution .korhan-mustafa-imrak-uzman-profile-bg {
    left: 3px;
    border-radius: 0 20px 20px 0;
}
.korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution .korhan-mustafa-imrak-uzman-profile-overlay {
    left: 3px;
    border-radius: 0 20px 20px 0;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-card.korhan-mustafa-imrak-uzman-profile-card-revolution:hover {
    transform: translateY(-14px);
    border-color: rgba(248, 113, 113, 0.48) !important;
    box-shadow:
        0 40px 88px -32px rgba(239, 68, 68, 0.28),
        0 0 56px -22px rgba(239, 68, 68, 0.18);
}
.korhan-mustafa-imrak-uzman-revolution .korhan-mustafa-imrak-uzman-profile-content h3 {
    font-size: 1.22rem;
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-uzman-revolution-head {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-uzman-revolution.korhan-mustafa-imrak-section-uzman-devrim {
        padding: 1.75rem 1rem 2rem;
    }
    .korhan-mustafa-imrak-uzman-revolution-swiper-wrap.korhan-mustafa-imrak-uzman-swiper-wrap {
        padding: 0 0.75rem;
    }
    .korhan-mustafa-imrak-uzman-revolution-heading.korhan-mustafa-imrak-uzman-main-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Yazılımlarımız (anasayfa) — REVOLUTION ===== */
.korhan-mustafa-imrak-yazilimlar-revolution.korhan-mustafa-imrak-section {
    position: relative;
    overflow: hidden;
    background: #060606;
    color: #fafafa;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5rem);
}
.korhan-mustafa-imrak-yazilimlar-revolution.korhan-mustafa-imrak-section > * {
    max-width: none;
}
.korhan-mustafa-imrak-yazilimlar-revolution.korhan-mustafa-imrak-section h1,
.korhan-mustafa-imrak-yazilimlar-revolution.korhan-mustafa-imrak-section h2,
.korhan-mustafa-imrak-yazilimlar-revolution.korhan-mustafa-imrak-section h3 {
    color: #fafafa;
}
.korhan-mustafa-imrak-yazilimlar-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-yazilimlar-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 165deg at 38% 40%,
            transparent 0deg,
            rgba(239, 68, 68, 0.1) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.14) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.06) 312deg,
            transparent 360deg);
    animation: korhanYazilimRevBeams 38s linear infinite;
    opacity: 0.9;
}
@keyframes korhanYazilimRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-yazilimlar-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 78% 72% at 50% 38%, transparent 14%, rgba(0, 0, 0, 0.78) 100%);
}
.korhan-mustafa-imrak-yazilimlar-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.16) 3px,
        rgba(0, 0, 0, 0.16) 4px
    );
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: korhanYazilimRevScan 16s linear infinite;
}
@keyframes korhanYazilimRevScan {
    0%, 100% { opacity: 0.24; }
    50% { opacity: 0.36; }
}
.korhan-mustafa-imrak-yazilimlar-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 92% 78% at 50% 42%, black 16%, transparent 78%);
}
.korhan-mustafa-imrak-yazilimlar-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yazilimlar-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.korhan-mustafa-imrak-yazilimlar-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-yazilimlar-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-yazilimlar-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanYazilimRevPulse 2.35s ease-out infinite;
}
@keyframes korhanYazilimRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-yazilimlar-revolution-title {
    margin: 0 0 0.65rem;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-yazilimlar-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-yazilimlar-revolution-lead {
    max-width: 38rem;
    margin: 0 0 1.15rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yazilimlar-revolution-cta-row {
    justify-content: flex-start;
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-yazilimlar-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yazilimlar-revolution-stats {
    margin: clamp(1.25rem, 2.5vw, 1.85rem) auto 0;
    max-width: 900px;
}
.korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yazilimlar-revolution-stat {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yorumlar-stat-num {
    background: linear-gradient(118deg, #fecaca 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yorumlar-stat-label {
    color: rgba(212, 212, 216, 0.82);
}
.korhan-mustafa-imrak-yazilimlar-revolution-main {
    padding-top: clamp(2rem, 4vw, 2.75rem);
    margin: 0 auto;
    max-width: 1200px;
}
.korhan-mustafa-imrak-yazilimlar-revolution-subhead {
    text-align: left;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.korhan-mustafa-imrak-yazilimlar-revolution-subhead-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(252, 165, 165, 0.88);
    margin: 0 0 0.45rem;
}
.korhan-mustafa-imrak-yazilimlar-revolution-subhead-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-yazilimlar-revolution-main .korhan-mustafa-imrak-yorumlar-section-sub {
    margin: 0;
    max-width: 38rem;
    color: rgba(228, 228, 231, 0.85);
    text-align: left;
}
.korhan-mustafa-imrak-yazilimlar-revolution-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.75rem;
}
.korhan-mustafa-imrak-yorumlar-card-yazilim-revolution,
.korhan-mustafa-imrak-yorumlar-card-blog-revolution {
    position: relative;
    border-radius: 2px 20px 20px 2px;
    padding-left: calc(2.5rem + 4px);
}
.korhan-mustafa-imrak-yorumlar-card-revolution-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.18) 60%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}
.korhan-mustafa-imrak-yorumlar-card-yazilim-revolution:hover .korhan-mustafa-imrak-yorumlar-card-revolution-rail,
.korhan-mustafa-imrak-yorumlar-card-blog-revolution:hover .korhan-mustafa-imrak-yorumlar-card-revolution-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-yazilimlar-revolution-empty {
    background: linear-gradient(165deg, rgba(14, 14, 16, 0.75) 0%, rgba(8, 8, 10, 0.9) 100%);
    border: 1px dashed rgba(239, 68, 68, 0.32);
    color: rgba(244, 244, 245, 0.92);
}
.korhan-mustafa-imrak-yazilimlar-revolution-empty h3 {
    color: #fafafa;
}
.korhan-mustafa-imrak-yazilimlar-revolution-empty p {
    color: rgba(212, 212, 216, 0.85);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-yazilimlar-revolution-head {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-yazilimlar-revolution .korhan-mustafa-imrak-yazilimlar-revolution-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== Anasayfa — Yazılımlar altı CTA (mini REVOLUTION, yalnızca index) ===== */
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution.korhan-mustafa-imrak-yorumlar-cta-section {
    background: #060606;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
    padding: clamp(2.25rem, 4.5vw, 3.35rem) 1rem;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-beams {
    position: absolute;
    inset: -120% -40%;
    background:
        conic-gradient(from 170deg at 45% 48%,
            transparent 0deg,
            rgba(239, 68, 68, 0.09) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.12) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.05) 312deg,
            transparent 360deg);
    animation: korhanMiniCtaRevBeams 40s linear infinite;
    opacity: 0.88;
}
@keyframes korhanMiniCtaRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 88% 120% at 50% 0%, transparent 0%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.82) 100%);
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.14) 3px,
        rgba(0, 0, 0, 0.14) 4px
    );
    opacity: 0.28;
    mix-blend-mode: multiply;
    animation: korhanMiniCtaRevScan 18s linear infinite;
}
@keyframes korhanMiniCtaRevScan {
    0%, 100% { opacity: 0.22; }
    50% { opacity: 0.34; }
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.024) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%);
    opacity: 0.9;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-cta-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: clamp(1.05rem, 2.4vw, 1.4rem) clamp(1.1rem, 2.4vw, 1.55rem);
    padding-left: calc(clamp(1.1rem, 2.4vw, 1.55rem) + 12px);
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    background: linear-gradient(165deg, rgba(18, 18, 20, 0.88) 0%, rgba(7, 7, 9, 0.94) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 20px 52px -30px rgba(0, 0, 0, 0.72);
    transition:
        border-color 0.7s var(--ease-out-expo),
        box-shadow 0.7s var(--ease-out-expo),
        transform 0.7s var(--ease-out-expo);
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    border-radius: 3px;
    margin-left: 10px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.2) 70%, transparent 100%);
    pointer-events: none;
    opacity: 0.95;
    transition: opacity 0.7s var(--ease-out-expo);
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content.korhan-mustafa-imrak-visible {
    border-color: rgba(248, 113, 113, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(239, 68, 68, 0.06),
        0 24px 64px -28px rgba(239, 68, 68, 0.14),
        0 22px 56px -32px rgba(0, 0, 0, 0.75);
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content.korhan-mustafa-imrak-visible::before {
    opacity: 1;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-kicker {
    animation: korhanMiniCtaRevContentReveal 0.6s var(--ease-out-expo) 0.06s both;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-heading {
    animation: korhanMiniCtaRevContentReveal 0.62s var(--ease-out-expo) 0.14s both;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-lead {
    animation: korhanMiniCtaRevContentReveal 0.62s var(--ease-out-expo) 0.24s both;
}
@keyframes korhanMiniCtaRevContentReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.5rem;
    padding: 0.28rem 0.72rem;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.28);
    border-radius: 6px;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanMiniCtaRevPulse 2.35s ease-out infinite;
}
@keyframes korhanMiniCtaRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-heading {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 2.6vw, 1.62rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.22;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 42%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-lead {
    color: rgba(212, 212, 216, 0.9);
    margin: 0;
    line-height: 1.65;
    max-width: 38rem;
    font-size: 0.97rem;
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-cta-inner {
        text-align: center;
        justify-content: center;
    }
    .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-content::before {
        margin-left: 8px;
    }
    .korhan-mustafa-imrak-yorumlar-mini-cta-revolution .korhan-mustafa-imrak-yorumlar-mini-cta-revolution-lead {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Uzman Kadro - DEVRİM NİTELİĞİNDE: Slider + glass kartlar ===== */
.korhan-mustafa-imrak-section-uzman {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #991b1b 100%);
    color: #fff;
}
.korhan-mustafa-imrak-section-uzman-devrim {
    padding: 4rem 1.5rem 5rem;
}
.korhan-mustafa-imrak-uzman-revolution.korhan-mustafa-imrak-section-uzman-devrim {
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5rem);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-slide-glow {
    opacity: 0.7;
}
.korhan-mustafa-imrak-uzman-slide-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.korhan-mustafa-imrak-uzman-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-uzman-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.korhan-mustafa-imrak-uzman-particle:nth-child(2) { top: 60%; right: 20%; left: auto; animation-delay: 4s; }
.korhan-mustafa-imrak-uzman-particle:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 8s; }
.korhan-mustafa-imrak-uzman-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-uzman-slide-mesh {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 50% 50%, rgba(127, 29, 29, 0.25) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: heroMeshMove 18s ease-in-out infinite;
}
.korhan-mustafa-imrak-uzman-slide-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(40px, 8vw, 70px));
    opacity: 0.5;
}
.korhan-mustafa-imrak-uzman-slide-orb-1 {
    width: clamp(140px, 28vw, 320px); height: clamp(140px, 28vw, 320px);
    background: rgba(127, 29, 29, 0.5);
    top: -80px; left: -80px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-uzman-slide-orb-2 {
    width: clamp(100px, 22vw, 260px); height: clamp(100px, 22vw, 260px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -60px; right: -50px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-uzman-slide-orb-3 {
    width: clamp(80px, 16vw, 180px); height: clamp(80px, 16vw, 180px);
    background: rgba(153, 27, 27, 0.4);
    top: 50%; left: 5%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-uzman-slide-orb-4 {
    width: clamp(60px, 12vw, 140px); height: clamp(60px, 12vw, 140px);
    background: rgba(127, 29, 29, 0.3);
    top: 15%; right: 10%;
    animation: heroOrbFloat2 13s ease-in-out infinite reverse 3s;
}
.korhan-mustafa-imrak-uzman-slide-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: clamp(30px, 5vw, 55px) clamp(30px, 5vw, 55px);
    mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, black 15%, transparent 72%);
    animation: heroGridPulse 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-uzman-slide-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.35), transparent, rgba(127, 29, 29, 0.25), transparent);
    animation: heroGlowRotate 24s linear infinite;
    opacity: 0.5;
}
.korhan-mustafa-imrak-section-uzman > .korhan-mustafa-imrak-section-title-uzman,
.korhan-mustafa-imrak-section-uzman > .korhan-mustafa-imrak-uzman-main-title,
.korhan-mustafa-imrak-section-uzman > .korhan-mustafa-imrak-uzman-desc,
.korhan-mustafa-imrak-section-uzman > .korhan-mustafa-imrak-uzman-swiper-wrap {
    position: relative;
    z-index: 1;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-section-title-uzman {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    background: linear-gradient(135deg, rgba(22, 18, 18, 0.6) 0%, rgba(10, 10, 10, 0.7) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 4px 30px rgba(127, 29, 29, 0.4), 0 0 40px -10px rgba(239, 68, 68, 0.2);
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-badge-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.9), 0 0 24px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-section-title-uzman {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(127, 29, 29, 0.35);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    box-shadow: 0 2px 20px rgba(127, 29, 29, 0.3), 0 0 0 1px rgba(127, 29, 29, 0.2);
}
.korhan-mustafa-imrak-uzman-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b91c1c;
    box-shadow: 0 0 12px rgba(127, 29, 29, 0.8);
    flex-shrink: 0;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-main-title {
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-uzman-main-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35em;
    margin-bottom: 0.75rem;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-domain {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-uzman-domain {
    background: linear-gradient(135deg, #fff 0%, #fca5a5 60%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}
.korhan-mustafa-imrak-uzman-subtitle {
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-desc {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.korhan-mustafa-imrak-uzman-desc {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Uzman Kadro - Slider (profil kartları: foto arka plan, overlay) */
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-wrap {
    max-width: 1200px;
    padding: 0 4rem;
}
.korhan-mustafa-imrak-uzman-swiper-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3.5rem;
}
.korhan-mustafa-imrak-uzman-swiper-wrap .swiper {
    overflow: visible;
}
.korhan-mustafa-imrak-uzman-swiper-wrap .swiper-slide {
    height: auto;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-card {
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(239, 68, 68, 0.08), 0 0 40px -15px rgba(239, 68, 68, 0.15);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-card:hover {
    transform: translateY(-20px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 40px 90px -25px rgba(239, 68, 68, 0.4), 0 0 60px -20px rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-uzman-profile-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px -12px rgba(0,0,0,0.4);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
}
.korhan-mustafa-imrak-uzman-profile-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 70px -15px rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-uzman-profile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.korhan-mustafa-imrak-uzman-profile-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.4);
}
.korhan-mustafa-imrak-uzman-profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
}
.korhan-mustafa-imrak-uzman-profile-stars {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    z-index: 2;
}
.korhan-mustafa-imrak-uzman-profile-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
    transition: background 0.3s, color 0.3s;
}
.korhan-mustafa-imrak-uzman-profile-link:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-content {
    padding: 1.75rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-content span {
    font-size: 0.95rem;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-stars {
    font-size: 1rem;
    color: #fbbf24;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-link {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    background: rgba(22, 18, 18, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-profile-link:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-uzman-profile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    color: #fff;
    z-index: 2;
    transform: translateY(12px);
    opacity: 0.92;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
}
.korhan-mustafa-imrak-uzman-profile-card:hover .korhan-mustafa-imrak-uzman-profile-content {
    transform: translateY(0);
    opacity: 1;
}
.korhan-mustafa-imrak-uzman-profile-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #fff;
}
.korhan-mustafa-imrak-uzman-profile-content span {
    font-size: 0.85rem;
    opacity: 0.9;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-prev,
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-next {
    width: 48px;
    height: 48px;
    background: rgba(22, 18, 18, 0.6) !important;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-prev:hover,
.korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-next:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-uzman-swiper-prev,
.korhan-mustafa-imrak-uzman-swiper-next {
    color: rgba(255,255,255,0.9) !important;
}
.korhan-mustafa-imrak-uzman-swiper-prev:hover,
.korhan-mustafa-imrak-uzman-swiper-next:hover {
    color: #fff !important;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-uzman-swiper-wrap {
        padding: 0 0.75rem;
    }
    .korhan-mustafa-imrak-section-uzman-devrim .korhan-mustafa-imrak-uzman-swiper-wrap {
        padding: 0 0.75rem;
    }
    .korhan-mustafa-imrak-uzman-swiper-wrap .swiper {
        overflow: hidden;
    }
    .korhan-mustafa-imrak-uzman-swiper-wrap .swiper-slide {
        width: 100%;
        max-width: 100%;
    }
    .korhan-mustafa-imrak-uzman-profile-card {
        width: 100%;
        max-width: 100%;
    }
    .korhan-mustafa-imrak-uzman-main-title { flex-direction: column; }
    .korhan-mustafa-imrak-section-uzman-devrim { padding: 1.5rem 1rem 1.75rem; }
}

/* ===== Blog - Slider (Uzman Kadrosu gibi) ===== */
.korhan-mustafa-imrak-section-blog {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #991b1b 100%);
    color: #fff;
}
.korhan-mustafa-imrak-blog-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-slide-bg .korhan-mustafa-imrak-uzman-slide-orb-1 { top: -60px; right: -60px; left: auto; }
.korhan-mustafa-imrak-blog-slide-bg .korhan-mustafa-imrak-uzman-slide-orb-2 { bottom: -40px; left: -40px; right: auto; }
.korhan-mustafa-imrak-section-blog > .korhan-mustafa-imrak-section-title-uzman,
.korhan-mustafa-imrak-section-blog > .korhan-mustafa-imrak-uzman-main-title,
.korhan-mustafa-imrak-section-blog > .korhan-mustafa-imrak-uzman-desc,
.korhan-mustafa-imrak-section-blog > .korhan-mustafa-imrak-blog-swiper-wrap,
.korhan-mustafa-imrak-section-blog > .korhan-mustafa-imrak-blog-swiper-actions {
    position: relative;
    z-index: 1;
}
.korhan-mustafa-imrak-blog-swiper-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3.5rem;
}
.korhan-mustafa-imrak-blog-swiper-wrap .swiper { overflow: visible; }
.korhan-mustafa-imrak-blog-swiper-wrap .swiper-slide { height: auto; }
.korhan-mustafa-imrak-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.3s;
}
.korhan-mustafa-imrak-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-blog-card-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #141414;
}
.korhan-mustafa-imrak-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.korhan-mustafa-imrak-blog-card:hover .korhan-mustafa-imrak-blog-card-img img {
    transform: scale(1.05);
}
.korhan-mustafa-imrak-blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.25);
}
.korhan-mustafa-imrak-blog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.korhan-mustafa-imrak-blog-card-date {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-blog-card-date i { margin-right: 0.35rem; }
.korhan-mustafa-imrak-blog-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.korhan-mustafa-imrak-blog-card-body h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.korhan-mustafa-imrak-blog-card-body h4 a:hover { color: var(--accent); }
.korhan-mustafa-imrak-blog-card-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 1rem;
    flex: 1;
}
.korhan-mustafa-imrak-btn-blog-oku {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gradient-btn) !important;
    color: var(--primary-dark) !important;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    align-self: flex-start;
}
.korhan-mustafa-imrak-btn-blog-oku:hover {
    filter: brightness(1.15);
    transform: translateX(4px);
}
.korhan-mustafa-imrak-blog-swiper-actions {
    margin-top: 2rem;
}
.korhan-mustafa-imrak-blog-swiper-prev,
.korhan-mustafa-imrak-blog-swiper-next {
    color: rgba(255,255,255,0.9) !important;
}
.korhan-mustafa-imrak-blog-swiper-prev:hover,
.korhan-mustafa-imrak-blog-swiper-next:hover {
    color: #fff !important;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-blog-swiper-wrap {
        padding: 0 0.75rem;
        overflow: hidden;
    }
    .korhan-mustafa-imrak-blog-swiper-wrap .swiper { overflow: hidden; }
    .korhan-mustafa-imrak-blog-swiper-wrap .swiper-slide { width: 100%; max-width: 100%; }
}

/* ===== Testimonial ===== */
.korhan-mustafa-imrak-testimonial {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-testimonial p { font-style: italic; margin: 0 0 0.5rem; }
.korhan-mustafa-imrak-testimonial .korhan-mustafa-imrak-author { font-size: 0.9rem; color: var(--muted); }
.korhan-mustafa-imrak-testimonial .korhan-mustafa-imrak-yorum-meta { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }
.korhan-mustafa-imrak-testimonial .korhan-mustafa-imrak-yorum-tarih { margin-left: 0.5rem; opacity: 0.8; }

/* ===== Testimonial - Swiper + Water Drop ===== */
.korhan-mustafa-imrak-testimonial-swiper-wrap {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem 3rem;
    border-radius: 1rem;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap.korhan-mustafa-imrak-water-drop-wrap {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}
.korhan-mustafa-imrak-water-drop-wrap::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    pointer-events: none;
}
.korhan-mustafa-imrak-water-drop-wrap::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(127, 29, 29, 0.06) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    pointer-events: none;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper {
    padding: 2rem 0 3rem;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-slide {
    height: auto;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-button-prev,
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-button-next {
    color: #475569;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-button-prev:hover,
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-button-next:hover {
    color: #b91c1c;
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-pagination-bullet {
    background: rgba(127, 29, 29, 0.3);
}
.korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-pagination-bullet-active {
    background: #b91c1c;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-testimonial-swiper-wrap {
        padding: 0 0.75rem 1rem;
        overflow: hidden;
    }
    .korhan-mustafa-imrak-testimonial-swiper-wrap .swiper {
        padding: 1rem 0 1.5rem;
        overflow: hidden;
    }
    .korhan-mustafa-imrak-testimonial-swiper-wrap .swiper-slide {
        width: 100%;
        max-width: 100%;
    }
}
/* Water Drop Kart - cam/damla şekli, glassmorphic */
.korhan-mustafa-imrak-water-drop-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 55% 45% 35% 65% / 55% 35% 65% 45%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset -2px -2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.korhan-mustafa-imrak-water-drop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.korhan-mustafa-imrak-testimonial-card-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem;
}
.korhan-mustafa-imrak-water-drop-shine {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 15%;
    left: 20%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}
.korhan-mustafa-imrak-water-drop-shine-2 {
    top: 25%;
    right: 25%;
    left: auto;
    width: 8px;
    height: 8px;
    opacity: 0.8;
}
.korhan-mustafa-imrak-testimonial-card-avatar-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    flex-shrink: 0;
}
.korhan-mustafa-imrak-testimonial-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.korhan-mustafa-imrak-testimonial-card-avatar-wrap i {
    color: #94a3b8;
    font-size: 2rem;
}
.korhan-mustafa-imrak-testimonial-card-body {
    padding: 0 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.korhan-mustafa-imrak-testimonial-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #262626;
}
.korhan-mustafa-imrak-testimonial-card-role {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-testimonial-stars {
    margin-bottom: 0.75rem;
    color: var(--accent-icon);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
.korhan-mustafa-imrak-testimonial-card-quote {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 1rem;
    flex: 1;
}
.korhan-mustafa-imrak-testimonial-card-quote a { color: var(--accent); }
.korhan-mustafa-imrak-testimonial-card-btn {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-pink,
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-purple,
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-orange {
    background: var(--gradient-btn);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-pink:hover,
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-purple:hover,
.korhan-mustafa-imrak-testimonial-card-btn.korhan-mustafa-imrak-btn-orange:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}
.korhan-mustafa-imrak-testimonial-card-btn:hover {
    transform: translateY(-2px);
}
/* ===== Testimonials - UI/UX Layout: Temiz grid, profesyonel kartlar ===== */
.korhan-mustafa-imrak-section-testimonials-ui {
    background: var(--bg-beige);
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    position: relative;
}
.korhan-mustafa-imrak-section-testimonials-ui .korhan-mustafa-imrak-section-title { text-align: center; margin-bottom: 0.25rem; }
.korhan-mustafa-imrak-section-testimonials-ui h2 { text-align: center; margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-testimonials-ui-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.korhan-mustafa-imrak-testimonials-ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-testimonial-ui-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.3s ease;
}
.korhan-mustafa-imrak-testimonial-ui-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-testimonial-ui-quote-icon {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 1rem;
    line-height: 1;
}
.korhan-mustafa-imrak-testimonial-ui-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-testimonial-ui-quote {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--primary);
    margin: 0 0 1.25rem;
    font-style: normal;
}
.korhan-mustafa-imrak-testimonial-ui-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-testimonial-ui-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-testimonial-ui-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.korhan-mustafa-imrak-testimonial-ui-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.korhan-mustafa-imrak-testimonial-ui-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    font-style: normal;
}
.korhan-mustafa-imrak-testimonial-ui-role {
    font-size: 0.85rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-testimonials-ui-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-testimonials-ui-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-testimonial-ui-card {
        max-width: 360px;
        width: 100%;
    }
}

/* ===== Müşteri yorumları — REVOLUTION (yalnızca anasayfa) ===== */
.korhan-mustafa-imrak-testimonials-revolution.korhan-mustafa-imrak-section-testimonials-ui {
    position: relative;
    overflow: hidden;
    background: #060606;
    color: #fafafa;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5rem);
}
.korhan-mustafa-imrak-testimonials-revolution.korhan-mustafa-imrak-section > * {
    max-width: none;
}
.korhan-mustafa-imrak-testimonials-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-testimonials-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 178deg at 44% 40%,
            transparent 0deg,
            rgba(239, 68, 68, 0.1) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.14) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.06) 312deg,
            transparent 360deg);
    animation: korhanTestimonialsRevBeams 36s linear infinite;
    opacity: 0.9;
}
@keyframes korhanTestimonialsRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-testimonials-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 76% 70% at 50% 36%, transparent 16%, rgba(0, 0, 0, 0.76) 100%);
}
.korhan-mustafa-imrak-testimonials-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.17) 3px,
        rgba(0, 0, 0, 0.17) 4px
    );
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: korhanTestimonialsRevScan 15s linear infinite;
}
@keyframes korhanTestimonialsRevScan {
    0%, 100% { opacity: 0.24; }
    50% { opacity: 0.36; }
}
.korhan-mustafa-imrak-testimonials-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 90% 76% at 50% 40%, black 18%, transparent 78%);
}
.korhan-mustafa-imrak-testimonials-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-testimonials-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.korhan-mustafa-imrak-testimonials-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-testimonials-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-testimonials-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanTestimonialsRevPulse 2.35s ease-out infinite;
}
@keyframes korhanTestimonialsRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-testimonials-revolution-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-testimonials-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonials-ui-sub.korhan-mustafa-imrak-testimonials-revolution-lead {
    text-align: left;
    margin: 0;
    max-width: 38rem;
    margin-left: 0;
    margin-right: 0;
    color: rgba(228, 228, 231, 0.88);
    font-size: 0.98rem;
    line-height: 1.65;
}
.korhan-mustafa-imrak-testimonials-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-testimonials-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonials-revolution-grid {
    max-width: none;
    margin: 0;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.korhan-mustafa-imrak-testimonial-ui-card-revolution.korhan-mustafa-imrak-testimonial-ui-card {
    position: relative;
    padding-left: calc(1.75rem + 6px);
    border-radius: 2px 18px 18px 2px;
    background: linear-gradient(165deg, rgba(22, 20, 20, 0.9) 0%, rgba(10, 10, 12, 0.94) 100%);
    border: 1px solid rgba(239, 68, 68, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 56px -28px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-testimonial-ui-card-revolution:hover {
    border-color: rgba(248, 113, 113, 0.42);
    box-shadow:
        0 32px 72px -32px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.korhan-mustafa-imrak-testimonials-revolution-card-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.18) 62%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}
.korhan-mustafa-imrak-testimonial-ui-card-revolution:hover .korhan-mustafa-imrak-testimonials-revolution-card-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-quote-icon {
    color: #f87171;
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-quote {
    color: rgba(244, 244, 245, 0.94);
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-footer {
    border-top-color: rgba(239, 68, 68, 0.18);
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-name {
    color: #fafafa;
}
.korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-role {
    color: rgba(212, 212, 216, 0.78);
}
.korhan-mustafa-imrak-testimonials-revolution-actions {
    justify-content: flex-start;
    margin-top: clamp(1.75rem, 3vw, 2.35rem);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-testimonials-revolution-head {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-testimonials-revolution .korhan-mustafa-imrak-testimonial-ui-card-revolution {
        max-width: 400px;
    }
    .korhan-mustafa-imrak-testimonials-revolution-actions {
        justify-content: center;
    }
}

/* Eski testimonial (musteri-yorumlari sayfası) */
.korhan-mustafa-imrak-testimonial-card-devrim { /* geriye uyumluluk */ }
.korhan-mustafa-imrak-testimonial-avatar-wrap { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; }
.korhan-mustafa-imrak-testimonial-quote { font-style: italic; }
.korhan-mustafa-imrak-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.korhan-mustafa-imrak-slider-dot {
    position: relative;
    width: 36px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(239, 68, 68, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s;
}
.korhan-mustafa-imrak-slider-dot:hover { background: rgba(239, 68, 68, 0.4); }
.korhan-mustafa-imrak-slider-dot-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), rgba(127, 29, 29, 0.9));
    border-radius: 2px;
    transition: width 0.1s linear;
}
.korhan-mustafa-imrak-slider-dot.korhan-mustafa-imrak-active { background: rgba(239, 68, 68, 0.25); }
.korhan-mustafa-imrak-slider-dot.korhan-mustafa-imrak-active .korhan-mustafa-imrak-slider-dot-progress { background: var(--accent); }
.korhan-mustafa-imrak-yorumlar-empty { text-align: center; padding: 3rem; color: var(--muted); }
.korhan-mustafa-imrak-yorumlar-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.korhan-mustafa-imrak-yorumlar-list { display: flex; flex-direction: column; gap: 1rem; }
.korhan-mustafa-imrak-yorum-item .korhan-mustafa-imrak-yorum-meta { margin-top: 0.75rem; }
.korhan-mustafa-imrak-yorum-item-devrim { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; }
.korhan-mustafa-imrak-yorum-item-avatar { flex-shrink: 0; }
.korhan-mustafa-imrak-yorum-item-avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(239, 68, 68, 0.25); }
.korhan-mustafa-imrak-yorum-item-content { flex: 1; min-width: 0; }

/* ===== YORUMLAR SAYFASI - DEVRİM NİTELİĞİNDE ===== */
.korhan-mustafa-imrak-yorumlar-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    overflow: hidden;
}
.korhan-mustafa-imrak-yorumlar-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 40%, #991b1b 70%, #b91c1c 100%);
}
.korhan-mustafa-imrak-yorumlar-hero-mesh {
    position: absolute;
    inset: -50%;
    background-size: 200% 200%;
    background-image: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.4) 0%, transparent 50%);
    pointer-events: none;
    animation: heroMeshMove 18s ease-in-out infinite;
}
.korhan-mustafa-imrak-yorumlar-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(50px, 10vw, 80px));
    opacity: 0.5;
    pointer-events: none;
}
.korhan-mustafa-imrak-yorumlar-hero-orb-1 {
    width: clamp(150px, 30vw, 350px);
    height: clamp(150px, 30vw, 350px);
    background: rgba(127, 29, 29, 0.5);
    top: -100px;
    left: -80px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-yorumlar-hero-orb-2 {
    width: clamp(120px, 25vw, 280px);
    height: clamp(120px, 25vw, 280px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -80px;
    right: -60px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-yorumlar-hero-orb-3 {
    width: clamp(80px, 15vw, 180px);
    height: clamp(80px, 15vw, 180px);
    background: rgba(153, 27, 27, 0.4);
    top: 50%;
    right: 15%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-yorumlar-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: clamp(35px, 6vw, 55px) clamp(35px, 6vw, 55px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
    animation: heroGridPulse 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-yorumlar-hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.3), transparent, rgba(127, 29, 29, 0.2), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}
.korhan-mustafa-imrak-yorumlar-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-yorumlar-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.6);
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-yorumlar-particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.korhan-mustafa-imrak-yorumlar-particle:nth-child(2) { left: 70%; top: 60%; animation-delay: -4s; }
.korhan-mustafa-imrak-yorumlar-particle:nth-child(3) { left: 85%; top: 30%; animation-delay: -7s; }
.korhan-mustafa-imrak-yorumlar-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.korhan-mustafa-imrak-yorumlar-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-yorumlar-hero-title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.korhan-mustafa-imrak-yorumlar-hero-desc {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-yorumlar-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Yorumlar Stats */
.korhan-mustafa-imrak-yorumlar-stats-section {
    padding: clamp(2rem, 5vw, 3rem) 1.5rem;
}
.korhan-mustafa-imrak-yorumlar-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yorumlar-stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-yorumlar-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-yorumlar-stat-num {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.korhan-mustafa-imrak-yorumlar-stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.25rem;
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-yorumlar-stats-grid { grid-template-columns: 1fr; }
}

/* Yorumlar Main */
.korhan-mustafa-imrak-yorumlar-main-section {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.korhan-mustafa-imrak-yorumlar-main-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yorumlar-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.korhan-mustafa-imrak-yorumlar-section-header h2 { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-yorumlar-section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 2.5rem;
}
.korhan-mustafa-imrak-yorumlar-card {
    background: linear-gradient(135deg, rgba(22, 18, 18, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 68, 68, 0.05);
}
.korhan-mustafa-imrak-yorumlar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px -25px rgba(239, 68, 68, 0.35), 0 0 60px -20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.45);
}
.korhan-mustafa-imrak-yorumlar-card-quote-icon {
    font-size: 2.25rem;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-yorumlar-card-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-yorumlar-card-quote {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--primary);
    margin: 0 0 1.5rem;
    font-style: normal;
}
.korhan-mustafa-imrak-yorumlar-card-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-yorumlar-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-yorumlar-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.korhan-mustafa-imrak-yorumlar-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.korhan-mustafa-imrak-yorumlar-card-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
    font-style: normal;
}
.korhan-mustafa-imrak-yorumlar-card-date {
    font-size: 1rem;
    color: var(--muted);
}
@media (max-width: 400px) {
    .korhan-mustafa-imrak-yorumlar-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-yorumlar-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-yorumlar-card {
        max-width: 360px;
        width: 100%;
    }
}

/* Yorumlar Empty - Zenginleştirilmiş */
.korhan-mustafa-imrak-yorumlar-empty {
    background: var(--bg-card);
    border: 1px dashed var(--border-subtle);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}
.korhan-mustafa-imrak-yorumlar-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.korhan-mustafa-imrak-yorumlar-empty-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.8;
}
.korhan-mustafa-imrak-yorumlar-empty h3 {
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-yorumlar-empty p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Yorumlar CTA */
.korhan-mustafa-imrak-yorumlar-cta-section {
    position: relative;
    padding: clamp(3rem, 6vw, 4rem) 1.5rem;
    overflow: hidden;
}
.korhan-mustafa-imrak-yorumlar-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.2) 0%, rgba(127, 29, 29, 0.15) 50%, rgba(153, 27, 27, 0.1) 100%);
}
.korhan-mustafa-imrak-yorumlar-cta-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(127, 29, 29, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.korhan-mustafa-imrak-yorumlar-cta-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.korhan-mustafa-imrak-yorumlar-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.korhan-mustafa-imrak-yorumlar-cta-content h3 {
    margin-bottom: 0.25rem;
}
.korhan-mustafa-imrak-yorumlar-cta-content p {
    color: var(--muted);
    margin: 0;
}
.korhan-mustafa-imrak-yorumlar-cta-btn {
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-yorumlar-cta-inner { flex-direction: column; text-align: center; }
}

/* ===== YORUM GÖNDER SAYFASI - DEVRİM NİTELİĞİNDE ===== */
.korhan-mustafa-imrak-yorum-gonder-hero { min-height: 35vh; }
.korhan-mustafa-imrak-yorum-gonder-hero .korhan-mustafa-imrak-yorumlar-hero-buttons { display: none; }

.korhan-mustafa-imrak-yorum-gonder-section {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.korhan-mustafa-imrak-yorum-gonder-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-yorum-gonder-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-yorum-gonder-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 30px 70px -15px rgba(239, 68, 68, 0.15);
}

/* Yorum Gönder - Başarı Durumu */
.korhan-mustafa-imrak-yorum-gonder-success {
    text-align: center;
    padding: 2rem 0;
}
.korhan-mustafa-imrak-yorum-gonder-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.korhan-mustafa-imrak-yorum-gonder-success-icon i {
    font-size: 2.5rem;
    color: #10b981;
}
.korhan-mustafa-imrak-yorum-gonder-success h3 {
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-yorum-gonder-success p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-yorum-gonder-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Yorum Form - Alert */
.korhan-mustafa-imrak-yorum-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.korhan-mustafa-imrak-yorum-alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}
.korhan-mustafa-imrak-yorum-alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Yorum Form - Inputlar */
.korhan-mustafa-imrak-yorum-form-devrim .korhan-mustafa-imrak-yorum-form-group {
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-yorum-form-devrim label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.korhan-mustafa-imrak-yorum-form-devrim label i {
    color: var(--accent);
}
.korhan-mustafa-imrak-yorum-form-devrim input,
.korhan-mustafa-imrak-yorum-form-devrim textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: rgba(10, 10, 10, 0.5);
    color: var(--primary);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.korhan-mustafa-imrak-yorum-form-devrim input::placeholder,
.korhan-mustafa-imrak-yorum-form-devrim textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}
.korhan-mustafa-imrak-yorum-form-devrim input:focus,
.korhan-mustafa-imrak-yorum-form-devrim textarea:focus {
    outline: none;
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-yorum-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 500px) {
    .korhan-mustafa-imrak-yorum-form-row { grid-template-columns: 1fr; }
}

/* Avatar Seçimi */
.korhan-mustafa-imrak-avatar-select-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.korhan-mustafa-imrak-avatar-option {
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: border-color 0.3s, transform 0.2s;
}
.korhan-mustafa-imrak-avatar-option:hover {
    transform: scale(1.1);
}
.korhan-mustafa-imrak-avatar-option.korhan-mustafa-imrak-selected,
.korhan-mustafa-imrak-avatar-option:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-avatar-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-avatar-option img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Captcha */
.korhan-mustafa-imrak-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.korhan-mustafa-imrak-captcha-img {
    height: 50px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid rgba(239, 68, 68, 0.3);
    transition: border-color 0.3s;
}
.korhan-mustafa-imrak-captcha-img:hover {
    border-color: rgba(239, 68, 68, 0.6);
}
.korhan-mustafa-imrak-captcha-wrap input {
    flex: 1;
    min-width: 120px;
}
.korhan-mustafa-imrak-captcha-refresh {
    background: var(--gradient-btn);
    border: none;
    color: var(--primary-dark);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.3s;
}
.korhan-mustafa-imrak-captcha-refresh:hover {
    transform: rotate(180deg);
}
.korhan-mustafa-imrak-yorum-submit {
    margin-top: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-size: 1.05rem;
    width: 100%;
}

/* ===== Blog Card ===== */
.korhan-mustafa-imrak-blog-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.korhan-mustafa-imrak-blog-card h4 { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-blog-card p { margin: 0; font-size: 0.95rem; }

/* ===== Phone Link ===== */
.korhan-mustafa-imrak-phone-link { font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 600; }

/* ===== Form Elements ===== */
input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}
label { display: block; font-weight: 500; margin-bottom: 0.35rem; }
.korhan-mustafa-imrak-form-group { margin-bottom: 1.25rem; }

/* ===== Container ===== */
.korhan-mustafa-imrak-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.korhan-mustafa-imrak-container-narrow { max-width: 600px; }

/* ===== Card ===== */
.korhan-mustafa-imrak-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.korhan-mustafa-imrak-card h1 { margin-bottom: 1.5rem; }

/* ===== Sipariş Sayfası ===== */
.korhan-mustafa-imrak-siparis-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
.korhan-mustafa-imrak-siparis-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(127, 29, 29, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-siparis-baslik {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-siparis-tutar {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-siparis-tutar strong {
    color: var(--accent);
}
.korhan-mustafa-imrak-text-muted { color: var(--muted); font-size: 0.9rem; }
.korhan-mustafa-imrak-odeme-yontemleri {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-odeme-yontemleri h3 {
    margin-bottom: 1.25rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-odeme-yontem {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}
.korhan-mustafa-imrak-odeme-yontem h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-odeme-yontem p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-odeme-yontem p:last-child { margin-bottom: 0; }
.korhan-mustafa-imrak-odeme-yontem a { color: var(--accent); }
.korhan-mustafa-imrak-odeme-yontem a:hover { text-decoration: underline; }
.korhan-mustafa-imrak-siparis-form .korhan-mustafa-imrak-form-group {
    margin-bottom: 1.25rem;
}
.korhan-mustafa-imrak-siparis-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.korhan-mustafa-imrak-siparis-form input[type="text"],
.korhan-mustafa-imrak-siparis-form input[type="email"],
.korhan-mustafa-imrak-siparis-form input[type="tel"],
.korhan-mustafa-imrak-siparis-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition);
}
.korhan-mustafa-imrak-siparis-form input:focus,
.korhan-mustafa-imrak-siparis-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.korhan-mustafa-imrak-siparis-form small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-siparis-form .korhan-mustafa-imrak-btn {
    margin-top: 0.5rem;
}

/* ===== IBAN Box ===== */
.korhan-mustafa-imrak-iban-box {
    background: #f1f5f9;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-family: monospace;
}
.korhan-mustafa-imrak-iban-display {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0.5rem 0;
    color: var(--primary);
}
.korhan-mustafa-imrak-iban-box small {
    font-size: 0.9rem;
    color: var(--muted);
    font-family: inherit;
}

/* ===== Alert ===== */
.korhan-mustafa-imrak-alert { padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.korhan-mustafa-imrak-alert-success { background: #dcfce7; color: #166534; }
.korhan-mustafa-imrak-alert-error { background: #fee2e2; color: #991b1b; }

/* ===== Yazılımlarımız (Ana sayfa / Yorumlar tarzı) ===== */
.korhan-mustafa-imrak-section-yazilimlar {
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
}
/* Yazılımlar kartları - yorumlar kartı ile aynı stil */
.korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yorumlar-card-quote-icon i { color: var(--accent); }
.korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yazilimlar-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yazilimlar-card-buttons .korhan-mustafa-imrak-btn {
    flex: 1;
    min-width: 140px;
    font-size: 1.05rem;
}
.korhan-mustafa-imrak-yazilimlar-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
}
.korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yorumlar-card-avatar img {
    object-fit: cover;
    border-radius: 50%;
}
@media (max-width: 400px) {
    .korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yazilimlar-card-buttons { flex-direction: column; }
    .korhan-mustafa-imrak-yazilimlar-card .korhan-mustafa-imrak-yazilimlar-card-buttons .korhan-mustafa-imrak-btn { min-width: 100%; }
}

/* Blog Anasayfa - yorumlar tarzı kartlar */
.korhan-mustafa-imrak-yazilimlar-anasayfa-hero { min-height: 38vh; }

/* ===== Blog anasayfa hero — REVOLUTION ===== */
.korhan-mustafa-imrak-blog-hero-revolution.korhan-mustafa-imrak-yorumlar-hero {
    min-height: 0;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4.25rem) 1rem clamp(2.35rem, 5vw, 3.75rem);
    background: #060606;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
}
.korhan-mustafa-imrak-blog-hero-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-hero-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 168deg at 40% 42%,
            transparent 0deg,
            rgba(239, 68, 68, 0.095) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.13) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.055) 312deg,
            transparent 360deg);
    animation: korhanBlogHeroRevBeams 39s linear infinite;
    opacity: 0.9;
}
@keyframes korhanBlogHeroRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-blog-hero-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 76% 70% at 50% 36%, transparent 16%, rgba(0, 0, 0, 0.76) 100%);
}
.korhan-mustafa-imrak-blog-hero-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.17) 3px,
        rgba(0, 0, 0, 0.17) 4px
    );
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: korhanBlogHeroRevScan 16s linear infinite;
}
@keyframes korhanBlogHeroRevScan {
    0%, 100% { opacity: 0.24; }
    50% { opacity: 0.35; }
}
.korhan-mustafa-imrak-blog-hero-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 90% 76% at 50% 40%, black 18%, transparent 78%);
}
.korhan-mustafa-imrak-blog-hero-revolution-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-blog-hero-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
}
.korhan-mustafa-imrak-blog-hero-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-blog-hero-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-blog-hero-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanBlogHeroRevPulse 2.35s ease-out infinite;
}
@keyframes korhanBlogHeroRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-blog-hero-revolution-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.9rem, 4.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.korhan-mustafa-imrak-blog-hero-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-blog-hero-revolution-lead {
    max-width: 38rem;
    margin: 0 0 1.15rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-blog-hero-revolution .korhan-mustafa-imrak-blog-hero-revolution-cta-row {
    justify-content: flex-start;
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-blog-hero-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-blog-hero-revolution-head {
        grid-template-columns: 1fr;
    }
}

/* ===== Blog anasayfa — istatistik şeridi REVOLUTION (yalnızca index) ===== */
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution.korhan-mustafa-imrak-yorumlar-stats-section {
    position: relative;
    overflow: hidden;
    background: #060606;
    border-top: 1px solid rgba(239, 68, 68, 0.12);
    padding: clamp(1.85rem, 4vw, 2.65rem) 1rem;
    transition: border-color 0.65s var(--ease-out-expo), box-shadow 0.65s var(--ease-out-expo);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution.korhan-mustafa-imrak-section > * {
    max-width: none;
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution.korhan-mustafa-imrak-visible {
    border-top-color: rgba(248, 113, 113, 0.28);
    box-shadow: 0 20px 60px -34px rgba(239, 68, 68, 0.14);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-beams {
    position: absolute;
    inset: -100% -35%;
    background:
        conic-gradient(from 175deg at 45% 45%,
            transparent 0deg,
            rgba(239, 68, 68, 0.07) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.1) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.045) 312deg,
            transparent 360deg);
    animation: korhanBlogStatsRevBeams 42s linear infinite;
    opacity: 0.85;
}
@keyframes korhanBlogStatsRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 95% 85% at 50% 0%, transparent 0%, rgba(0, 0, 0, 0.5) 72%, rgba(0, 0, 0, 0.82) 100%);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.14) 3px,
        rgba(0, 0, 0, 0.14) 4px
    );
    opacity: 0.26;
    mix-blend-mode: multiply;
    animation: korhanBlogStatsRevScan 17s linear infinite;
}
@keyframes korhanBlogStatsRevScan {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.32; }
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.022) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 100%);
    opacity: 0.88;
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    transition: filter 0.7s var(--ease-out-expo);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution.korhan-mustafa-imrak-visible .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-shell {
    filter: drop-shadow(0 8px 36px rgba(239, 68, 68, 0.1));
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-grid {
    max-width: 900px;
    margin: 0 auto;
    gap: 1.25rem;
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-stat {
    background: linear-gradient(165deg, rgba(16, 16, 18, 0.94) 0%, rgba(6, 6, 8, 0.97) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 44px -24px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-stat:hover {
    border-color: rgba(248, 113, 113, 0.38);
    box-shadow:
        0 24px 52px -26px rgba(239, 68, 68, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-stat .korhan-mustafa-imrak-yorumlar-stat-num {
    background: linear-gradient(118deg, #fecaca 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.65rem, 4vw, 2.65rem);
}
.korhan-mustafa-imrak-blog-anasayfa-stats-revolution .korhan-mustafa-imrak-blog-anasayfa-stats-revolution-stat .korhan-mustafa-imrak-yorumlar-stat-label {
    color: rgba(212, 212, 216, 0.85);
}

/* ===== Blog anasayfa — liste (yorumlar-grid) REVOLUTION ===== */
.korhan-mustafa-imrak-blog-main-revolution.korhan-mustafa-imrak-yorumlar-main-section {
    position: relative;
    overflow: hidden;
    background: #060606;
    color: #fafafa;
    border-top: 1px solid rgba(239, 68, 68, 0.12);
    padding: clamp(2.25rem, 4.5vw, 3.75rem) 1rem clamp(2.75rem, 5vw, 4.25rem);
    transition: border-color 0.65s var(--ease-out-expo), box-shadow 0.65s var(--ease-out-expo);
}
.korhan-mustafa-imrak-blog-main-revolution.korhan-mustafa-imrak-section > * {
    max-width: none;
}
.korhan-mustafa-imrak-blog-main-revolution.korhan-mustafa-imrak-section.korhan-mustafa-imrak-visible {
    border-top-color: rgba(248, 113, 113, 0.22);
    box-shadow: 0 24px 64px -40px rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-blog-main-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-main-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 170deg at 42% 38%,
            transparent 0deg,
            rgba(239, 68, 68, 0.085) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.11) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.05) 312deg,
            transparent 360deg);
    animation: korhanBlogMainRevBeams 41s linear infinite;
    opacity: 0.88;
}
@keyframes korhanBlogMainRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-blog-main-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 76% 70% at 50% 28%, transparent 12%, rgba(0, 0, 0, 0.76) 100%);
}
.korhan-mustafa-imrak-blog-main-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.15) 3px,
        rgba(0, 0, 0, 0.15) 4px
    );
    opacity: 0.28;
    mix-blend-mode: multiply;
    animation: korhanBlogMainRevScan 15s linear infinite;
}
@keyframes korhanBlogMainRevScan {
    0%, 100% { opacity: 0.22; }
    50% { opacity: 0.34; }
}
.korhan-mustafa-imrak-blog-main-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.019) 1px, transparent 1px);
    background-size: clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
    mask-image: radial-gradient(ellipse 88% 72% at 50% 35%, black 18%, transparent 78%);
}
.korhan-mustafa-imrak-blog-main-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-blog-main-revolution-inner {
    margin: 0 auto;
    max-width: none;
}
.korhan-mustafa-imrak-blog-main-revolution-subhead {
    text-align: left;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.korhan-mustafa-imrak-blog-main-revolution-subhead-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(252, 165, 165, 0.88);
    margin: 0 0 0.45rem;
}
.korhan-mustafa-imrak-blog-main-revolution-subhead-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.95rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fafafa;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-section-sub.korhan-mustafa-imrak-blog-main-revolution-lead {
    text-align: left;
    margin: 0;
    max-width: 38rem;
    color: rgba(228, 228, 231, 0.88);
    font-size: 0.98rem;
    line-height: 1.65;
}
.korhan-mustafa-imrak-blog-anasayfa-yorumlar-revolution-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.75rem;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card {
    border-color: rgba(239, 68, 68, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 56px -28px rgba(0, 0, 0, 0.6);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution {
    transition:
        border-color 0.65s var(--ease-out-expo),
        box-shadow 0.65s var(--ease-out-expo),
        transform 0.5s var(--ease-out-expo);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card:hover {
    border-color: rgba(248, 113, 113, 0.45);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible {
    border-color: rgba(248, 113, 113, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 0 0 1px rgba(239, 68, 68, 0.07),
        0 32px 76px -34px rgba(239, 68, 68, 0.18),
        0 24px 60px -30px rgba(0, 0, 0, 0.58);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible .korhan-mustafa-imrak-yorumlar-card-revolution-rail {
    opacity: 1;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.38);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible:hover {
    border-color: rgba(252, 165, 165, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 0 0 1px rgba(239, 68, 68, 0.09),
        0 40px 92px -38px rgba(239, 68, 68, 0.22),
        0 28px 68px -32px rgba(0, 0, 0, 0.55);
}
@keyframes korhanBlogCardRevReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-card-quote-icon {
    animation: korhanBlogCardRevReveal 0.55s var(--ease-out-expo) 0.06s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-card-stars {
    animation: korhanBlogCardRevReveal 0.55s var(--ease-out-expo) 0.11s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-card-quote {
    animation: korhanBlogCardRevReveal 0.58s var(--ease-out-expo) 0.16s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-blog-card-tags {
    animation: korhanBlogCardRevReveal 0.58s var(--ease-out-expo) 0.21s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-blog-anasayfa-card-buttons {
    animation: korhanBlogCardRevReveal 0.58s var(--ease-out-expo) 0.24s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-blog-revolution.korhan-mustafa-imrak-visible > .korhan-mustafa-imrak-yorumlar-card-footer {
    animation: korhanBlogCardRevReveal 0.58s var(--ease-out-expo) 0.29s both;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-quote {
    color: rgba(244, 244, 245, 0.94);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-name {
    color: #fafafa;
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-date {
    color: rgba(212, 212, 216, 0.8);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card-footer {
    border-top-color: rgba(239, 68, 68, 0.16);
}
.korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-anasayfa-card-buttons {
    border-top-color: rgba(239, 68, 68, 0.16);
}
.korhan-mustafa-imrak-blog-main-revolution-empty {
    background: linear-gradient(165deg, rgba(14, 14, 16, 0.75) 0%, rgba(8, 8, 10, 0.9) 100%);
    border: 1px dashed rgba(239, 68, 68, 0.32);
    color: rgba(244, 244, 245, 0.92);
}
.korhan-mustafa-imrak-blog-main-revolution-empty h3 {
    color: #fafafa;
}
.korhan-mustafa-imrak-blog-main-revolution-empty p {
    color: rgba(212, 212, 216, 0.85);
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-blog-anasayfa-yorumlar-revolution-grid {
        justify-items: center;
    }
    .korhan-mustafa-imrak-blog-main-revolution .korhan-mustafa-imrak-yorumlar-card {
        max-width: 400px;
        width: 100%;
    }
}

.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-yorumlar-card-quote-icon i { color: var(--accent); }
/* Blog anasayfa etiketleri - DEVRİM niteliğinde renkli */
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag {
    font-weight: 700;
    letter-spacing: 0.03em;
    border-width: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-1 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(239, 68, 68, 0.5));
    color: #5eead4;
    border-color: rgba(239, 68, 68, 0.7);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-2 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(129, 140, 248, 0.6));
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.7);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.5), rgba(244, 114, 182, 0.6));
    color: #f9a8d4;
    border-color: rgba(236, 72, 153, 0.7);
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-4 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5), rgba(251, 191, 36, 0.6));
    color: #fde047;
    border-color: rgba(251, 191, 36, 0.7);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-5 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.5), rgba(74, 222, 128, 0.6));
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.7);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-6 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.5), rgba(248, 113, 113, 0.6));
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.7);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-anasayfa-card-buttons {
    margin: 1.25rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-blog-anasayfa-card-buttons .korhan-mustafa-imrak-btn {
    font-size: 1.05rem;
}
.korhan-mustafa-imrak-blog-anasayfa-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
}
.korhan-mustafa-imrak-blog-anasayfa-card .korhan-mustafa-imrak-yorumlar-card-avatar img {
    object-fit: cover;
    border-radius: 50%;
}
.korhan-mustafa-imrak-yazilimlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.korhan-mustafa-imrak-yazilimlar-main {
    padding-top: 2rem;
}
.korhan-mustafa-imrak-yazilimlar-grid.korhan-mustafa-imrak-yazilimlar-devrim {
    gap: 1.75rem;
}
.korhan-mustafa-imrak-yazilim-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.korhan-mustafa-imrak-yazilim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(239, 68, 68, 0.25);
}
/* DEVRİM: Yazılım kartları - Ürün Detayı & Satın Al butonları */
.korhan-mustafa-imrak-yazilim-card-devrim {
    display: block;
    border-radius: var(--radius);
    overflow: visible;
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 4px 24px rgba(127, 29, 29, 0.06);
}
.korhan-mustafa-imrak-yazilim-card-devrim:hover .korhan-mustafa-imrak-yazilim-card-inner {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.25), 0 0 0 1px rgba(239, 68, 68, 0.08);
    transform: translateY(-8px);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-card-img img {
    transition: transform 0.6s var(--ease-out-expo);
}
.korhan-mustafa-imrak-yazilim-card-devrim:hover .korhan-mustafa-imrak-yazilim-card-img img {
    transform: scale(1.08);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-card-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-yazilim-card-devrim h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    transition: color 0.3s ease;
}
.korhan-mustafa-imrak-yazilim-card-devrim:hover h4 {
    color: var(--accent);
}
.korhan-mustafa-imrak-yazilim-card-devrim p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-fiyat {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-btn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.3));
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-detay,
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-satin {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s var(--ease-out-expo);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-detay {
    background: var(--gradient-btn) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-detay:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5), 0 0 40px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-satin {
    background: transparent !important;
    border: 2px solid rgba(127, 29, 29, 0.6) !important;
    color: #b91c1c !important;
}
.korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-satin:hover {
    background: rgba(127, 29, 29, 0.1) !important;
    border-color: #b91c1c !important;
    box-shadow: 0 0 25px rgba(127, 29, 29, 0.35);
    transform: translateY(-3px);
}
@media (max-width: 480px) {
    .korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-card-buttons {
        flex-direction: column;
    }
    .korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-detay,
    .korhan-mustafa-imrak-yazilim-card-devrim .korhan-mustafa-imrak-yazilim-btn-satin {
        min-width: 100%;
    }
}
.korhan-mustafa-imrak-yazilim-card-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}
.korhan-mustafa-imrak-yazilim-card:hover .korhan-mustafa-imrak-yazilim-card-inner {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-yazilim-card-img {
    height: 160px;
    overflow: hidden;
    background: #e2e8f0;
}
.korhan-mustafa-imrak-yazilim-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.korhan-mustafa-imrak-yazilim-card:hover .korhan-mustafa-imrak-yazilim-card-img img {
    transform: scale(1.05);
}
.korhan-mustafa-imrak-yazilim-card-placeholder {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #14b8a6 100%);
    color: rgba(255,255,255,0.8);
    font-size: 3rem;
}
.korhan-mustafa-imrak-yazilim-card h4 {
    padding: 1rem 1.25rem 0.5rem;
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    transition: color var(--transition);
}
.korhan-mustafa-imrak-yazilim-card:hover h4 {
    color: var(--accent);
}
.korhan-mustafa-imrak-yazilim-card p {
    padding: 0 1.25rem 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}
.korhan-mustafa-imrak-yazilim-card .korhan-mustafa-imrak-yazilim-fiyat {
    padding: 0 1.25rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}
.korhan-mustafa-imrak-yazilim-card .korhan-mustafa-imrak-yazilim-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 1.25rem 1.25rem;
    font-size: 0.8rem;
    color: var(--accent);
}
.korhan-mustafa-imrak-yazi-fiyat {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.5rem;
}
.korhan-mustafa-imrak-yazi-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* ===== Scripts Grid ===== */
.korhan-mustafa-imrak-scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.korhan-mustafa-imrak-script-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.korhan-mustafa-imrak-script-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.korhan-mustafa-imrak-script-card h3 { margin-bottom: 0.5rem; color: var(--primary); }
.korhan-mustafa-imrak-script-card .korhan-mustafa-imrak-aciklama { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.korhan-mustafa-imrak-script-card .korhan-mustafa-imrak-fiyat { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.korhan-mustafa-imrak-script-card .korhan-mustafa-imrak-fiyat span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }

/* ===== Info Box ===== */
.korhan-mustafa-imrak-info-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}
.korhan-mustafa-imrak-info-box h2 { margin-bottom: 1rem; }
.korhan-mustafa-imrak-iban-display {
    background: var(--light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0.5rem 0;
}

/* ===== Blog - DEVRİM NİTELİĞİNDE ===== */
.korhan-mustafa-imrak-blog-hero-section {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    overflow: hidden;
}
.korhan-mustafa-imrak-blog-hero-section.korhan-mustafa-imrak-blog-yazi-hero { min-height: 38vh; }
.korhan-mustafa-imrak-blog-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 40%, #991b1b 70%, #b91c1c 100%);
}
.korhan-mustafa-imrak-blog-hero-mesh {
    position: absolute;
    inset: -50%;
    background-size: 200% 200%;
    background-image: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.4) 0%, transparent 50%);
    pointer-events: none;
    animation: heroMeshMove 18s ease-in-out infinite;
}
.korhan-mustafa-imrak-blog-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(50px, 10vw, 80px));
    opacity: 0.5;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-hero-orb-1 {
    width: clamp(150px, 30vw, 350px);
    height: clamp(150px, 30vw, 350px);
    background: rgba(127, 29, 29, 0.5);
    top: -100px;
    left: -80px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-blog-hero-orb-2 {
    width: clamp(120px, 25vw, 280px);
    height: clamp(120px, 25vw, 280px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -80px;
    right: -60px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-blog-hero-orb-3 {
    width: clamp(80px, 15vw, 180px);
    height: clamp(80px, 15vw, 180px);
    background: rgba(153, 27, 27, 0.4);
    top: 50%;
    right: 15%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-blog-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: clamp(35px, 6vw, 55px) clamp(35px, 6vw, 55px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
    animation: heroGridPulse 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-blog-hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.3), transparent, rgba(127, 29, 29, 0.2), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}
.korhan-mustafa-imrak-blog-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-blog-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.6);
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-blog-particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.korhan-mustafa-imrak-blog-particle:nth-child(2) { left: 70%; top: 60%; animation-delay: -4s; }
.korhan-mustafa-imrak-blog-particle:nth-child(3) { left: 85%; top: 30%; animation-delay: -7s; }
.korhan-mustafa-imrak-blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.korhan-mustafa-imrak-blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-blog-hero-title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.korhan-mustafa-imrak-blog-hero-desc {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-blog-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Blog Stats */
.korhan-mustafa-imrak-blog-stats-section { padding: clamp(2rem, 5vw, 3rem) 1.5rem; }
.korhan-mustafa-imrak-blog-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-blog-stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-blog-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-blog-stat-num {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.korhan-mustafa-imrak-blog-stat-icon .korhan-mustafa-imrak-blog-stat-num { font-size: 1.75rem; }
.korhan-mustafa-imrak-blog-stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Blog Main */
.korhan-mustafa-imrak-blog-main-section { padding: clamp(2rem, 5vw, 4rem) 1.5rem; }
.korhan-mustafa-imrak-blog-main-inner { max-width: 1200px; margin: 0 auto; }
.korhan-mustafa-imrak-blog-section-header { text-align: center; margin-bottom: 2.5rem; }
.korhan-mustafa-imrak-blog-section-header h2 { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-blog-section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-blog-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-card {
        max-width: 360px;
        width: 100%;
    }
}
.korhan-mustafa-imrak-blog-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -15px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-blog-card-img-wrap {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.5);
}
.korhan-mustafa-imrak-blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}
.korhan-mustafa-imrak-blog-card:hover .korhan-mustafa-imrak-blog-card-img-wrap img {
    transform: scale(1.08);
}
.korhan-mustafa-imrak-blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    color: var(--accent);
    font-size: 2.5rem;
    opacity: 0.6;
}
.korhan-mustafa-imrak-blog-card-date {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(10, 10, 10, 0.8);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}
.korhan-mustafa-imrak-blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.korhan-mustafa-imrak-blog-card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    line-height: 1.35;
}
.korhan-mustafa-imrak-blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.korhan-mustafa-imrak-blog-card-body h3 a:hover { color: var(--accent); }
.korhan-mustafa-imrak-blog-card-ozet {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}
.korhan-mustafa-imrak-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}
.korhan-mustafa-imrak-blog-card-link:hover { gap: 0.75rem; color: var(--accent-hover); }

/* Blog Empty */
.korhan-mustafa-imrak-blog-empty {
    background: var(--bg-card);
    border: 1px dashed var(--border-subtle);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}
.korhan-mustafa-imrak-blog-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.korhan-mustafa-imrak-blog-empty-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.8;
}
.korhan-mustafa-imrak-blog-empty h3 { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-blog-empty p { color: var(--muted); margin-bottom: 0; }

/* Blog Yazı Detay */
.korhan-mustafa-imrak-blog-yazi-content-section { padding: clamp(2rem, 5vw, 4rem) 1.5rem; }
.korhan-mustafa-imrak-blog-yazi-wrap { max-width: 800px; margin: 0 auto; }
.korhan-mustafa-imrak-blog-yazi-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.5s ease;
}
.korhan-mustafa-imrak-blog-yazi-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 30px 70px -15px rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-blog-yazi-kapak {
    margin: 0 0 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.korhan-mustafa-imrak-blog-yazi-kapak img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.korhan-mustafa-imrak-blog-yazi-icerik {
    margin-bottom: 2rem;
}
.korhan-mustafa-imrak-blog-yazi-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

/* Blog Detay - Sidebar + Anahtar Kelimeler + Yorumlar */
.korhan-mustafa-imrak-blog-detail-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-blog-detail-wrap { grid-template-columns: 1fr; }
}
.korhan-mustafa-imrak-blog-detail-main { min-width: 0; }

/* Anahtar Kelimeler - Farklı renk sınıfları */
.korhan-mustafa-imrak-blog-anahtar-kelimeler {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-blog-anahtar-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.korhan-mustafa-imrak-blog-anahtar-label i { color: var(--accent); margin-right: 0.35rem; }
.korhan-mustafa-imrak-blog-anahtar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-blog-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: pointer;
}
a.korhan-mustafa-imrak-blog-tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.korhan-mustafa-imrak-blog-card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.5rem 0; }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-blog-tag-sm { padding: 0.2rem 0.5rem; font-size: 0.75rem; }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-1 { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.3)); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.4); }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-2 { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.3)); color: #6366f1; border: 1px solid rgba(99, 102, 241, 0.4); }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-3 { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.3)); color: #ec4899; border: 1px solid rgba(236, 72, 153, 0.4); }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-4 { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.3)); color: #d97706; border: 1px solid rgba(245, 158, 11, 0.4); }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-5 { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.3)); color: #16a34a; border: 1px solid rgba(34, 197, 94, 0.4); }
.korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-6 { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.3)); color: #dc2626; border: 1px solid rgba(239, 68, 68, 0.4); }

/* Blog sayfası etiketleri - DEVRİM niteliğinde (liste + yazı detay) */
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag {
    font-weight: 700;
    letter-spacing: 0.03em;
    border-width: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag:hover,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-1,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-1 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(239, 68, 68, 0.5));
    color: #5eead4;
    border-color: rgba(239, 68, 68, 0.7);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-2,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-2 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(129, 140, 248, 0.6));
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.7);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-3,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.5), rgba(244, 114, 182, 0.6));
    color: #f9a8d4;
    border-color: rgba(236, 72, 153, 0.7);
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-4,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-4 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5), rgba(251, 191, 36, 0.6));
    color: #fde047;
    border-color: rgba(251, 191, 36, 0.7);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-5,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-5 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.5), rgba(74, 222, 128, 0.6));
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.7);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}
.korhan-mustafa-imrak-blog-grid .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-6,
.korhan-mustafa-imrak-blog-anahtar-list .korhan-mustafa-imrak-blog-tag.korhan-mustafa-imrak-tag-6 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.5), rgba(248, 113, 113, 0.6));
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.7);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* Blog Yorumlar */
.korhan-mustafa-imrak-blog-yorumlar-block, .korhan-mustafa-imrak-blog-yorum-form-wrap {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
}
.korhan-mustafa-imrak-blog-yorumlar-title, .korhan-mustafa-imrak-blog-yorum-form-title {
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
.korhan-mustafa-imrak-blog-yorumlar-title i, .korhan-mustafa-imrak-blog-yorum-form-title i { color: var(--accent); margin-right: 0.5rem; }
.korhan-mustafa-imrak-blog-yorumlar-list { display: flex; flex-direction: column; gap: 1.25rem; }
.korhan-mustafa-imrak-blog-yorum-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}
.korhan-mustafa-imrak-blog-yorum-item:last-child { border-bottom: none; }
.korhan-mustafa-imrak-blog-yorum-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(239, 68, 68, 0.3);
}
.korhan-mustafa-imrak-blog-yorum-avatar img { width: 100%; height: 100%; object-fit: cover; }
.korhan-mustafa-imrak-blog-yorum-body { flex: 1; min-width: 0; }
.korhan-mustafa-imrak-blog-yorum-ad { font-weight: 600; font-style: normal; display: block; margin-bottom: 0.15rem; }
.korhan-mustafa-imrak-blog-yorum-tarih { font-size: 0.8rem; color: var(--muted); }
.korhan-mustafa-imrak-blog-yorum-text { margin: 0.5rem 0 0; font-size: 0.95rem; line-height: 1.6; }
.korhan-mustafa-imrak-blog-yorumlar-empty { color: var(--muted); margin: 0; }

/* Blog Yorum Formu */
.korhan-mustafa-imrak-blog-yorum-form .korhan-mustafa-imrak-yorum-form-row { grid-template-columns: 1fr 1fr; }
@media (max-width: 500px) {
    .korhan-mustafa-imrak-blog-yorum-form .korhan-mustafa-imrak-yorum-form-row { grid-template-columns: 1fr; }
}

/* Sidebar */
.korhan-mustafa-imrak-blog-detail-sidebar { position: sticky; top: 100px; }
.korhan-mustafa-imrak-blog-sidebar-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-blog-sidebar-title i { color: var(--accent); }
.korhan-mustafa-imrak-blog-sidebar-list, .korhan-mustafa-imrak-blog-sidebar-yorumlar { list-style: none; margin: 0; padding: 0; }
.korhan-mustafa-imrak-blog-sidebar-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    border-radius: var(--radius-sm);
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.korhan-mustafa-imrak-blog-sidebar-item:hover { background: rgba(239, 68, 68, 0.06); }
.korhan-mustafa-imrak-blog-sidebar-item:last-child { border-bottom: none; }
.korhan-mustafa-imrak-blog-sidebar-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(239, 68, 68, 0.1);
}
.korhan-mustafa-imrak-blog-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.korhan-mustafa-imrak-blog-sidebar-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    opacity: 0.7;
}
.korhan-mustafa-imrak-blog-sidebar-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.korhan-mustafa-imrak-blog-sidebar-baslik { font-size: 0.9rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.korhan-mustafa-imrak-blog-sidebar-item:hover .korhan-mustafa-imrak-blog-sidebar-baslik { color: var(--accent); }
.korhan-mustafa-imrak-blog-sidebar-tarih { font-size: 0.75rem; color: var(--muted); }
.korhan-mustafa-imrak-blog-sidebar-empty { color: var(--muted); font-size: 0.9rem; margin: 0; }
.korhan-mustafa-imrak-blog-sidebar-yorumlar li { margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-blog-sidebar-yorum-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.korhan-mustafa-imrak-blog-sidebar-yorum-item:hover { background: rgba(239, 68, 68, 0.06); }
.korhan-mustafa-imrak-blog-sidebar-yorum-avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}
.korhan-mustafa-imrak-blog-sidebar-yorum-avatar img { width: 100%; height: 100%; object-fit: cover; }
.korhan-mustafa-imrak-blog-sidebar-yorum-text { flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.korhan-mustafa-imrak-blog-sidebar-cta {
    padding: 1.5rem;
    text-align: center;
}
.korhan-mustafa-imrak-blog-sidebar-cta h4 { font-size: 1rem; margin: 0 0 1rem; }
.korhan-mustafa-imrak-blog-sidebar-cta .korhan-mustafa-imrak-btn { width: 100%; justify-content: center; }

/* Eski blog (geriye uyumluluk) */
.korhan-mustafa-imrak-blog-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); padding: clamp(2rem, 4vw, 3rem) 1.5rem; text-align: center; }
.korhan-mustafa-imrak-blog-hero h1 { color: var(--white); }
.korhan-mustafa-imrak-blog-container { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; }
.korhan-mustafa-imrak-blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.korhan-mustafa-imrak-blog-item { background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; }
.korhan-mustafa-imrak-blog-item h2 a { color: inherit; text-decoration: none; transition: color var(--transition); }
.korhan-mustafa-imrak-blog-item h2 a:hover { color: var(--accent); }
.korhan-mustafa-imrak-blog-item .korhan-mustafa-imrak-tarih { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-blog-item .korhan-mustafa-imrak-ozet { color: var(--muted); font-size: 0.95rem; }
.korhan-mustafa-imrak-blog-item-img { display: block; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 0.75rem; }
.korhan-mustafa-imrak-blog-item-img img { width: 100%; height: 180px; object-fit: cover; transition: transform var(--transition); }
.korhan-mustafa-imrak-blog-item-img:hover img { transform: scale(1.03); }

/* ===== Blog Yazı Detay (yazi-icerik) ===== */
.korhan-mustafa-imrak-yazi-container { max-width: 800px; margin: 2rem auto; padding: 0 1.5rem; }
.korhan-mustafa-imrak-yazi-header { margin-bottom: 1.5rem; }
.korhan-mustafa-imrak-yazi-baslik { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.5rem; }
.korhan-mustafa-imrak-yazi-tarih { font-size: 0.9rem; color: var(--muted); }
.korhan-mustafa-imrak-yazi-kapak { margin: 0 0 1rem; border-radius: var(--radius); overflow: hidden; }
.korhan-mustafa-imrak-yazi-kapak img { width: 100%; max-height: 400px; object-fit: cover; }
/* ===== SAYFALAR - DEVRİM NİTELİĞİNDE ===== */
.korhan-mustafa-imrak-sayfa-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    overflow: hidden;
}
.korhan-mustafa-imrak-sayfa-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 40%, #991b1b 70%, #b91c1c 100%);
}
/* Görsel varsa gradient hafif - görsel öne çıksın */
.korhan-mustafa-imrak-sayfa-hero-bg.korhan-mustafa-imrak-sayfa-hero-has-image {
    background: transparent;
}
/* Kapak fotoğrafı - Admin'den yüklenen arka plan (Slider gibi) */
.korhan-mustafa-imrak-sayfa-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.korhan-mustafa-imrak-sayfa-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.korhan-mustafa-imrak-sayfa-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.91) 0%, rgba(127, 29, 29, 0.7) 50%, rgba(127, 29, 29, 0.56) 100%);
    pointer-events: none;
}
.korhan-mustafa-imrak-sayfa-hero-mesh,
.korhan-mustafa-imrak-sayfa-hero-orb,
.korhan-mustafa-imrak-sayfa-hero-grid,
.korhan-mustafa-imrak-sayfa-hero-glow,
.korhan-mustafa-imrak-sayfa-hero-particles {
    z-index: 0;
}
.korhan-mustafa-imrak-sayfa-hero-mesh {
    position: absolute;
    inset: -50%;
    background-size: 200% 200%;
    background-image: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(127, 29, 29, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(153, 27, 27, 0.4) 0%, transparent 50%);
    pointer-events: none;
    animation: heroMeshMove 18s ease-in-out infinite;
}
.korhan-mustafa-imrak-sayfa-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(50px, 10vw, 80px));
    opacity: 0.5;
    pointer-events: none;
}
.korhan-mustafa-imrak-sayfa-hero-orb-1 {
    width: clamp(150px, 30vw, 350px);
    height: clamp(150px, 30vw, 350px);
    background: rgba(127, 29, 29, 0.5);
    top: -100px;
    left: -80px;
    animation: heroOrbFloat1 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-sayfa-hero-orb-2 {
    width: clamp(120px, 25vw, 280px);
    height: clamp(120px, 25vw, 280px);
    background: rgba(127, 29, 29, 0.4);
    bottom: -80px;
    right: -60px;
    animation: heroOrbFloat2 16s ease-in-out infinite 2s;
}
.korhan-mustafa-imrak-sayfa-hero-orb-3 {
    width: clamp(80px, 15vw, 180px);
    height: clamp(80px, 15vw, 180px);
    background: rgba(153, 27, 27, 0.4);
    top: 50%;
    right: 15%;
    animation: heroOrbFloat3 12s ease-in-out infinite 1s;
}
.korhan-mustafa-imrak-sayfa-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(127, 29, 29, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: clamp(35px, 6vw, 55px) clamp(35px, 6vw, 55px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
    animation: heroGridPulse 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-sayfa-hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(127, 29, 29, 0.3), transparent, rgba(127, 29, 29, 0.2), transparent);
    animation: heroGlowRotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}
.korhan-mustafa-imrak-sayfa-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-sayfa-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.6);
    animation: heroParticleFloat 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-sayfa-particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.korhan-mustafa-imrak-sayfa-particle:nth-child(2) { left: 70%; top: 60%; animation-delay: -4s; }
.korhan-mustafa-imrak-sayfa-particle:nth-child(3) { left: 85%; top: 30%; animation-delay: -7s; }
.korhan-mustafa-imrak-sayfa-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.korhan-mustafa-imrak-sayfa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-sayfa-hero-title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.korhan-mustafa-imrak-sayfa-hero-desc {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.5rem;
}
.korhan-mustafa-imrak-sayfa-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Sayfa İçerik */
.korhan-mustafa-imrak-sayfa-content-section {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.korhan-mustafa-imrak-sayfa-content-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-sayfa-content-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-sayfa-content-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 30px 70px -15px rgba(239, 68, 68, 0.15);
}
.korhan-mustafa-imrak-sayfa-icerik {
    line-height: 1.8;
}
.korhan-mustafa-imrak-sayfa-icerik p { margin-bottom: 1rem; }
.korhan-mustafa-imrak-sayfa-icerik p:last-child { margin-bottom: 0; }
.korhan-mustafa-imrak-sayfa-icerik a { color: var(--accent); }
.korhan-mustafa-imrak-sayfa-icerik a:hover { text-decoration: underline; }
.korhan-mustafa-imrak-sayfa-cta-wrap {
    text-align: center;
    margin-top: 2rem;
}
.korhan-mustafa-imrak-sayfa-kapak {
    margin: 0 0 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.korhan-mustafa-imrak-sayfa-kapak img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}
.korhan-mustafa-imrak-sayfa-kapak::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.91) 0%, rgba(127, 29, 29, 0.7) 50%, rgba(127, 29, 29, 0.56) 100%);
    pointer-events: none;
}

/* Hizmetler Grid (Hizmetlerimiz sayfası) */
.korhan-mustafa-imrak-sayfa-hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-sayfa-hizmet-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.korhan-mustafa-imrak-sayfa-hizmet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -15px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-sayfa-hizmet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-sayfa-hizmet-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.korhan-mustafa-imrak-sayfa-hizmet-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

/* İletişim Grid */
.korhan-mustafa-imrak-sayfa-iletisim-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
}
.korhan-mustafa-imrak-sayfa-iletisim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.korhan-mustafa-imrak-sayfa-iletisim-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, background 0.3s;
    text-decoration: none;
    color: inherit;
}
.korhan-mustafa-imrak-sayfa-iletisim-item:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
.korhan-mustafa-imrak-sayfa-iletisim-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.korhan-mustafa-imrak-sayfa-iletisim-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.korhan-mustafa-imrak-sayfa-iletisim-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.korhan-mustafa-imrak-sayfa-iletisim-item .korhan-mustafa-imrak-phone-link {
    color: var(--accent) !important;
    font-weight: 600;
}

/* ===== İletişim Form - DEVRİM ===== */
.korhan-mustafa-imrak-iletisim-form-section {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.korhan-mustafa-imrak-iletisim-form-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-iletisim-two-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-iletisim-two-col { grid-template-columns: 1fr; }
}
.korhan-mustafa-imrak-iletisim-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
}
.korhan-mustafa-imrak-iletisim-info-card h3 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-iletisim-info-card h3:first-child { margin-top: 0; }
.korhan-mustafa-imrak-iletisim-info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.korhan-mustafa-imrak-iletisim-info-card a:hover { color: var(--accent); }
.korhan-mustafa-imrak-iletisim-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
}

/* ===== Anasayfa İletişim Formu - DEVRİM Niteliğinde ===== */
.korhan-mustafa-imrak-section-iletisim-anasayfa {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 50%, #991b1b 100%);
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.korhan-mustafa-imrak-iletisim-anasayfa-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-iletisim-anasayfa-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-iletisim-anasayfa-particles .korhan-mustafa-imrak-sayfa-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: sayfaParticleFloat 20s ease-in-out infinite;
}
.korhan-mustafa-imrak-iletisim-anasayfa-particles .korhan-mustafa-imrak-sayfa-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.korhan-mustafa-imrak-iletisim-anasayfa-particles .korhan-mustafa-imrak-sayfa-particle:nth-child(2) { top: 70%; right: 20%; animation-delay: -7s; }
.korhan-mustafa-imrak-iletisim-anasayfa-particles .korhan-mustafa-imrak-sayfa-particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: -14s; }
@keyframes sayfaParticleFloat {
    0%, 100% { opacity: 0.3; transform: translate(0, 0); }
    25% { opacity: 0.8; transform: translate(30px, -30px); }
    50% { opacity: 0.4; transform: translate(-20px, 20px); }
    75% { opacity: 0.7; transform: translate(15px, 15px); }
}
.korhan-mustafa-imrak-iletisim-anasayfa-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-section-title-uzman,
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-uzman-main-title,
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-uzman-desc,
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-iletisim-anasayfa-grid {
    position: relative;
    z-index: 1;
}
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-uzman-desc {
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.korhan-mustafa-imrak-iletisim-anasayfa-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
    text-align: left;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-iletisim-anasayfa-grid { grid-template-columns: 1fr; }
}
.korhan-mustafa-imrak-iletisim-anasayfa-info {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 29, 29, 0.25);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.korhan-mustafa-imrak-iletisim-anasayfa-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.4), rgba(127, 29, 29, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-iletisim-anasayfa-info h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}
.korhan-mustafa-imrak-iletisim-anasayfa-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin: 0;
}
.korhan-mustafa-imrak-iletisim-anasayfa-info .korhan-mustafa-imrak-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.korhan-mustafa-imrak-iletisim-anasayfa-form-wrap {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 29, 29, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
}
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-form-devrim label { color: rgba(255,255,255,0.95); }
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-form-devrim input,
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-form-devrim textarea {
    background: rgba(10, 10, 10, 0.7);
    border-color: rgba(127, 29, 29, 0.3);
    color: #fff;
}
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-form-devrim input:focus,
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-form-devrim textarea:focus {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
    background: rgba(10, 10, 10, 0.85);
}
.korhan-mustafa-imrak-section-iletisim-anasayfa .korhan-mustafa-imrak-yorum-submit {
    margin-top: 0.5rem;
}

/* ===== Anasayfa İletişim — REVOLUTION (index) ===== */
.korhan-mustafa-imrak-iletisim-anasayfa-revolution.korhan-mustafa-imrak-section-iletisim-anasayfa {
    text-align: left;
    background: #060606;
    color: #fafafa;
    border-top: 1px solid rgba(239, 68, 68, 0.14);
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5rem);
    transition: border-color 0.65s var(--ease-out-expo), box-shadow 0.65s var(--ease-out-expo);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution.korhan-mustafa-imrak-section.korhan-mustafa-imrak-visible {
    border-top-color: rgba(248, 113, 113, 0.26);
    box-shadow: 0 28px 72px -42px rgba(239, 68, 68, 0.14);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-beams {
    position: absolute;
    inset: -66%;
    background:
        conic-gradient(from 173deg at 43% 41%,
            transparent 0deg,
            rgba(239, 68, 68, 0.092) 52deg,
            transparent 98deg,
            rgba(127, 29, 29, 0.13) 168deg,
            transparent 242deg,
            rgba(239, 68, 68, 0.055) 312deg,
            transparent 360deg);
    animation: korhanIletisimRevBeams 38s linear infinite;
    opacity: 0.88;
}
@keyframes korhanIletisimRevBeams {
    to { transform: rotate(360deg); }
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 76% 72% at 50% 38%, transparent 14%, rgba(0, 0, 0, 0.78) 100%);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.17) 3px,
        rgba(0, 0, 0, 0.17) 4px
    );
    opacity: 0.28;
    mix-blend-mode: multiply;
    animation: korhanIletisimRevScan 15.5s linear infinite;
}
@keyframes korhanIletisimRevScan {
    0%, 100% { opacity: 0.22; }
    50% { opacity: 0.34; }
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-gridfx {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(104deg, rgba(239, 68, 68, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: clamp(26px, 4.5vw, 46px) clamp(26px, 4.5vw, 46px);
    mask-image: radial-gradient(ellipse 90% 76% at 50% 42%, black 16%, transparent 78%);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-bg .korhan-mustafa-imrak-iletisim-anasayfa-particles {
    z-index: 1;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.75rem 2.25rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-head-main {
    text-align: left;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 202, 202, 0.95);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-eyebrow-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: korhanIletisimRevPulse 2.35s ease-out infinite;
}
@keyframes korhanIletisimRevPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
    70% { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fafafa;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-title-accent {
    font-style: normal;
    background: linear-gradient(118deg, #fff 0%, #fecaca 40%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-lead {
    margin: 0;
    max-width: 38rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-lead-marka {
    font-weight: 700;
    color: #fecaca;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.26);
    background: linear-gradient(165deg, rgba(12, 12, 13, 0.96) 0%, rgba(5, 5, 6, 0.98) 100%);
    box-shadow:
        0 26px 58px -26px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.85rem;
    background: rgba(0, 0, 0, 0.46);
    border-bottom: 1px solid rgba(239, 68, 68, 0.14);
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.85);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-bar span:nth-child(1) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-bar span:nth-child(2) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.72);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-bar span:nth-child(3) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-bar code {
    margin-left: auto;
    font-size: 0.6rem;
    color: rgba(244, 244, 245, 0.52);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-body {
    padding: 0.92rem 1rem 1.05rem;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.72;
    color: rgba(228, 228, 231, 0.88);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-terminal-prompt {
    display: inline-block;
    margin-right: 0.35rem;
    color: #ef4444;
    font-weight: 700;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-inner.korhan-mustafa-imrak-iletisim-anasayfa-inner {
    max-width: none;
    margin: 0;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-grid.korhan-mustafa-imrak-iletisim-anasayfa-grid {
    gap: clamp(1.25rem, 3vw, 2rem);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel {
    position: relative;
    border-radius: 2px 20px 20px 2px;
    background: linear-gradient(165deg, rgba(18, 18, 20, 0.92) 0%, rgba(8, 8, 10, 0.95) 100%);
    border: 1px solid rgba(239, 68, 68, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 56px -28px rgba(0, 0, 0, 0.65);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel:hover {
    border-color: rgba(248, 113, 113, 0.4);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ef4444 0%, rgba(239, 68, 68, 0.18) 62%, transparent 100%);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.94;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel:hover .korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel-rail {
    opacity: 1;
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel.korhan-mustafa-imrak-iletisim-anasayfa-info {
    padding-left: calc(2rem + 14px);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution-panel.korhan-mustafa-imrak-iletisim-anasayfa-form-wrap {
    padding-left: calc(2.5rem + 14px);
}
.korhan-mustafa-imrak-iletisim-anasayfa-revolution .korhan-mustafa-imrak-iletisim-anasayfa-info-icon {
    background: linear-gradient(165deg, rgba(239, 68, 68, 0.22), rgba(127, 29, 29, 0.35));
    border: 1px solid rgba(239, 68, 68, 0.28);
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-iletisim-anasayfa-revolution-head {
        grid-template-columns: 1fr;
    }
}

.korhan-mustafa-imrak-yazi-icerik { line-height: 1.8; }
.korhan-mustafa-imrak-yazi-icerik img { max-width: 100%; height: auto; }

/* ===== Back Link ===== */
.korhan-mustafa-imrak-back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
.korhan-mustafa-imrak-back-link:hover { color: var(--accent-hover); }

/* ===== Utility ===== */
img { max-width: 100%; height: auto; display: block; }
a { transition: color var(--transition), opacity var(--transition); }

/* ========== DEVRİM NİTELİĞİNDE ANİMASYONLAR ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.5); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes gradient-text-shine {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(5deg) brightness(1.05); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}

/* Scroll-triggered reveal - başlangıçta gizli */
.korhan-mustafa-imrak-animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-visible {
    opacity: 1;
    transform: translateY(0);
}
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-scale {
    transform: translateY(40px) scale(0.95);
}
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-scale.korhan-mustafa-imrak-visible {
    transform: translateY(0) scale(1);
}
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-left { transform: translateX(-50px); }
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-left.korhan-mustafa-imrak-visible { transform: translateX(0); }
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-right { transform: translateX(50px); }
.korhan-mustafa-imrak-animate-on-scroll.korhan-mustafa-imrak-animate-right.korhan-mustafa-imrak-visible { transform: translateX(0); }

/* Stagger delay sınıfları */
.korhan-mustafa-imrak-delay-1 { transition-delay: 0.1s; }
.korhan-mustafa-imrak-delay-2 { transition-delay: 0.2s; }
.korhan-mustafa-imrak-delay-3 { transition-delay: 0.3s; }
.korhan-mustafa-imrak-delay-4 { transition-delay: 0.4s; }
.korhan-mustafa-imrak-delay-5 { transition-delay: 0.5s; }
.korhan-mustafa-imrak-delay-6 { transition-delay: 0.6s; }
.korhan-mustafa-imrak-delay-7 { transition-delay: 0.7s; }
.korhan-mustafa-imrak-delay-8 { transition-delay: 0.8s; }

/* Hero - İlk yükleme animasyonları */
.korhan-mustafa-imrak-hero.korhan-mustafa-imrak-animate-ready .korhan-mustafa-imrak-hero-badge { animation: fadeInUp 0.8s var(--ease-out-expo) forwards; opacity: 0; }
.korhan-mustafa-imrak-hero.korhan-mustafa-imrak-animate-ready .korhan-mustafa-imrak-hero-title { animation: fadeInUp 0.9s var(--ease-out-expo) 0.1s forwards; opacity: 0; }
.korhan-mustafa-imrak-hero.korhan-mustafa-imrak-animate-ready .korhan-mustafa-imrak-hero-tagline { animation: fadeInUp 0.9s var(--ease-out-expo) 0.25s forwards; opacity: 0; }
.korhan-mustafa-imrak-hero.korhan-mustafa-imrak-animate-ready .korhan-mustafa-imrak-hero-desc { animation: fadeInUp 0.9s var(--ease-out-expo) 0.4s forwards; opacity: 0; }
.korhan-mustafa-imrak-hero.korhan-mustafa-imrak-animate-ready .korhan-mustafa-imrak-hero-buttons { animation: fadeInUp 0.9s var(--ease-out-expo) 0.55s forwards; opacity: 0; }

/* Gradient başlık - canlı renk geçişi */
.korhan-mustafa-imrak-gradient-text {
    background: linear-gradient(135deg, #0a0a0a 0%, #7f1d1d 25%, #991b1b 50%, #b91c1c 75%, #450a0a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-text 8s ease infinite;
    font-weight: 800;
}

/* Premium butonlar - gradient & glow */
.korhan-mustafa-imrak-btn-devrim {
    background: var(--gradient-btn) !important;
    border: none !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 4px 25px rgba(239, 68, 68, 0.3);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease !important;
    position: relative;
    overflow: hidden;
}
.korhan-mustafa-imrak-btn-devrim:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-btn-devrim:active { transform: translateY(-1px) scale(0.98); }
.korhan-mustafa-imrak-btn-devrim-outline {
    background: transparent !important;
    border: 2px solid var(--accent) !important;
    color: var(--accent) !important;
    transition: all 0.35s var(--ease-out-expo) !important;
    position: relative;
    overflow: hidden;
}
.korhan-mustafa-imrak-btn-devrim-outline:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Ripple efekti */
.korhan-mustafa-imrak-btn-ripple {
    position: relative;
}
.korhan-mustafa-imrak-btn-ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.6s, opacity 0.4s;
    pointer-events: none;
}
.korhan-mustafa-imrak-btn-ripple:active::after {
    opacity: 1;
    transform: scale(2);
    transition: 0s;
}

/* Kart animasyonları - glass morphism + hover glow */
.korhan-mustafa-imrak-card-devrim {
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease, background 0.4s ease;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}
.korhan-mustafa-imrak-card-devrim:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px -15px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}
.korhan-mustafa-imrak-service-card.korhan-mustafa-imrak-card-devrim:hover { 
    transform: translateY(-10px) scale(1.03); 
    box-shadow: 0 30px 60px -15px rgba(239, 68, 68, 0.2);
}
.korhan-mustafa-imrak-vision-card.korhan-mustafa-imrak-card-devrim,
.korhan-mustafa-imrak-privilege-item.korhan-mustafa-imrak-card-devrim { 
    background: var(--bg-card);
    backdrop-filter: blur(8px);
}
.korhan-mustafa-imrak-vision-card.korhan-mustafa-imrak-card-devrim:hover { transform: translateY(-8px); }
.korhan-mustafa-imrak-team-card.korhan-mustafa-imrak-card-devrim:hover { transform: translateY(-10px); }
.korhan-mustafa-imrak-privilege-item.korhan-mustafa-imrak-card-devrim:hover { transform: translateY(-8px); }
.korhan-mustafa-imrak-testimonial.korhan-mustafa-imrak-card-devrim {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
}
.korhan-mustafa-imrak-testimonial.korhan-mustafa-imrak-card-devrim:hover { 
    box-shadow: 0 25px 60px -15px rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}

/* Hero section - DEVRİM NİTELİĞİNDE */
.korhan-mustafa-imrak-hero-devrim { position: relative; overflow: hidden; }
.korhan-mustafa-imrak-hero-devrim .korhan-mustafa-imrak-hero-content { position: relative; z-index: 2; width: 100%; }

/* Animasyonlu gradient mesh arka plan */
.korhan-mustafa-imrak-hero-bg-mesh {
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(239, 68, 68, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(127, 29, 29, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(239, 68, 68, 0.2) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: meshMove 15s ease-in-out infinite;
    pointer-events: none;
}
@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -3%) scale(1.05); }
    66% { transform: translate(-2%, 2%) scale(0.98); }
}

/* Yüzen orb'lar */
.korhan-mustafa-imrak-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-orb-1 {
    width: 400px; height: 400px;
    background: rgba(239, 68, 68, 0.4);
    top: -100px; left: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(127, 29, 29, 0.35);
    bottom: -50px; right: -50px;
    animation: orbFloat2 14s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-orb-3 {
    width: 200px; height: 200px;
    background: rgba(239, 68, 68, 0.3);
    top: 50%; left: 10%;
    animation: orbFloat3 10s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-orb-4 {
    width: 150px; height: 150px;
    background: rgba(127, 29, 29, 0.25);
    top: 20%; right: 15%;
    animation: orbFloat2 11s ease-in-out infinite reverse;
}

/* EMSALSİZ - Dönen glow halkası */
.korhan-mustafa-imrak-hero-glow-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 1px solid transparent;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(239, 68, 68, 0.3), transparent, rgba(127, 29, 29, 0.3), transparent);
    animation: glowRingRotate 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}
@keyframes glowRingRotate {
    to { transform: rotate(360deg); }
}

/* EMSALSİZ - Parçacıklar */
.korhan-mustafa-imrak-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(239, 68, 68, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}
.korhan-mustafa-imrak-hero-particle:nth-child(odd) { background: rgba(127, 29, 29, 0.5); }
.korhan-mustafa-imrak-hero-particle:nth-child(3n) { width: 2px; height: 2px; animation-duration: 12s; }
.korhan-mustafa-imrak-hero-particle:nth-child(5n) { animation-duration: 6s; animation-delay: -2s; }
@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(-15px, -50px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
}

/* EMSALSİZ - Badge nokta animasyonu */
.korhan-mustafa-imrak-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #b91c1c;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: badgeDotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(127, 29, 29, 0.8);
}
@keyframes badgeDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(127, 29, 29, 0.8); }
    50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 20px rgba(127, 29, 29, 0.6); }
}

/* EMSALSİZ - Başlık neon glow */
.korhan-mustafa-imrak-text-glow {
    filter: drop-shadow(0 0 20px rgba(127, 29, 29, 0.5)) drop-shadow(0 0 40px rgba(127, 29, 29, 0.3));
}

/* EMSALSİZ - Hero badge güncel */
.korhan-mustafa-imrak-hero-emsalsiz .korhan-mustafa-imrak-hero-badge {
    letter-spacing: 0.2em;
    font-weight: 700;
    border: 1px solid rgba(127, 29, 29, 0.5);
    box-shadow: 0 0 30px rgba(127, 29, 29, 0.2);
}

/* EMSALSİZ - Buton hover'da daha güçlü glow */
.korhan-mustafa-imrak-hero-emsalsiz .korhan-mustafa-imrak-btn-devrim:hover {
    box-shadow: 0 20px 50px rgba(127, 29, 29, 0.5), 0 0 80px rgba(127, 29, 29, 0.3);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Grid overlay */
.korhan-mustafa-imrak-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(127, 29, 29, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 29, 29, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Hero badge */
.korhan-mustafa-imrak-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(127, 29, 29, 0.3);
    border: 1px solid rgba(127, 29, 29, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}
.korhan-mustafa-imrak-hero-devrim .korhan-mustafa-imrak-hero-title { opacity: 0; }
.korhan-mustafa-imrak-hero-devrim .korhan-mustafa-imrak-hero-tagline { opacity: 0; }
.korhan-mustafa-imrak-hero-devrim .korhan-mustafa-imrak-hero-desc { opacity: 0; }
.korhan-mustafa-imrak-hero-devrim .korhan-mustafa-imrak-hero-buttons { opacity: 0; }

/* Section title - animasyonlu çizgi */
.korhan-mustafa-imrak-section-title-devrim {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
}
.korhan-mustafa-imrak-section-title-devrim::before {
    content: '';
    width: 48px;
    height: 4px;
    background: var(--gradient-btn);
    border-radius: 4px;
    animation: sectionLinePulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}
@keyframes sectionLinePulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.1); }
}

/* Hero sonrası glow divider */
.korhan-mustafa-imrak-hero-slider-wrap + .korhan-mustafa-imrak-section,
.korhan-mustafa-imrak-hero-devrim + .korhan-mustafa-imrak-section {
    position: relative;
}
.korhan-mustafa-imrak-hero-slider-wrap + .korhan-mustafa-imrak-section::before,
.korhan-mustafa-imrak-hero-devrim + .korhan-mustafa-imrak-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.06), transparent);
    pointer-events: none;
}

/* EMSALSİZ - Bölüm geçiş çizgisi */
.korhan-mustafa-imrak-section-dark {
    position: relative;
}
.korhan-mustafa-imrak-section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
    background-size: 200% 100%;
    animation: lineShimmer 4s ease-in-out infinite;
    opacity: 0.6;
}
@keyframes lineShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Kart hover glow - Developer agency */
.korhan-mustafa-imrak-card-devrim:hover {
    box-shadow: 0 25px 60px -15px rgba(239, 68, 68, 0.2), 0 0 0 1px rgba(239, 68, 68, 0.15);
}

.korhan-mustafa-imrak-section-title-devrim::before {
    width: 60px;
    height: 4px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

/* ===== Crimson Premium — ön yüz düzen (admin hariç) ===== */
body.korhan-mustafa-imrak-crimson-premium {
    letter-spacing: 0.01em;
}
body.korhan-mustafa-imrak-crimson-premium::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(90deg, #450a0a 0%, #ef4444 38%, #991b1b 72%, #450a0a 100%);
    z-index: 1200;
}
@media (min-width: 993px) {
    body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-bar.korhan-mustafa-imrak-nav-premium .korhan-mustafa-imrak-nav-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.75rem;
        padding: 0.4rem 0;
    }
    body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-bar .korhan-mustafa-imrak-nav-logo {
        align-items: flex-start;
    }
    body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-links {
        justify-content: flex-end;
        flex: 1;
        gap: 0.35rem;
    }
    body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-links a {
        border-radius: 4px;
    }
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-premium-code,
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-particle,
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-footer-premium-code,
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-footer-particle {
    display: none !important;
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-premium-bg {
    background: linear-gradient(165deg, #0a0404 0%, #050303 42%, #0a0a0a 100%) !important;
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-premium-orb,
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-premium-grid {
    opacity: 0.5;
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-nav-bar {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.62), inset 0 -1px 0 rgba(239, 68, 68, 0.14);
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-footer-premium-bg {
    background: linear-gradient(198deg, #0c0505 0%, #050303 50%, #000 100%) !important;
}
body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-footer-premium-orb {
    opacity: 0.32 !important;
}
@media (min-width: 1200px) {
    body.korhan-mustafa-imrak-crimson-premium .korhan-mustafa-imrak-section-hakkimizda-hizmetler:not(.korhan-mustafa-imrak-hakkimizda-hizmetler-revolution) .korhan-mustafa-imrak-hakkimizda-hizmetler-wrap {
        grid-template-columns: minmax(300px, 1fr) minmax(0, 1.4fr);
        gap: 3.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Header V2 — çift katman: ince üst şerit + ana satır (cam çubuğu)
   ═══════════════════════════════════════════════════════════════════════════ */
.korhan-mustafa-imrak-header-v2 {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #050303;
    box-shadow: 0 1px 0 rgba(239, 68, 68, 0.18);
}
.korhan-mustafa-imrak-header-v2-scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(239, 68, 68, 0.22);
}
.korhan-mustafa-imrak-header-v2-top {
    border-bottom: 1px solid rgba(239, 68, 68, 0.12);
    background: #020101;
}
.korhan-mustafa-imrak-header-v2-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.4rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.korhan-mustafa-imrak-header-v2-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.55);
    margin: 0;
}
.korhan-mustafa-imrak-header-v2-eyebrow-line {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, transparent);
    border-radius: 2px;
}
.korhan-mustafa-imrak-header-v2-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.korhan-mustafa-imrak-header-v2-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(248, 250, 252, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.korhan-mustafa-imrak-header-v2-meta-link:hover { color: #fca5a5; }
.korhan-mustafa-imrak-header-v2-meta-wa:hover { color: #fecaca; }
.korhan-mustafa-imrak-header-v2-main {
    background: linear-gradient(180deg, rgba(12, 8, 8, 0.97) 0%, rgba(5, 3, 3, 0.99) 100%);
    backdrop-filter: blur(14px);
}
.korhan-mustafa-imrak-header-v2-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.korhan-mustafa-imrak-header-v2-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #f8fafc;
    flex-shrink: 0;
}
.korhan-mustafa-imrak-header-v2-brand-img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.korhan-mustafa-imrak-header-v2-brand-text {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.korhan-mustafa-imrak-header-v2-brand-sub {
    font-size: 0.68rem;
    color: rgba(248, 250, 252, 0.45);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}
.korhan-mustafa-imrak-header-v2-nav {
    display: none;
    flex: 1;
    justify-content: center;
}
.korhan-mustafa-imrak-header-v2-nav-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.korhan-mustafa-imrak-header-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.82);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.korhan-mustafa-imrak-header-v2-link i { font-size: 0.85em; opacity: 0.85; }
.korhan-mustafa-imrak-header-v2-link:hover {
    color: #fff;
    background: rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-header-v2-link.korhan-mustafa-imrak-active {
    color: #fff;
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-header-v2-hamburger {
    flex-shrink: 0;
}
@media (min-width: 993px) {
    .korhan-mustafa-imrak-header-v2-nav { display: flex; }
    .korhan-mustafa-imrak-header-v2-hamburger.korhan-mustafa-imrak-nav-hamburger { display: none !important; }
}
@media (max-width: 992px) {
    .korhan-mustafa-imrak-header-v2-top-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .korhan-mustafa-imrak-header-v2-top-left { align-items: center; }
    .korhan-mustafa-imrak-header-v2-eyebrow { justify-content: center; width: 100%; }
    .korhan-mustafa-imrak-header-v2-meta { justify-content: center; }
    .korhan-mustafa-imrak-header-v2-main-inner {
        padding: 0.55rem 1rem;
    }
    .korhan-mustafa-imrak-header-v2-hamburger {
        display: flex !important;
        margin-left: auto;
        position: relative;
        z-index: 1302;
    }
    .korhan-mustafa-imrak-header-v2-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .korhan-mustafa-imrak-header-v2-main-inner { position: relative; justify-content: flex-end; }
}

/* Mobil panel V2 */
.korhan-mustafa-imrak-mobile-menu-panel-v2 {
    background: linear-gradient(165deg, #0a0505 0%, #050303 45%, #000 100%) !important;
    border-left: 3px solid rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-mobile-menu-header-v2 {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.12), transparent) !important;
    border-bottom-color: rgba(239, 68, 68, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Footer V2 — kayan şerit + CTA şeridi + hap bağlantılar
   ═══════════════════════════════════════════════════════════════════════════ */
.korhan-mustafa-imrak-footer-v2 {
    margin-top: auto;
    background: #020101;
    color: #e7e5e4;
    position: relative;
    overflow: hidden;
}
.korhan-mustafa-imrak-footer-v2-marquee {
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    padding: 0.65rem 0;
    overflow: hidden;
    background: #0a0505;
}
.korhan-mustafa-imrak-footer-v2-marquee-track {
    display: flex;
    width: max-content;
    animation: korhanFooterMarquee 26s linear infinite;
}
.korhan-mustafa-imrak-footer-v2-marquee-set {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.35);
}
.korhan-mustafa-imrak-footer-v2-marquee-set span:nth-child(4n + 1) {
    color: rgba(239, 68, 68, 0.55);
}
@keyframes korhanFooterMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.korhan-mustafa-imrak-footer-v2-cta {
    padding: 2.25rem 1.25rem;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.35) 0%, rgba(5, 3, 3, 0.95) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.12);
}
.korhan-mustafa-imrak-footer-v2-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.korhan-mustafa-imrak-footer-v2-cta-text strong {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.korhan-mustafa-imrak-footer-v2-cta-text p {
    margin: 0.35rem 0 0;
    color: rgba(248, 250, 252, 0.6);
    font-size: 0.95rem;
}
.korhan-mustafa-imrak-footer-v2-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.korhan-mustafa-imrak-footer-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.35rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.korhan-mustafa-imrak-footer-v2-btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(239, 68, 68, 0.35);
}
.korhan-mustafa-imrak-footer-v2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(239, 68, 68, 0.45);
}
.korhan-mustafa-imrak-footer-v2-btn-ghost {
    border: 1px solid rgba(248, 250, 252, 0.25);
    color: #f8fafc;
    background: rgba(0, 0, 0, 0.25);
}
.korhan-mustafa-imrak-footer-v2-btn-ghost:hover {
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5;
}
.korhan-mustafa-imrak-footer-v2-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}
@media (max-width: 900px) {
    .korhan-mustafa-imrak-footer-v2-body { grid-template-columns: 1fr; }
}
.korhan-mustafa-imrak-footer-v2-brand-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.korhan-mustafa-imrak-footer-v2-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}
.korhan-mustafa-imrak-footer-v2-brand { text-decoration: none; display: inline-block; }
.korhan-mustafa-imrak-footer-v2-desc {
    margin: 1rem 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(248, 250, 252, 0.5);
    max-width: 360px;
}
.korhan-mustafa-imrak-footer-v2-social {
    display: flex;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-footer-v2-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    transition: background 0.2s, color 0.2s;
}
.korhan-mustafa-imrak-footer-v2-social a:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #fff;
}
.korhan-mustafa-imrak-footer-v2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 600px) {
    .korhan-mustafa-imrak-footer-v2-columns { grid-template-columns: 1fr; }
}
.korhan-mustafa-imrak-footer-v2-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(239, 68, 68, 0.75);
    margin: 0 0 1rem;
    font-weight: 700;
}
.korhan-mustafa-imrak-footer-v2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.korhan-mustafa-imrak-footer-v2-pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    color: rgba(248, 250, 252, 0.8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.korhan-mustafa-imrak-footer-v2-pill:hover {
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5;
}
.korhan-mustafa-imrak-footer-v2-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.korhan-mustafa-imrak-footer-v2-list li {
    margin-bottom: 0.5rem;
}
.korhan-mustafa-imrak-footer-v2-list a {
    color: rgba(248, 250, 252, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.korhan-mustafa-imrak-footer-v2-list a:hover {
    color: #fca5a5;
    border-bottom-color: rgba(239, 68, 68, 0.4);
}
.korhan-mustafa-imrak-footer-v2-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(239, 68, 68, 0.12);
    background: #000;
}
.korhan-mustafa-imrak-footer-v2-copy {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(248, 250, 252, 0.4);
}
.korhan-mustafa-imrak-footer-v2-bar-actions {
    display: flex;
    gap: 0.35rem;
}
.korhan-mustafa-imrak-footer-v2-bar-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    text-decoration: none;
    border: 1px solid rgba(239, 68, 68, 0.18);
    transition: background 0.2s, color 0.2s;
}
.korhan-mustafa-imrak-footer-v2-bar-link:hover {
    background: rgba(239, 68, 68, 0.22);
    color: #fff;
}

@supports not (width: max-content) {
    .korhan-mustafa-imrak-footer-v2-marquee-track { animation: none; justify-content: center; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Sinematik hero — coverflow + film şeridi + kesir sayfalama
   ═══════════════════════════════════════════════════════════════════════════ */
.korhan-mustafa-imrak-hero-cinematic {
    position: relative;
    padding: 0;
    background: #000;
}
.korhan-mustafa-imrak-hero-cinematic-shell {
    position: relative;
    padding: 0.75rem 0.75rem 0;
    max-width: 1440px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .korhan-mustafa-imrak-hero-cinematic-shell { padding: 1rem 1.25rem 0; }
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-heroSwiper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
    padding-bottom: 5.5rem;
    background: #050303;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 82%;
    max-width: 1100px;
    min-height: 68vh;
    text-align: left;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-hero-slider-wrap.korhan-mustafa-imrak-hero-cinematic {
        margin-top: -30px !important;
    }
    .korhan-mustafa-imrak-hero-cinematic-shell {
        transform: translateY(-30px) !important;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide {
        width: 100%;
        max-width: none;
        min-height: 50vh;
        min-height: 50dvh;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-image {
        background-size: contain;
        background-position: center center;
        opacity: 0.88;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-bg::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.74) 100%);
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content {
        left: 3%;
        right: 3%;
        bottom: 8%;
        max-width: 94%;
        padding: 0.65rem 0.75rem !important;
        border-radius: 9px;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .hero-title,
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-title {
        font-size: clamp(1rem, 4.8vw, 1.3rem);
        margin-bottom: 0.35rem;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-desc,
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-tagline {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 0.45rem;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-badge {
        font-size: 0.58rem;
        padding: 0.22rem 0.5rem;
        margin-bottom: 0.35rem;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-buttons {
        gap: 0.4rem;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-btn {
        padding: 0.42rem 0.7rem;
        font-size: 0.72rem;
    }
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
    z-index: 1;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content {
    position: absolute;
    bottom: 12%;
    left: 5%;
    right: auto;
    max-width: min(640px, 92%);
    margin: 0;
    padding: 1.15rem 1.35rem !important;
    background: rgba(3, 2, 2, 0.78);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    z-index: 2;
    text-align: left;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slide-content .korhan-mustafa-imrak-hero-buttons {
    justify-content: flex-start;
}
.korhan-mustafa-imrak-hero-cinematic-controls {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 5;
    pointer-events: none;
}
.korhan-mustafa-imrak-hero-cinematic-controls > * { pointer-events: auto; }
.korhan-mustafa-imrak-hero-cinematic-nav {
    display: flex;
    gap: 0.5rem;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-prev,
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-next {
    position: static !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem !important;
    border-radius: 999px !important;
    background: rgba(10, 10, 10, 0.88) !important;
    border: 1px solid rgba(239, 68, 68, 0.28) !important;
    color: #fca5a5 !important;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s !important;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-prev::after,
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-next::after {
    display: none !important;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-prev span,
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-next span {
    display: none !important;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-prev:hover,
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-next:hover {
    background: rgba(239, 68, 68, 0.22) !important;
    color: #fff !important;
}
.korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    color: #fca5a5 !important;
    font-family: 'JetBrains Mono', ui-monospace, monospace !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    letter-spacing: 0.06em;
}
@media (max-width: 768px) {
    .korhan-mustafa-imrak-hero-cinematic-controls {
        position: absolute;
    }
    .korhan-mustafa-imrak-hero-cinematic .korhan-mustafa-imrak-hero-slider-pagination {
        display: none !important;
    }
    .korhan-mustafa-imrak-hero-cinematic-nav {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 5px);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Anasayfa V2 — strip giriş + alternatif bölüm ritmi
   ═══════════════════════════════════════════════════════════════════════════ */
.korhan-mustafa-imrak-home-v2-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.1rem 1.25rem 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}
.korhan-mustafa-imrak-home-v2-intro-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ef4444;
}
.korhan-mustafa-imrak-home-v2-intro-div {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.6), transparent);
    border-radius: 2px;
}
.korhan-mustafa-imrak-home-v2-intro-text {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(248, 250, 252, 0.48);
    flex: 1;
    min-width: 200px;
}
.korhan-mustafa-imrak-home-v2-main {
    display: block;
}
body.korhan-mustafa-imrak-home-v2 .korhan-mustafa-imrak-section-misyon .korhan-mustafa-imrak-misyon-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.1);
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Kurumsal yazılım firması — genel görünüm (ön yüz)
   ═══════════════════════════════════════════════════════════════════════════ */
body.korhan-mustafa-imrak {
    background-color: #080706;
    background-image:
        radial-gradient(ellipse 100% 60% at 50% -15%, rgba(185, 28, 28, 0.09), transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 100% 100%, 52px 52px, 52px 52px;
    background-position: 0 0, center top, center top;
}
@media (min-width: 960px) {
    body.korhan-mustafa-imrak { background-attachment: fixed; }
}
.korhan-mustafa-imrak-header-v2-top-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.korhan-mustafa-imrak-header-v2-kicker {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(228, 228, 231, 0.42);
    text-transform: none;
}
.korhan-mustafa-imrak-header-v2-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.korhan-mustafa-imrak-header-v2-nav-track {
    border-radius: 10px;
    background: rgba(8, 8, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.korhan-mustafa-imrak-header-v2-link {
    border-radius: 8px;
    font-weight: 600;
    color: rgba(244, 244, 245, 0.78);
}
.korhan-mustafa-imrak-header-v2-link.korhan-mustafa-imrak-active {
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.28);
}

body.korhan-mustafa-imrak .korhan-mustafa-imrak-section {
    border-top-color: rgba(255, 255, 255, 0.055);
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-section-title,
body.korhan-mustafa-imrak .korhan-mustafa-imrak-section-title-devrim {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: rgba(248, 113, 113, 0.9);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-section h2 {
    color: #fafafa;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.2;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-section > p,
body.korhan-mustafa-imrak .korhan-mustafa-imrak-section p {
    color: #a1a1aa;
    max-width: 62ch;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-card-devrim {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 14, 0.78);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-card-devrim:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(220, 38, 38, 0.16);
    border-color: rgba(220, 38, 38, 0.2);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-btn-devrim {
    background: #dc2626 !important;
    color: #fafafa !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(220, 38, 38, 0.22) !important;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-btn-devrim:hover {
    background: #b91c1c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 14px 36px rgba(220, 38, 38, 0.28) !important;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-btn-devrim-outline {
    border-width: 1px !important;
    border-color: rgba(248, 250, 252, 0.28) !important;
    color: #e4e4e7 !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-btn-devrim-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(252, 165, 165, 0.45) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
}

body.korhan-mustafa-imrak .korhan-mustafa-imrak-footer-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-footer-v2-cta {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.95) 0%, rgba(9, 9, 11, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-footer-v2-marquee {
    background: #09090b;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-home-v2-intro {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.korhan-mustafa-imrak .korhan-mustafa-imrak-home-v2-intro-label {
    font-family: var(--font-mono);
    color: #f87171;
}
