/* Gradient Animasyonu İçin Özel Property */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-gradient {
    to { --angle: 360deg; }
}

:root {
    --primary-color: #4f46e5;
    --secondary-color: #7c3aed;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-color);
}

.nav-logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Navbar CTA Button Style */
.nav-menu a.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 8px 22px;
    border-radius: 50px;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.nav-menu a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hamburger ikon dönüş animasyonu */
.mobile-menu-btn i {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

/* Menü aktifken (fa-times sınıfı varken) ikonu döndür ve rengini değiştir */
.mobile-menu-btn i.fa-times {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.lang-switch {
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 20px;
    display: flex;
}

.lang-switch button {
    border: none;
    background: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    transition: var(--transition);
}

.lang-switch button.active {
    background: var(--primary-color);
    color: white;
}

/* Nav Overlay Styles */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998; /* Menü (999) ve Navbar (1000) altında olmalı */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Okunabilirlik için beyaz transparan katman */
    z-index: 2;
}

.hero-light-leak {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.4) 0%, rgba(79, 70, 229, 0.1) 40%, transparent 80%);
    z-index: 3; /* Overlay'in bir tık üzerinde olmalı */
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    animation: lightLeakAction 5s ease-in-out infinite;
}

@keyframes lightLeakAction {
    0%, 78% { opacity: 0; transform: scale(1); }
    80% { opacity: 0.6; transform: scale(1.1); filter: blur(5px); } /* Parlama anı */
    83% { opacity: 0; transform: scale(1.2); filter: blur(15px); }
    100% { opacity: 0; }
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    z-index: 4; /* İçerik tüm efektlerin en üstünde */
}

.hero-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    filter: blur(5px);
    animation: letterReveal 0.5s forwards;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    cursor: default;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: var(--primary-color); /* Fallback renk */
    line-height: 1.1;
}

.title-top {
    display: block;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}

.title-bottom {
    display: block;
    font-size: 3.2rem;
    font-weight: 600;
}

.title-bottom span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulseGlow 4s ease-in-out infinite alternate;
    display: inline-block;
}

.title-bottom span:nth-last-child(-n+4) {
    background: linear-gradient(135deg, #f59e0b, #facc15) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
    animation: letterReveal 0.5s forwards, aiGlowAction 5s infinite;
    font-weight: 900;
}

@keyframes titlePulseGlow {
    0% { filter: drop-shadow(0 0 2px rgba(79, 70, 229, 0.1)); }
    100% { filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5)); }
}

/* "AI" Kelimesini Vurgulama (İlk iki harf) */
.title-top span:nth-child(1),
.title-top span:nth-child(2) {
    background: linear-gradient(135deg, #f59e0b, #facc15) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
    font-weight: 900;
    animation: letterReveal 0.5s forwards, aiGlowAction 5s infinite;
}

/* Harf Zıplama Efekti */
.hero h1 span:hover {
    transform: translateY(-15px) scale(1.1);
    filter: brightness(1.2) drop-shadow(0 10px 15px rgba(79, 70, 229, 0.3));
    z-index: 10;
}

.hero-img-wrapper {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-top: 25px;
    margin-left: -80px; /* Sola daha fazla yaslandı */
    opacity: 0;
    animation: subtitleReveal 0.8s ease-out forwards;
    animation-delay: 1s;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    will-change: transform;
    z-index: 5;
    position: relative;
    /* 3D Görünüm İçin Perspective */
    perspective: 600px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-chat-bubbles {
    margin-top: 15px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform: translateZ(30px); /* 3D derinlikte öne al */
}

.chat-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4ff 100%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1), 0 0 15px rgba(124, 58, 237, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: none;
    animation: bubblePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, chatGlowPulse 2s ease-in-out infinite alternate;
    white-space: nowrap;
}

@keyframes chatGlowPulse {
    from { box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1), 0 0 10px rgba(124, 58, 237, 0.2); }
    to { box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15), 0 0 20px rgba(124, 58, 237, 0.6); }
}

