/* ============================================
   TTİ YAZILIM - 3D DEPTH DESIGN SYSTEM
   Palette: Violet + Purple + Gold (Serious + Dynamic)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Brand */
    --primary: #5B3BE8;
    --primary-dark: #4527C4;
    --primary-light: #7A60F0;
    --secondary: #9333EA;
    --secondary-dark: #7E22CE;
    --accent: #D97706;
    --success: #059669;
    --info: #2563EB;

    /* Backgrounds */
    --bg: #FAFAFB;
    --bg-soft: #F3F1FC;
    --surface: #FFFFFF;
    --surface-raised: #FFFFFF;
    --surface-hover: #F7F5FE;

    /* Text */
    --text: #100C27;
    --text-soft: #2E2A45;
    --text-muted: #5F5B7A;
    --text-light: #9591AE;

    /* Borders */
    --border: #E5E1F1;
    --border-strong: #CDC7DF;

    /* Shadows - 3D derinlik için katmanlı gölgeler */
    --shadow-sm: 0 1px 2px rgba(91, 59, 232, 0.05);
    --shadow: 0 1px 2px rgba(91, 59, 232, 0.04),
    0 4px 8px rgba(91, 59, 232, 0.06),
    0 10px 20px rgba(91, 59, 232, 0.04);
    --shadow-md: 0 2px 4px rgba(91, 59, 232, 0.05),
    0 8px 16px rgba(91, 59, 232, 0.08),
    0 20px 32px rgba(91, 59, 232, 0.06);
    --shadow-lg: 0 4px 8px rgba(91, 59, 232, 0.06),
    0 16px 32px rgba(91, 59, 232, 0.1),
    0 32px 64px rgba(91, 59, 232, 0.08);
    --shadow-xl: 0 8px 16px rgba(91, 59, 232, 0.08),
    0 24px 48px rgba(91, 59, 232, 0.12),
    0 48px 96px rgba(91, 59, 232, 0.1);
    --shadow-3d: 0 1px 1px rgba(91, 59, 232, 0.08),
    0 2px 2px rgba(91, 59, 232, 0.06),
    0 4px 4px rgba(91, 59, 232, 0.04),
    0 8px 8px rgba(91, 59, 232, 0.03),
    0 16px 16px rgba(91, 59, 232, 0.02);
    --shadow-3d-hover: 0 2px 2px rgba(91, 59, 232, 0.1),
    0 4px 4px rgba(91, 59, 232, 0.08),
    0 8px 8px rgba(91, 59, 232, 0.06),
    0 16px 16px rgba(91, 59, 232, 0.05),
    0 32px 32px rgba(91, 59, 232, 0.04),
    0 48px 48px rgba(91, 59, 232, 0.03);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #5B3BE8 0%, #9333EA 100%);
    --grad-dark: linear-gradient(135deg, #4527C4 0%, #7E22CE 100%);
    --grad-cool: linear-gradient(135deg, #2563EB 0%, #5B3BE8 100%);
    --grad-warm: linear-gradient(135deg, #9333EA 0%, #D97706 100%);
    --grad-mesh: radial-gradient(at 20% 10%, rgba(91, 59, 232, 0.15) 0%, transparent 50%),
    radial-gradient(at 80% 20%, rgba(147, 51, 234, 0.10) 0%, transparent 50%),
    radial-gradient(at 40% 80%, rgba(217, 119, 6, 0.06) 0%, transparent 50%);

    /* Radius */
    --r-sm: 10px;
    --r: 14px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 36px;
    --r-full: 9999px;

    /* Fonts */
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

    --container: 1280px;
    --section-py: 120px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* -------- RESET -------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-feature-settings: 'ss01', 'cv01';
    position: relative;
}

/* Ambient noise - derinlik hissi için */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 15% 15%, rgba(91, 59, 232, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(147, 51, 234, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 75% 25%, rgba(217, 119, 6, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(91, 59, 232, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

img, video, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s var(--ease);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    color: inherit;
}

::selection {
    background: var(--primary);
    color: white;
}

/* -------- UTILITIES -------- */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    padding: 0 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-soft);
    color: var(--primary-dark);
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    border: 1px solid rgba(91, 59, 232, 0.15);
}

/* ============================================
   BUTTONS - 3D
   ============================================ */
.btn-primary, .btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    background: var(--grad-primary);
    color: white;
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(91, 59, 232, 0.1),
    0 4px 12px rgba(91, 59, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.btn-primary-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.btn-primary::before,
.btn-primary-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9333EA 0%, #5B3BE8 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before,
.btn-primary-lg:hover::before {
    opacity: 1;
}

.btn-primary:hover, .btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(91, 59, 232, 0.15),
    0 12px 28px rgba(91, 59, 232, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:active, .btn-primary-lg:active {
    transform: translateY(-1px);
}

.btn-primary > *, .btn-primary-lg > * {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--r-full);
    border: 1.5px solid var(--border);
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.full-width {
    width: 100%;
}

/* ============================================
   NAVBAR - Floating 3D
   ============================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.3s var(--ease);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 10px 14px 10px 20px;
    border-radius: var(--r-full);
    box-shadow: 0 1px 2px rgba(91, 59, 232, 0.04),
    0 8px 16px rgba(91, 59, 232, 0.08),
    0 16px 32px rgba(91, 59, 232, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(91, 59, 232, 0.2));
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.logo-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-center {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.nav-center a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-soft);
    border-radius: var(--r-full);
    transition: all 0.2s ease;
}

.nav-center a:hover {
    color: var(--primary);
    background: var(--bg-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================
   HERO - Derin arka plan
   ============================================ */
.hero {
    position: relative;
    padding: 140px 24px 140px; /* bottom: 80px → 140px yap */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.hero-bg-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Grid overlay - teknik derinlik hissi */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(91, 59, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 59, 232, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 90%);
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5B3BE8 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #9333EA 0%, transparent 70%);
    top: 30%;
    right: -150px;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #D97706 0%, transparent 65%);
    bottom: -350px; /* çok aşağıya sarkıtalım — hero'dan çıksın */
    left: 30%;
    animation-delay: -14s;
    opacity: 0.08; /* çok sus — sadece ambient olsun */
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 560px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(91, 59, 232, 0.04),
    0 4px 8px rgba(91, 59, 232, 0.06);
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
    animation: pulseDot 2s ease-in-out infinite;
}

.pill-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--success);
    opacity: 0.3;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.825rem;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(91, 59, 232, 0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text .stars-small {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   3D BENTO GRID - DERİNLİK + MOUSE TILT
   ============================================ */
.hero-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 14px;
    position: relative;
    z-index: 3; /* ← bu satırı ekle */
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Ana kart - 3D DERİNLİK */
.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.3s ease;
    box-shadow: var(--shadow-3d);
    isolation: isolate;
}

.bento-card:hover {
    box-shadow: var(--shadow-3d-hover);
    border-color: rgba(91, 59, 232, 0.3);
}

/* Her kartın ALTINDA katmanlı gölge (3D hissi) */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    background: linear-gradient(180deg, transparent 60%, rgba(91, 59, 232, 0.04));
    pointer-events: none;
}

/* Arka plan gradient efekti (derin katman) */
.bento-bg-gradient {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(247, 245, 254, 0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Glow - mouse takipli */
.bento-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
            400px circle at var(--mx, 50%) var(--my, 50%),
            rgba(91, 59, 232, 0.15),
            transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}

.bento-card:hover .bento-glow {
    opacity: 1;
}

/* Shine - animasyonlu parlaklık çizgisi */
.bento-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
    );
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 2;
    transform: skewX(-20deg);
}

.bento-card:hover .bento-shine {
    left: 200%;
}

/* Content katman - TRANSLATE Z ile derinlik */
.bento-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.bento-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transform: translateZ(15px);
}

.bento-card p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
    transform: translateZ(10px);
}

/* İkon - en önde, ekstra 3D */
.bento-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateZ(40px);
    transition: transform 0.5s var(--ease-back);
    box-shadow: 0 4px 8px rgba(91, 59, 232, 0.2),
    0 8px 16px rgba(91, 59, 232, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bento-card:hover .bento-icon {
    transform: translateZ(60px) rotateY(360deg);
}

/* Grid Yerleşimi */
.bento-erp {
    grid-column: span 3;
    grid-row: span 2;
    padding: 20px;
}

.bento-b2b {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-eticaret {
    grid-column: span 3;
}

.bento-combo {
    grid-column: span 3;
    padding: 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F3E8FF 100%);
    border-color: rgba(91, 59, 232, 0.2);
    text-align: center;
    align-items: center;
}

.bento-code {
    grid-column: span 3;
    grid-row: span 2;
    padding: 0;
    background: #1A1A28;
    border-color: #2D2D44;
    display: block;
    box-shadow: 0 8px 16px rgba(26, 26, 40, 0.4),
    0 16px 32px rgba(26, 26, 40, 0.3);
}

.bento-code .bento-bg-gradient {
    background: linear-gradient(135deg, #1A1A28 0%, #2D2D44 100%);
}

.bento-code:hover {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 12px 24px rgba(26, 26, 40, 0.5),
    0 24px 48px rgba(26, 26, 40, 0.4),
    0 0 32px rgba(147, 51, 234, 0.2);
}

.bento-pazaryeri {
    grid-column: span 3;
}

.bento-seo {
    grid-column: span 3;
    padding: 14px 16px;
}

.bento-live {
    grid-column: span 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F9F5FF 100%);
    border-color: rgba(91, 59, 232, 0.2);
}


/* ==================== */
/*  ANİMASYONLU İÇERİK   */
/* ==================== */

/* 1. ERP Dashboard */
.bento-dashboard {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateZ(15px);
}

.dash-row {
    display: grid;
    grid-template-columns: 50px 1fr 55px;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
}

.dash-label {
    color: var(--text-muted);
    font-weight: 600;
}

.dash-value {
    font-weight: 700;
    color: var(--text);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.dash-progress {
    height: 6px;
    background: var(--bg-soft);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dash-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #5B3BE8, #7A60F0);
    border-radius: 3px;
    animation: dashGrow 2s var(--ease) forwards;
    animation-delay: 0.5s;
    box-shadow: 0 0 10px rgba(91, 59, 232, 0.4);
}

.dash-fill.purple {
    background: linear-gradient(90deg, #9333EA, #A855F7);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.4);
    animation-delay: 0.7s;
}

.dash-fill.green {
    background: linear-gradient(90deg, #059669, #10B981);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.4);
    animation-delay: 0.9s;
}

@keyframes dashGrow {
    to {
        width: var(--w);
    }
}

/* 2. B2B Network */
.b2b-network {
    position: relative;
    width: 100%;
    height: 70px;
    margin-top: 14px;
    transform: translateZ(15px);
}

.network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.network-lines line {
    stroke: #9333EA;
    stroke-width: 1.5;
    stroke-dasharray: 4;
    opacity: 0.5;
    animation: lineFlow 3s linear infinite;
}

@keyframes lineFlow {
    to {
        stroke-dashoffset: -20;
    }
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333EA, #7E22CE);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.6),
    0 2px 4px rgba(147, 51, 234, 0.3);
    animation: nodePulse 2s ease-in-out infinite;
}

.center-node {
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #5B3BE8, #9333EA);
    box-shadow: 0 0 20px rgba(91, 59, 232, 0.7),
    0 4px 8px rgba(91, 59, 232, 0.4);
    animation: centerPulse 2s ease-in-out infinite;
    z-index: 2;
}

.n1 {
    top: 15%;
    left: 12%;
    animation-delay: 0.3s;
}

.n2 {
    top: 15%;
    right: 12%;
    animation-delay: 0.6s;
}

.n3 {
    bottom: 15%;
    left: 12%;
    animation-delay: 0.9s;
}

.n4 {
    bottom: 15%;
    right: 12%;
    animation-delay: 1.2s;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* 3. E-Ticaret Cart */
.cart-anim {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    transform: translateZ(15px);
}

.cart-item {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, white, var(--bg-soft));
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: cartBounce 2s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.08),
    0 4px 8px rgba(37, 99, 235, 0.05);
}

.cart-item:nth-child(1) {
    animation-delay: 0s;
}

.cart-item:nth-child(2) {
    animation-delay: 0.3s;
}

.cart-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes cartBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
    }
}

/* 4. Combo 3D Stack */
.combo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--grad-primary);
    color: white;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateZ(40px);
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.4);
    z-index: 4;
}

.combo-3d-stack {
    position: relative;
    width: 60px; /* eski: 80px */
    height: 60px; /* eski: 80px */
    margin: 6px auto 10px;
    transform-style: preserve-3d;
    animation: comboRotate 6s linear infinite;
}

@keyframes comboRotate {
    0% {
        transform: rotateY(0) rotateX(15deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(15deg);
    }
}

.combo-layer {
    position: absolute;
    width: 40px; /* eski: 50px */
    height: 40px; /* eski: 50px */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    margin-top: -20px; /* eski: -25px */
    margin-left: -20px; /* eski: -25px */
    backface-visibility: visible;
    box-shadow: 0 6px 16px rgba(91, 59, 232, 0.3);
}

.combo-layer svg {
    width: 18px; /* 24 yerine */
    height: 18px;
}

.combo-badge {
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    font-size: 0.58rem;
}

/* SEO & Ads - Mini kompakt kart */
.seo-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateZ(15px);
}

.seo-compact .bento-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    transform: translateZ(20px);
}

.seo-compact > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seo-compact h3 {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.1;
}

.seo-compact .seo-value {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Eski .bento-seo .seo-stat ve direkt .seo-value style'larını geçersiz kıl */
.bento-seo .seo-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}


.layer-1 {
    background: linear-gradient(135deg, #5B3BE8, #4527C4);
    transform: translateZ(20px);
}

.layer-2 {
    background: linear-gradient(135deg, #9333EA, #7E22CE);
    transform: translateZ(-20px);
}

.layer-3 {
    width: 55px;
    height: 55px;
    margin-top: -27.5px;
    margin-left: -27.5px;
    background: radial-gradient(circle, rgba(91, 59, 232, 0.3), transparent 70%);
    transform: translateZ(0);
    box-shadow: none;
}

.bento-combo h3 {
    font-size: 0.82rem;
    margin-top: 4px;
}

.bento-combo p {
    font-size: 0.68rem;
}

/* 6. Sektörel Çözümler (Servis + Güzellik birleşik) */
.bento-sektorel {
    grid-column: span 3;
}

.sektor-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    transform: translateZ(15px);
}

.sektor-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-soft);
    box-shadow: 0 2px 4px rgba(91, 59, 232, 0.06),
    0 4px 8px rgba(91, 59, 232, 0.04);
    animation: chipFloat 3s ease-in-out infinite;
}