.chat-bubble.active {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing span {
    height: 6px;
    width: 6px;
    background-color: var(--primary-color);
    display: block;
    border-radius: 50%;
    opacity: 0.4;
    animation: typing-dots 1s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dots {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes bubblePop {
    from { opacity: 0; transform: translateY(10px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Büyüteçten çıkan ışık hüzmesi (Flare) */
.hero-img-wrapper::after {
    content: "";
    position: absolute;
    top: 42%; /* Işığı biraz yukarı çekerek büyüteçle hizaladık */
    left: 34%; /* Yatayda da tam ortalamak için küçük bir düzeltme */
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
        rgba(147, 51, 234, 1) 0%,
        rgba(168, 85, 247, 0.9) 20%,
        rgba(196, 181, 253, 0.7) 40%,
        rgba(165, 180, 252, 0.5) 60%,
        transparent 80%);
    border-radius: 50%;
    filter: blur(6px);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    animation: beamAction 6s ease-in-out infinite;
}

@keyframes beamAction {
    0%, 75% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
        filter: blur(6px);
    }
    78% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.5);
        filter: blur(4px);
    }
    82% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(3);
        filter: blur(2px);
    }
    86% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(4.5);
        filter: blur(8px);
    }
    90% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(6);
        filter: blur(12px);
    }
    95% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(7.5);
        filter: blur(18px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(8);
        filter: blur(25px);
    }
}

@keyframes aiGlowAction {
    0%, 78% { filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4)); transform: scale(1); }
    80% { filter: drop-shadow(0 0 30px rgba(245, 158, 11, 1)); transform: scale(1.1); }
    83% { filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4)); transform: scale(1); }
}

/* Performans Tasarrufu: Hero görünür değilken animasyonları durdur */
.hero.not-visible .hero-light-leak,
.hero.not-visible .hero-img-wrapper::after,
.hero.not-visible .title-top span:nth-child(1),
.hero.not-visible .title-top span:nth-child(2),
.hero.not-visible .hero-img,
.hero.not-visible .word-reveal,
.hero.not-visible .hero-social-proof {
    animation-play-state: paused !important;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    /* Maskot Flip & Glow Animasyonu - Hız düşürüldü (5s) */
    animation: mascotAction 5s ease-in-out infinite;
    transform-origin: center 55%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    border-radius: 12px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); /* Çok hafif doğal derinlik */
}

@keyframes mascotAction {
    0%, 65% {
        transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    }
    /* Kart açılış efekti (RotateY) ve Parlama (Glow) */
    75% {
        transform: rotateY(180deg) rotateX(8deg) translateZ(20px);
        filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.7)) brightness(1.3);
    }
    80% {
        transform: rotateY(360deg) rotateX(0deg) translateZ(0px);
        filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.7)) brightness(1.3);
    }
    /* Dengeyi Bulma (Sarsıntı) */
    82% {
        transform: rotateY(360deg) rotateX(-3deg) translateZ(-5px);
        filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.6)) brightness(1.2);
    }
    84% {
        transform: rotateY(360deg) rotateX(3deg) translateZ(5px);
        filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.6)) brightness(1.2);
    }
    86% {
        transform: rotateY(360deg) rotateX(-2deg) translateZ(-3px);
        filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.5)) brightness(1.1);
    }
    88% {
        transform: rotateY(360deg) rotateX(2deg) translateZ(3px);
        filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.5)) brightness(1.1);
    }
    90% {
        transform: rotateY(360deg) rotateX(0deg) translateZ(0px);
        filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.4)) brightness(1.05);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg) translateZ(0px);
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    }
}

.hero-text {
    flex: 1.2;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 900px;
    opacity: 1; /* Container visible, words will animate */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8); /* Silinen gölge eklendi */
    line-height: 1.7;
}

.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: subtitleReveal 0.5s ease-out forwards;
    letter-spacing: -0.01em;
}

.ai-word-glow {
    background: linear-gradient(135deg, #f59e0b, #facc15) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.6));
    font-weight: 800 !important; /* Daha kalın ve belirgin */
    font-style: italic;
    display: inline-block;
    animation-name: subtitleReveal, aiGlowAction !important;
    animation-duration: 0.5s, 5s !important;
    animation-iteration-count: 1, infinite !important;
    animation-fill-mode: forwards, none !important;
}

.hero p strong {
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
}

/* Referans Bandı Stilleri */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(10px);
    animation: subtitleReveal 0.8s ease-out forwards;
    animation-delay: 2.8s;
}

.social-stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.hero-social-proof span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Ripple (Dalga) Efekti */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--text-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-badge {
    background: #fbbf24;
    color: #000;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 700;
}

/* Hero Butonlarını AI Vurgusuyla Uyumlu Hale Getirme */
.hero .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #facc15 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn.btn-success {
    background: #10b981 !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero .btn-outline {
    border-color: #f59e0b;
    color: #f59e0b;
}