.sektor-chip:nth-child(1) {
    animation-delay: 0s;
}

.sektor-chip:nth-child(2) {
    animation-delay: 0.4s;
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: chipDotPulse 2s ease-in-out infinite;
}

.sektor-chip.c1 {
    border-color: rgba(5, 150, 105, 0.3);
}

.sektor-chip.c1 .chip-dot {
    background: #059669;
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.5);
}

.sektor-chip.c2 {
    border-color: rgba(236, 72, 153, 0.3);
}

.sektor-chip.c2 .chip-dot {
    background: #EC4899;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
    animation-delay: 0.5s;
}

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes chipDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* 5. Code Editor */
.code-editor-mini {
    padding: 10px 12px; /* eski: 12px 14px */
    height: 100%;
    position: relative;
    z-index: 3;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.code-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.code-header .dot.r {
    background: #FF5F57;
}

.code-header .dot.y {
    background: #FEBC2E;
}

.code-header .dot.g {
    background: #28C840;
}

.code-title {
    margin-left: auto;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
}

.code-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
    animation: liveBlink 1.5s ease-in-out infinite;
    margin-left: 8px;
}

.code-lines {
    font-family: var(--font-mono);
    font-size: 0.64rem; /* eski: 0.7rem — 9 satır sığsın */
    line-height: 1.75;
}

.line {
    display: flex;
    gap: 8px;
    color: #D4D4D4;
    opacity: 0;
    animation: lineAppear 0.4s ease forwards;
}

.line:nth-child(1) {
    animation-delay: 0.3s;
}

.line:nth-child(2) {
    animation-delay: 0.55s;
}

.line:nth-child(3) {
    animation-delay: 0.8s;
}

.line:nth-child(4) {
    animation-delay: 1.05s;
}

.line:nth-child(5) {
    animation-delay: 1.3s;
}

.line:nth-child(6) {
    animation-delay: 1.55s;
}

.line:nth-child(7) {
    animation-delay: 1.8s;
}

.line:nth-child(8) {
    animation-delay: 2.05s;
}

.line:nth-child(9) {
    animation-delay: 2.3s;
}

@keyframes lineAppear {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lnum {
    color: #6A6A80;
    width: 12px;
}

.kw {
    color: #C586C0;
}

.fn {
    color: #DCDCAA;
}

.cls {
    color: #4EC9B0;
}

.str {
    color: #CE9178;
}

.cursor-blink {
    color: #D4D4D4;
    animation: cursorBlink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    50% {
        opacity: 0;
    }
}

/* 6. Servis Progress */
.servis-progress {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    transform: translateZ(15px);
}

.step {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 2px solid var(--border);
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.step.done {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border-color: #047857;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.3),
    0 0 8px rgba(5, 150, 105, 0.2);
}

.step.active {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    border-color: transparent;
    animation: stepPulse 1.5s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
    }
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
}

.step-line.done {
    background: #059669;
}

.step-line.active {
    background: linear-gradient(90deg, #059669, var(--border));
    background-size: 200% 100%;
    animation: lineFill 2s linear infinite;
}

@keyframes lineFill {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* 7. Güzellik Calendar */
.calendar-mini {
    display: flex;
    gap: 4px;
    margin-top: 14px;
    transform: translateZ(15px);
}

.cal-day {
    flex: 1;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 6px;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.cal-day.active {
    background: linear-gradient(135deg, #EC4899, #BE185D);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3),
    0 2px 4px rgba(236, 72, 153, 0.2);
}

.cal-day.active::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.cal-day.pulse {
    animation: calPulse 2s ease-in-out infinite;
}

@keyframes calPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
    }
}

/* 8. Pazaryeri 3D Logos */
.mp-logos-3d {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    perspective: 500px;
    transform: translateZ(15px);
}

.mp-logo {
    padding: 6px 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.1),
    0 4px 8px rgba(217, 119, 6, 0.05);
    animation: mpFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.mp-logo:hover {
    transform: translateZ(15px) scale(1.1);
}

@keyframes mpFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    50% {
        transform: translateY(-4px) rotateY(10deg);
    }
}

/* 9. SEO Chart */
.bento-seo .seo-stat {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    transform: translateZ(15px);
}

.seo-value {
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
}

.seo-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.seo-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.seo-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease forwards;
    animation-delay: 0.3s;
    filter: drop-shadow(0 2px 4px rgba(5, 150, 105, 0.4));
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.seo-area {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* 10. Live */
.live-content {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.live-content strong {
    color: var(--primary);
    font-weight: 800;
}

.live-text {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    transform: translateZ(15px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: liveBlink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.live-spark {
    display: flex;
    gap: 2px;
    margin-left: 8px;
}

.live-spark span {
    width: 2px;
    height: 12px;
    background: linear-gradient(to top, transparent, var(--primary));
    border-radius: 1px;
    animation: sparkWave 1.4s ease-in-out infinite;
}

.live-spark span:nth-child(1) {
    animation-delay: 0s;
}

.live-spark span:nth-child(2) {
    animation-delay: 0.15s;
}

.live-spark span:nth-child(3) {
    animation-delay: 0.3s;
}

.live-spark span:nth-child(4) {
    animation-delay: 0.45s;
}

.live-spark span:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes sparkWave {
    0%, 100% {
        height: 4px;
        opacity: 0.4;
    }
    50% {
        height: 14px;
        opacity: 1;
    }
}

/* ============================================
   STATS - 3D Derinlik
   ============================================ */
.stats-section {
    padding: 40px 24px 80px; /* eski: 80px 24px */
    max-width: var(--container);
    margin: 0 auto;
    margin-top: -60px; /* ← HERO'nun altına bindir */
    position: relative;
    z-index: 2;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--surface);
    padding: 48px 32px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(91, 59, 232, 0.04),
    0 8px 16px rgba(91, 59, 232, 0.06),
    0 24px 48px rgba(91, 59, 232, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stats-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 12px;
    z-index: 2;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   SERVICES - 3D Cards with Glow
   ============================================ */
.services-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    perspective: 1200px;
}

.service-card {
    position: relative;
    border-radius: var(--r-md);
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
    will-change: transform;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--accent, #5B3BE8), transparent 60%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover .service-card-glow {
    opacity: 0.4;
}

.service-card-inner {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-3d);
    transition: transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s ease;
    height: 100%;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: translateY(-8px) rotateX(4deg);
    box-shadow: var(--shadow-3d-hover);
    border-color: var(--accent);
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-inner::before {
    transform: scaleX(1);
}

.service-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: left 0.8s ease;
    transform: skewX(-20deg);
    pointer-events: none;
}

.service-card:hover .service-card-inner::after {
    left: 200%;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s var(--ease);
    transform: translateZ(30px);
    box-shadow: 0 4px 8px color-mix(in srgb, var(--accent) 15%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
    transform: translateZ(50px) scale(1.1) rotate(-8deg);
    box-shadow: 0 8px 16px color-mix(in srgb, var(--accent) 30%, transparent),
    0 16px 32px color-mix(in srgb, var(--accent) 15%, transparent);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    transform: translateZ(20px);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    transform: translateZ(15px);
}

.service-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--text-light);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--accent);
}

/* ============================================
   REFERENCE SECTION - Laptop Mockup 3D
   ============================================ */
.reference-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.reference-showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.reference-info h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.reference-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ref-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--grad-primary);
    color: white;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.3);
}

.ref-features {
    list-style: none;
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}

.ref-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 500;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--grad-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(91, 59, 232, 0.3);
}

.laptop-mockup {
    position: relative;
    perspective: 1800px;
    --iframe-scale: 0.5;
}

@media (min-width: 1200px) {
    .laptop-mockup {
        --iframe-scale: 0.58;
    }
}

@media (max-width: 1024px) {
    .laptop-mockup {
        --iframe-scale: 0.62;
    }
}

@media (max-width: 768px) {
    .laptop-mockup {
        --iframe-scale: 0.42;
    }
}

@media (max-width: 480px) {
    .laptop-mockup {
        --iframe-scale: 0.3;
    }
}

.laptop-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #18181B;
    border-radius: 14px 14px 4px 4px;
    padding: 28px 10px 10px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15),
    0 24px 48px rgba(15, 23, 42, 0.2),
    0 48px 96px rgba(15, 23, 42, 0.15),
    0 0 0 2px #27272A,
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: rotateX(3deg);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease);
    overflow: hidden;
}