.hero .btn-outline::before {
    background: linear-gradient(135deg, #f59e0b, #facc15);
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

.section-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

/* Profesyonel Çizgi Barları */
.section-title-wrapper::before,
.section-title-wrapper::after {
    content: "";
    height: 2px;
    flex: 1;
    max-width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    border-radius: 2px;
    opacity: 0.6;
    transition: max-width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.section-title-wrapper::after {
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

/* Başlık Üzerine Gelindiğinde Çizgilerin Uzaması */
.section-title-wrapper:hover::before,
.section-title-wrapper:hover::after {
    max-width: 180px;
    opacity: 1;
}

.section-title-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 35px;
    border-radius: 12px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.section-title-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(79, 70, 229, 0.3));
}

.feature-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 120px;
    margin-bottom: 120px;
    /* Kaydırma animasyonu başlangıç hali (Sol taraf) */
    opacity: 0;
    transform: translateX(-150px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, background 0.3s ease;
    /* Başlık yapısıyla uyumlu profesyonel kart yapısı */
    padding: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(79, 70, 229, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.feature-row::after {
    content: "";
    position: absolute;
    left: 50%; /* Kartın ortasındaki dikey ayraç */
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--row-accent, var(--primary-color)), transparent);
    opacity: 0.2;
    pointer-events: none;
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.feature-row:hover::after {
    height: 200px;
    opacity: 0.5;
}

.feature-row.reverse {
    flex-direction: row-reverse;
    /* Kaydırma animasyonu başlangıç hali (Sağ taraf) */
    transform: translateX(150px);
}

.feature-row.visible,
.feature-row.reverse.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-row.visible .visual-placeholder i,
.feature-row.visible .visual-placeholder img {
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(79, 70, 229, 0.4));
    transition: all 0.8s ease;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.65rem;
    margin-bottom: 25px;
    color: var(--row-accent, var(--primary-color));
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 6px solid var(--row-accent, var(--primary-color));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
    font-weight: 700;
}


.feature-list {
    list-style: none;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-list li {
    background: #f3f4ff;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.feature-list li i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--row-accent, var(--primary-color));
}

.feature-content p {
    font-size: 1.1rem;
    color: #4b5563;
}

.highlight-box {
    margin-top: 15px;
    padding: 12px 18px;
    background: #f5f3ff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0;
}

.feature-row.visible .highlight-box {
    animation: fadeInSlide 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-visual {
    flex: 1.6;
    display: flex;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, #f3f4ff 0%, #eef2ff 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary-color);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 0 0px var(--row-accent, var(--primary-color)); /* Default subtle shadow, and a placeholder for accent glow */
    transition: box-shadow 0.8s ease-out; /* Smooth transition for the glow */
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Blur-up / Loading Effect */
.visual-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.visual-placeholder.loaded::before {
    display: none;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.visual-placeholder img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.visual-placeholder img.loaded {
    opacity: 1;
    filter: blur(0);
}

.visual-placeholder img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px var(--row-accent, var(--primary-color))) brightness(1.1);
}

.feature-row.visible .visual-placeholder {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 0 20px var(--row-accent, var(--primary-color)); /* Accent glow */
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    overflow: hidden; /* Kurdale ve parlama efekti için gerekli */
    /* Giriş animasyonu başlangıç hali */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px; 
    padding: 2px; /* Kenarlık kalınlığı */
    background: conic-gradient(from var(--angle), var(--pkg-color-1, var(--primary-color)), var(--pkg-color-2, var(--secondary-color)), var(--pkg-color-1, var(--primary-color)));
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.2; /* Sürekli görünmesi için hafif opaklık */
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    animation: rotate-gradient 3s linear infinite;
}

/* Paket Bazlı Renk Tanımlamaları */
.pkg-starter {
    --pkg-color-1: #0ea5e9;
    --pkg-color-2: #22d3ee;
}

.pkg-pro {
    --pkg-color-1: #4f46e5;
    --pkg-color-2: #7c3aed;
}

.pkg-enterprise {
    --pkg-color-1: #f59e0b;
    --pkg-color-2: #ef4444;
}

.pkg-enterprise.visible::before {
    opacity: 0.6;
    filter: drop-shadow(0 0 8px var(--pkg-color-2)); /* Neon parlama efekti */
}

.price-card.popular {
    border: 2px solid transparent; /* Gradient kenarlığa alan açar */
    transform: scale(1.05) translateY(30px);
}

.price-card.popular::before {
    opacity: 0.5; /* Popüler kartta daha belirgin */
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card.popular.visible {
    opacity: 1;
    transform: scale(1.05) translateY(0);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
    border-color: transparent; /* Hoverda gradient öne çıkar */
}

.price-card:hover::before {
    opacity: 1;
}

.pkg-enterprise:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3), 0 0 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-10px);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: #1f2937;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.12);
}

.price-card h3::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.pkg-starter h3 {
    background: rgba(14, 165, 233, 0.12);
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.18);
    color: #0f172a;
}

.pkg-starter h3::after {
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
}

.pkg-pro h3 {
    background: rgba(79, 70, 229, 0.16);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.26);
    color: #312e81;
}