.laptop-mockup:hover .laptop-screen {
    transform: rotateX(1deg) translateY(-4px);
}

.browser-bar {
    position: absolute;
    top: 8px;
    left: 14px;
    right: 14px;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.browser-bar .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.browser-bar .dot.red {
    background: #FF5F57;
}

.browser-bar .dot.yellow {
    background: #FEBC2E;
}

.browser-bar .dot.green {
    background: #28C840;
}

.url-bar {
    flex: 1;
    margin-left: 12px;
    padding: 3px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 6px;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    pointer-events: auto;
    cursor: default;
}

.live-iframe {
    width: 1250px;
    height: 3500px;
    border: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: top center;
    transform: translateX(-50%) translateY(0) scale(var(--iframe-scale, 0.5));
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 768px) {
    .live-iframe {
        width: 1280px;
        height: 3000px;
    }
}

.laptop-base {
    width: 110%;
    margin-left: -5%;
    height: 14px;
    background: linear-gradient(180deg, #27272A 0%, #0F0F11 100%);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.2),
    0 8px 16px rgba(15, 23, 42, 0.15);
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #09090B;
    border-radius: 0 0 10px 10px;
}

/* ============================================
   WHY SECTION - 3D Cards
   ============================================ */
.why-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    perspective: 1200px;
}

.why-card {
    position: relative;
    border-radius: var(--r-md);
    transform-style: preserve-3d;
    will-change: transform;
}

.why-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--accent, #5B3BE8), transparent 60%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-card:hover .why-card-glow {
    opacity: 0.35;
}

.why-card-inner {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-3d);
    transition: transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
    height: 100%;
    transform-style: preserve-3d;
}

.why-card:hover .why-card-inner {
    transform: translateY(-6px) rotateX(3deg);
    box-shadow: var(--shadow-3d-hover);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-back);
    transform: translateZ(25px);
    box-shadow: 0 4px 8px color-mix(in srgb, var(--accent) 15%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.why-card:hover .why-icon {
    transform: translateZ(45px) rotate(-8deg) scale(1.1);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateZ(15px);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

/* ============================================
   TESTIMONIALS - 3D Cards
   ============================================ */
.testimonials-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    perspective: 1200px;
}

.testimonial {
    position: relative;
    border-radius: var(--r-md);
    transform-style: preserve-3d;
    will-change: transform;
}

.testimonial-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, #5B3BE8, #9333EA 60%);
    opacity: 0;
    filter: blur(24px);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial:hover .testimonial-glow {
    opacity: 0.25;
}

.testimonial-inner {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-3d);
    transition: transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial:hover .testimonial-inner {
    transform: translateY(-6px) rotateX(3deg);
    box-shadow: var(--shadow-3d-hover);
}

.testimonial-inner::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--bg-soft);
    line-height: 1;
    font-weight: 700;
    transform: translateZ(10px);
}

.stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
    transform: translateZ(15px);
}

.testimonial blockquote {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateZ(20px);
}

.testimonial .avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial footer strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 0.925rem;
}

.testimonial footer span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.contact-card-big {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 80px 60px;
    box-shadow: 0 8px 16px rgba(91, 59, 232, 0.06),
    0 24px 48px rgba(91, 59, 232, 0.08),
    0 48px 96px rgba(91, 59, 232, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.contact-card-big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.contact-card-big > * {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
}

a.contact-card:hover {
    transform: translateX(4px) translateZ(8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-card.static {
    cursor: default;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(91, 59, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-card > div:last-child {
    flex: 1;
    min-width: 0;
}

.contact-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.4;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: 0 2px 4px rgba(91, 59, 232, 0.04),
    0 8px 16px rgba(91, 59, 232, 0.06),
    0 16px 32px rgba(91, 59, 232, 0.04);
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label.full {
    grid-column: 1 / -1;
}

.contact-form label span {
    font-size: 0.825rem;
    color: var(--text-soft);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 0.925rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(91, 59, 232, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 100%);
    border-top: 1px solid var(--border);
    padding: 80px 24px 32px;
    margin-top: 100px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-slogan {
    font-weight: 700;
    font-size: 1rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 340px;
}

.footer-col h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--primary);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-list address {
    font-style: normal;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2),
    0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
    animation: waPulse 2s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) rotate(8deg);
}

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 89;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    margin: 0 auto;
    z-index: 95;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s var(--ease);
    pointer-events: none;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-inner {
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 16px rgba(91, 59, 232, 0.08),
    0 24px 48px rgba(91, 59, 232, 0.12),
    0 48px 96px rgba(91, 59, 232, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-inner strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.cookie-inner p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-inner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-actions button {
    padding: 8px 18px;
    font-size: 0.825rem;
    border-radius: var(--r-full);
}

.cookie-actions button:first-child {
    background: transparent;
    color: var(--text-muted);
}

.cookie-actions button:last-child {
    background: var(--grad-primary);
    color: white;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner,
    .reference-showcase,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-pill {
        margin: 0 auto 24px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-bento {
        max-width: 720px;
        margin: 0 auto;
        grid-template-columns: repeat(4, 1fr);
    }

    .bento-erp, .bento-b2b {
        grid-column: span 4;
        grid-row: auto;
    }

    .bento-eticaret {
        grid-column: span 2;
    }

    .bento-combo {
        grid-column: span 4;
        grid-row: auto;
    }

    .bento-code {
        grid-column: span 4;
        grid-row: auto;
    }

    .bento-sektorel {
        grid-column: span 2;
    }

    .bento-seo {
        grid-column: span 2;
    }

    .bento-live {
        grid-column: span 4;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .contact-card-big {
        padding: 60px 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 80px;
    }

    .navbar {
        top: 12px;
        padding: 0 12px;
    }

    .nav-container {
        padding: 8px 10px 8px 14px;
    }

    .nav-center {
        display: none;
    }

    .nav-center.mobile-open {
        display: flex;
        position: fixed;
        top: 80px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        padding: 16px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .logo-tag {
        display: none;
    }

    .hero {
        padding: 110px 16px 50px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .hero-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        perspective: none;
    }

    .bento-erp, .bento-b2b, .bento-eticaret, .bento-combo, .bento-code,
    .bento-seo, .bento-sektorel, .bento-live {
        grid-column: span 2;
        grid-row: auto;
    }

    .bento-sektorel {
        grid-column: span 2;
    }

    /* Mobilde 3D efektleri kapat (performans) */
    .has-tilt {
        transform: none !important;
    }

    .bento-content {
        transform: none;
    }

    .bento-card h3, .bento-card p {
        transform: none;
    }

    .bento-icon {
        transform: none !important;
    }

    .bento-card:hover .bento-icon {
        transform: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        perspective: none;
    }

    .service-card-inner {
        padding: 22px;
    }

    .service-card:hover .service-card-inner {
        transform: translateY(-4px);
    }

    .service-icon {
        transform: none !important;
    }

    .service-card:hover .service-icon {
        transform: scale(1.05) !important;
    }

    .service-card h3, .service-card p {
        transform: none;
    }

    .why-grid {
        perspective: none;
    }

    .why-card:hover .why-card-inner {
        transform: translateY(-4px);
    }

    .why-icon {
        transform: none !important;
    }

    .why-card:hover .why-icon {
        transform: rotate(-5deg) scale(1.05) !important;
    }

    .why-card h3, .why-card p {
        transform: none;
    }

    .testimonials-grid {
        perspective: none;
    }

    .testimonial:hover .testimonial-inner {
        transform: translateY(-4px);
    }

    .stars, .testimonial blockquote, .testimonial footer {
        transform: none;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        padding: 32px 16px;
    }

    .contact-card-big {
        padding: 40px 20px;
        border-radius: var(--r-lg);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .scroll-top {
        bottom: 80px;
        right: 16px;
    }

    /* Contact section padding ve overflow düzeltmesi */
    .contact-section {
        padding: var(--section-py) 12px;
    }

    .contact-card-big {
        padding: 36px 18px;
        border-radius: var(--r-lg);
        overflow: visible; /* form içi elementlerin kesilmesini önle */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px 18px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 16px;
        width: 100%;
    }

    .contact-form label {
        width: 100%;
        min-width: 0; /* grid taşmasını önle */
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .custom-select,
    .cs-trigger {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Contact info kartları */
    .contact-card {
        padding: 14px 16px;
        box-sizing: border-box;
        width: 100%;
    }

    .contact-card > div:last-child {
        min-width: 0;
        overflow: hidden;
    }

    .contact-card strong {
        font-size: 0.88rem;
        word-break: break-word;
    }

    /* Adres kartında uzun metin kesilmesin */
    .contact-card.static strong {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta > * {
        width: 100%;
    }

    .hero-bento {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 60px 8px;
    }

    .contact-card-big {
        padding: 28px 14px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .section-header {
        padding: 0 8px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .has-tilt {
        transform: none !important;
    }
}

/* ============================================
   ==========================================
   HİZMET DETAY SAYFASI STİLLERİ
   ==========================================
   ============================================ */

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 120px 24px 20px; /* top: 100 → 120, bottom: 0 → 20 */
    max-width: var(--container);
    margin: 0 auto;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.breadcrumb-inner a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: var(--primary);
}

.bc-sep {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

.bc-current {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   SERVICE HERO - 3D Dashboard Mockup
   ============================================ */

.service-hero {
    position: relative;
    padding: 40px 24px 100px;
    overflow: visible; /* hidden → visible */
    max-width: var(--container);
    margin: 0 auto;
}

.service-hero-bg {
    position: absolute;
    top: -150px;
    left: -150px;
    right: -150px;
    bottom: -150px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 40% at 25% 35%, rgba(91, 59, 232, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 80% 70%, rgba(147, 51, 234, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 30% 25% at 50% 50%, rgba(91, 59, 232, 0.06) 0%, transparent 80%);
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 95%);
    filter: blur(20px);
}

.service-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text {
    max-width: 560px;
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.service-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 500px;
}

.service-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   3D ERP DASHBOARD MOCKUP
   ============================================ */
.service-hero-visual {
    perspective: 1500px;
}

.erp-dashboard-mockup {
    position: relative;
    transform-style: preserve-3d;
    animation: dashboardFloat 8s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: rotateY(-4deg) rotateX(4deg) translateY(0);
    }
    50% {
        transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
    }
}

.dash-window {
    display: grid;
    grid-template-columns: 70px 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(91, 59, 232, 0.08),
    0 24px 48px rgba(91, 59, 232, 0.12),
    0 48px 96px rgba(91, 59, 232, 0.1);
    min-height: 400px;
}

.dash-sidebar {
    background: linear-gradient(180deg, #1A1A28 0%, #13131F 100%);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.dash-logo {
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 0.8rem;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.4);
}

.dash-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.dash-menu-item {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    transition: background 0.3s;
}

.dash-menu-item.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(91, 59, 232, 0.5);
}

.dash-main {
    padding: 24px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--surface) 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-header {
    height: 20px;
    background: var(--bg-soft);
    border-radius: 6px;
    width: 60%;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dash-stat-card {
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    box-shadow: 0 2px 8px rgba(91, 59, 232, 0.04);
}

.dash-stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.dash-stat-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dash-trend {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--r-full);
}

.dash-trend.up {
    background: rgba(5, 150, 105, 0.12);
    color: #047857;
}

.dash-chart {
    height: 80px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px;
    overflow: hidden;
}

.dash-chart svg {
    width: 100%;
    height: 100%;
}

.dash-chart .seo-line,
.dash-chart path:last-child {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChart 2.5s ease forwards 0.5s;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

.dash-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-table .dash-row {
    height: 14px;
    background: var(--bg-soft);
    border-radius: 4px;
    width: 100%;
}

.dash-table .dash-row:nth-child(2) {
    width: 85%;
}

.dash-table .dash-row:nth-child(3) {
    width: 70%;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.service-benefits {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    perspective: 1200px;
}

.benefit-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
}

.benefit-card:hover {
    transform: translateY(-6px) rotateX(3deg);
    box-shadow: var(--shadow-3d-hover);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 59, 232, 0.08), transparent);
    transition: left 0.8s ease;
    transform: skewX(-20deg);
}

.benefit-card:hover::before {
    left: 200%;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: translateZ(20px);
    transition: transform 0.4s var(--ease-back);
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: translateZ(40px) rotate(-8deg) scale(1.08);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    transform: translateZ(15px);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

/* ============================================
   MODULES GRID
   ============================================ */
.service-modules {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.module-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow);
}

.module-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 59, 232, 0.3);
    box-shadow: var(--shadow-lg);
}

.module-card:hover::after {
    transform: scaleX(1);
}

.module-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.9;
}

.module-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.service-process {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.process-timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

/* Dikey çizgi */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(
            180deg,
            var(--primary) 0%,
            var(--secondary) 50%,
            var(--accent) 100%
    );
    opacity: 0.3;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    padding-bottom: 40px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-num {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    z-index: 2;
    margin-left: -28px;
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.2),
    0 0 0 6px var(--bg);
    transition: all 0.3s var(--ease);
}

.process-step:hover .process-num {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(91, 59, 232, 0.35),
    0 0 0 6px var(--bg);
}

.process-content {
    padding-top: 8px;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.service-faq {
    padding: var(--section-py) 24px;
    max-width: 840px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(91, 59, 232, 0.3);
    box-shadow: var(--shadow);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(91, 59, 232, 0.1);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.faq-item[open] .faq-arrow {
    background: var(--grad-primary);
    color: white;
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HIZMET CTA (Ortak blok)
   ============================================ */
.hizmet-cta-section {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.hizmet-cta-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 80px 40px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 16px rgba(91, 59, 232, 0.06),
    0 24px 48px rgba(91, 59, 232, 0.08),
    0 48px 96px rgba(91, 59, 232, 0.06);
}

.hizmet-cta-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.6;
    pointer-events: none;
}

.hizmet-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hizmet-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hizmet-cta-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hizmet-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    position: relative;
    display: block;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.related-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-md);
    background: var(--grad-primary);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.related-card:hover::before {
    opacity: 0.2;
}

.related-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.4s var(--ease-back);
}

.related-card:hover .related-icon {
    transform: rotate(-8deg) scale(1.08);
}

.related-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.related-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.related-arrow {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s var(--ease);
}

.related-card:hover .related-arrow {
    transform: translateX(6px);
}

/* ============================================
   RESPONSIVE - HİZMET SAYFASI
   ============================================ */
@media (max-width: 1024px) {
    .service-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .service-hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .service-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-cta {
        justify-content: center;
    }

    .erp-dashboard-mockup {
        max-width: 560px;
        margin: 0 auto;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 90px 16px 0;
    }

    .breadcrumb-inner {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .service-hero {
        padding: 30px 16px 60px;
    }

    .service-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .service-lead {
        font-size: 1rem;
    }

    .service-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-cta > * {
        width: 100%;
        justify-content: center;
    }

    .dash-window {
        grid-template-columns: 60px 1fr;
        min-height: 320px;
    }

    .dash-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .dash-stat-card {
        padding: 8px 10px;
    }

    .dash-stat-val {
        font-size: 0.9rem;
    }

    .dash-trend {
        top: 8px;
        right: 8px;
        font-size: 0.55rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        perspective: none;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-card:hover {
        transform: translateY(-3px);
    }

    .benefit-card:hover .benefit-icon {
        transform: rotate(-5deg) scale(1.05) !important;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding: 22px;
    }

    .process-timeline {
        padding-left: 20px;
    }

    .process-step {
        grid-template-columns: 36px 1fr;
        gap: 16px;
        padding-bottom: 32px;
    }

    .process-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-left: -28px;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .faq-item summary {
        font-size: 0.92rem;
        padding: 16px 18px;
    }

    .faq-item p {
        padding: 0 18px 18px;
        font-size: 0.9rem;
    }

    .hizmet-cta-card {
        padding: 50px 24px;
        border-radius: var(--r-lg);
    }

    .hizmet-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hizmet-cta-buttons > * {
        width: 100%;
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dash-sidebar {
        padding: 14px 8px;
    }

    .dash-logo {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .dash-main {
        padding: 16px;
        gap: 10px;
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dash-stats .dash-stat-card:nth-child(3) {
        grid-column: 1 / -1;
    }

    .dash-chart {
        height: 60px;
    }

    .module-num {
        font-size: 1.6rem;
    }
}

/* ============================================
   HIGHLIGHTS (Öne Çıkan Özellikler)
   ============================================ */
.service-highlights {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-item {
    position: relative;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all 0.3s var(--ease);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-mesh);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 59, 232, 0.3);
    box-shadow: var(--shadow-lg);
}

.highlight-item:hover::before {
    opacity: 0.6;
}

.highlight-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bg-soft), #FFFFFF);
    border: 1px solid var(--border);
    font-size: 1.6rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 8px rgba(91, 59, 232, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.highlight-item h3 {
    position: relative;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    z-index: 2;
}

.highlight-item p {
    position: relative;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    z-index: 2;
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 22px;
    }
}

/* ============================================
   CUSTOM SELECT
   ============================================ */
.custom-select {
    position: relative;
    width: 100%;
}

.cs-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s var(--ease);
}

.cs-trigger:hover {
    border-color: var(--primary-light);
    background: var(--surface);
}

.custom-select.open .cs-trigger,
.cs-trigger:focus-visible {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(91, 59, 232, 0.1);
}

.cs-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-soft), var(--surface));
    border: 1px solid var(--border);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.custom-select.open .cs-icon,
.custom-select.selected .cs-icon {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(91, 59, 232, 0.3);
}

.cs-label {
    flex: 1;
    color: var(--text-muted);
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select.selected .cs-label {
    color: var(--text);
    font-weight: 600;
}

.cs-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease), color 0.3s;
}

.custom-select.open .cs-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.cs-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.08),
    0 16px 40px rgba(91, 59, 232, 0.15),
    0 32px 64px rgba(91, 59, 232, 0.1);
    padding: 8px;
    max-height: 340px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 50;
}

.custom-select.open .cs-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cs-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background 0.2s ease;
}

.cs-option:hover,
.cs-option.focused {
    background: var(--bg-soft);
}

.cs-option.active {
    background: linear-gradient(135deg, rgba(91, 59, 232, 0.08), rgba(147, 51, 234, 0.06));
}

.cs-option.active::before {
    content: '✓';
    position: absolute;
    right: 18px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

.cs-option {
    position: relative;
}

.cs-opt-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(91, 59, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cs-opt-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cs-opt-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.cs-opt-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Scrollbar */
.cs-dropdown::-webkit-scrollbar {
    width: 6px;
}

.cs-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.cs-dropdown::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
}

/* ============================================
   TOAST BİLDİRİM
   ============================================ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: 0 8px 16px rgba(91, 59, 232, 0.08),
    0 24px 48px rgba(91, 59, 232, 0.15);
    min-width: 320px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(120%);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-back);
    position: relative;
    overflow: hidden;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hiding {
    opacity: 0;
    transform: translateX(120%);
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

.toast.success::before {
    background: linear-gradient(180deg, #059669, #10B981);
}

.toast.error::before {
    background: linear-gradient(180deg, #DC2626, #EF4444);
}

.toast.warning::before {
    background: linear-gradient(180deg, #D97706, #F59E0B);
}

.toast.info::before {
    background: linear-gradient(180deg, #2563EB, #3B82F6);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, #059669, #10B981);
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.toast.warning .toast-icon {
    background: linear-gradient(135deg, #D97706, #F59E0B);
}

.toast.info .toast-icon {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.toast-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.toast-close:hover {
    background: var(--border);
    color: var(--text);
}

.toast-progress {
    position: absolute;
    left: 4px;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    width: 100%;
    transform-origin: left;
    animation: toastProgress var(--duration, 5s) linear forwards;
    opacity: 0.4;
}

.toast.success .toast-progress {
    background: #059669;
}

.toast.error .toast-progress {
    background: #DC2626;
}

@keyframes toastProgress {
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .toast {
        min-width: 0;
    }
}

/* ============================================
   BAŞARI MODALI (SUCCESS MODAL)
   ============================================ */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.active {
    display: flex;
    opacity: 1;
}

.sm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 12, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sm-dialog {
    position: relative;
    background: var(--surface);
    border-radius: var(--r-xl);
    max-width: 500px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(91, 59, 232, 0.15),
    0 48px 96px rgba(91, 59, 232, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-back);
}

.success-modal.active .sm-dialog {
    transform: scale(1) translateY(0);
}

.sm-hero {
    background: linear-gradient(135deg, #5B3BE8 0%, #9333EA 50%, #D97706 100%);
    padding: 40px 32px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
}

.sm-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sm-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall 3s ease-in infinite;
}

.sm-confetti span:nth-child(1) {
    left: 10%;
    top: -10px;
    background: #FBBF24;
    animation-delay: 0s;
}

.sm-confetti span:nth-child(2) {
    left: 25%;
    top: -10px;
    background: #22C55E;
    animation-delay: 0.3s;
}

.sm-confetti span:nth-child(3) {
    left: 40%;
    top: -10px;
    background: #3B82F6;
    animation-delay: 0.6s;
}

.sm-confetti span:nth-child(4) {
    left: 55%;
    top: -10px;
    background: #EC4899;
    animation-delay: 0.9s;
}

.sm-confetti span:nth-child(5) {
    left: 70%;
    top: -10px;
    background: #F59E0B;
    animation-delay: 1.2s;
}

.sm-confetti span:nth-child(6) {
    left: 85%;
    top: -10px;
    background: #A78BFA;
    animation-delay: 1.5s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotate(720deg);
        opacity: 0;
    }
}

.sm-check {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: checkPop 0.6s var(--ease-back) 0.2s both;
    position: relative;
    z-index: 1;
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.sm-check svg {
    width: 44px;
    height: 44px;
    color: #059669;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 0.6s ease 0.7s forwards;
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.sm-hero h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.sm-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sm-body {
    padding: 32px;
}

.sm-info {
    background: var(--bg-soft);
    border-radius: var(--r);
    padding: 18px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.sm-info-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(91, 59, 232, 0.25);
}

.sm-actions-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}

.sm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.sm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.sm-btn-call {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(91, 59, 232, 0.3);
}

.sm-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(91, 59, 232, 0.4);
}

.sm-btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.sm-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.sm-close-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: all 0.2s;
}

.sm-close-btn:hover {
    background: var(--bg-soft);
    color: var(--text);
}

@media (max-width: 480px) {
    .sm-actions {
        grid-template-columns: 1fr;
    }

    .sm-hero {
        padding: 32px 20px 40px;
    }

    .sm-body {
        padding: 24px 20px;
    }
}