.pkg-pro h3::after {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.pkg-enterprise h3 {
    background: rgba(245, 158, 11, 0.12);
    box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.18);
    color: #78350f;
}

.pkg-enterprise h3::after {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.badge {
    position: absolute;
    top: 38px;
    right: -38px; /* Kurdale pozisyonu */
    background: linear-gradient(135deg, #ec4899, #f97316, #f59e0b);
    color: #ffffff;
    padding: 5px 12px;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transform: rotate(45deg);
    transform-origin: center center;
    font-size: 0.62rem;
    line-height: 1.1;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.18);
    z-index: 10;
    border-radius: 18px;
    letter-spacing: 0.06em;
    overflow: hidden; /* Parıltının dışarı taşmaması için */
}

.badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(-45deg) translateX(-35%);
    opacity: 0.35;
}

/* Kurdale Parıltı Efekti */
.badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: ribbon-shimmer 4s infinite;
}

@keyframes ribbon-shimmer {
    0% { left: -150%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-card ul li {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.price-card ul li i {
    color: #10b981;
    margin-right: 10px;
}

/* Feature Highlights */
.feature-highlight {
    font-weight: 700;
    color: var(--pkg-color-1);
}

.feature-glow {
    font-weight: 800;
    background: linear-gradient(135deg, var(--pkg-color-1), var(--pkg-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: featureGlowPulse 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.2));
}

@keyframes featureGlowPulse {
    0% { filter: drop-shadow(0 0 2px var(--pkg-color-1)); opacity: 0.9; transform: scale(1); }
    100% { filter: drop-shadow(0 0 12px var(--pkg-color-2)); opacity: 1; transform: scale(1.02); }
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #000;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 0 8px;
    font-weight: 800;
    vertical-align: middle;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    animation: badgePulse 2s infinite;
    cursor: pointer;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 2px 20px rgba(245, 158, 11, 0.6); }
    100% { transform: scale(1); box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3); }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.contact-info {
    margin-top: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.wa-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.wa-footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: var(--transition);
    color: #9ca3af;
}

.accordion-header:hover::after {
    color: var(--primary-color);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 10px 20px 20px;
}

/* Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 65vh;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    animation: modalZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.modal-caption {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    animation: modalZoom 0.4s ease-out;
}

.wa-modal-btn {
    margin-top: 25px;
    background: #25d366;
    color: white !important;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: modalZoom 0.5s ease-out;
}

.wa-modal-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

@keyframes modalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Changelog Modal Styles */
.changelog-modal {
    display: none;
    position: fixed;
    z-index: 2600;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.changelog-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.changelog-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.changelog-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.changelog-img:hover {
    transform: scale(1.02);
}

.changelog-card ul {
    list-style: none;
}

.changelog-card li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
}

.changelog-card li::before {
    display: none;
}

.new-tag {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.close-changelog {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #9ca3af;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 2000;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}

.toast-success { background: #10b981; box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); }
.toast-error { background: #ef4444; box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3); }
.toast-info { background: #3b82f6; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); }

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease, color 0.5s ease;
    z-index: 1000;
}

.scroll-to-top-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* İlerlemeyi yukarıdan başlatır */
    pointer-events: none;
}

.progress-background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 6;
}

.progress-bar {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-dasharray: 283; /* 2 * PI * r (45) */
    stroke-dashoffset: 283;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear, stroke 0.5s ease;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover efekti */
.scroll-to-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Küçük Monitör ve Laptop Uyumluluğu (Responsive Layers) */
@media (max-width: 1700px) {
    .feature-row.visible { transform: translateX(-100px); }
    .feature-row.reverse.visible { transform: translateX(100px); }
}

@media (max-width: 1550px) {
    .container { max-width: 1300px; }
    .feature-row.visible { transform: translateX(-60px); }
    .feature-row.reverse.visible { transform: translateX(60px); }
    .visual-placeholder { height: 500px; }
}

@media (max-width: 1400px) {
    .container { max-width: 1100px; }
    .feature-row { 
        gap: 50px; 
        padding: 35px;
    }
    .visual-placeholder { height: 420px; }
    /* Ekran daraldığında taşmayı önlemek için kaydırmayı tamamen sıfırlıyoruz */
    .feature-row.visible, .feature-row.reverse.visible { 
        transform: translateX(0); 
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .lang-switch {
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 40px;
        z-index: 999;
        display: flex;
    }

    .nav-menu a.nav-cta {
        margin-left: 0;
        padding: 12px 35px;
        font-size: 1.1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .title-top { font-size: 2.8rem; }
    .title-bottom { 
        font-size: 2rem; 
        text-align: center; 
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-img-wrapper {
        margin-left: 0;
        max-width: 300px;
        margin-bottom: 20px;
    }
    .hero-chat-bubbles {
        height: auto;
        min-height: 45px;
    }
    .chat-bubble {
        font-size: 0.85rem;
        padding: 8px 16px;
        white-space: normal;
        max-width: 85vw;
        line-height: 1.4;
    }
    .feature-row, .feature-row.reverse { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }

    .feature-row {
        padding: 30px 20px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .feature-row::after {
        display: none;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        padding: 10px 20px;
        margin-bottom: 20px;
        display: block;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 20px 25px;
        margin-bottom: 25px;
        line-height: 1.5;
        border-radius: 15px;
    }
    
    /* Mobil cihazlarda animasyonları devre dışı bırakıyoruz */
    .feature-row, .feature-row.reverse, .price-card, .price-card.popular, .highlight-box, .hero p {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Mobil Modal Düzenlemeleri */
    .modal-content {
        max-height: 50vh;
        max-width: 95%;
    }

    .modal-caption {
        font-size: 1.1rem;
        margin-top: 15px;
    }

    .wa-modal-btn {
        margin-top: 15px;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}
/* 3D Mascot Container Styles */
#mascot-container {
    position: fixed;
    bottom: 20px;
    left: 10px;
    width: 350px;
    height: 350px;
    z-index: 999;
    pointer-events: none; /* Altındaki butonlara tıklanabilmesi için */
}

#mascot-container .mascot-chat {
    position: absolute;
    top: -50px; /* Daha yukarı taşıyarak kafa üzerindeki boşluğu artırdık */
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 9999; /* En üstte olduğundan emin olalım */
    display: none; /* Varsayılan olarak gizli */
    pointer-events: auto; /* Baloncuğa tıklanabilsin veya en azından görünür kalsın */
    min-width: 380px; /* Daha yayvan bir görünüm için genişlik artırıldı */
    max-width: 550px;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
    
    /* Görsel özellikler (chat-bubble'dan bağımsız garantiye alıyoruz) */
    background: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4ff 100%) !important;
    padding: 12px 20px !important;
    border-radius: 18px !important;
    border-bottom-left-radius: 2px !important;
    border: 1px solid rgba(124, 58, 237, 0.4) !important;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2), 0 0 15px rgba(124, 58, 237, 0.1) !important;
    color: var(--primary-color);
    font-weight: 700;
}

/* Baloncuk içindeki hareketli noktaların dizilimi */
#mascot-container .mascot-chat .typing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

/* Baloncuk içindeki vurgulu link/metin stili */
#mascot-container .mascot-chat .highlight-link {
    color: #f59e0b; /* Zertucha turuncusu */
    font-weight: 800;
}

#mascot-container .mascot-chat.active {
    display: block !important; /* Metin merkezleme için block veya flex */
    animation: bubblePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

.mascot-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    transition: opacity 0.5s ease;
}

.mascot-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    border-left-color: var(--primary-color);
    animation: mascot-spin 0.8s linear infinite;
}

@keyframes mascot-spin {
    to { transform: rotate(360deg); }
}

#mascot-container canvas {
    pointer-events: auto;
    cursor: pointer;
}

@media (max-width: 768px) {
    #mascot-container {
        width: 120px;
        height: 120px;
        bottom: 10px;
        left: 10px;
    }
}

/* Visitor Stats Styling */
.visitor-stats {
    padding: 40px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4ff 100%);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}