/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background-color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

mark.bg-red { background-color: #fee2e2; color: #991b1b; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
mark.bg-green { background-color: #dcfce7; color: #166534; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

h1, h2, h3 { font-weight: 800; line-height: 1.2; color: #111827; }
p { color: #4b5563; font-size: 1.1rem; }

/* Sabit WhatsApp Butonu */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 9999;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}
.floating-wa i { font-size: 1.5rem; }
.pulse-wa { animation: pulse-green 2s infinite; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Buton Yapıları */
.cta-button {
    display: inline-block;
    color: #ffffff;
    font-weight: 800;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
}
.primary-cta {
    background-color: #111827;
    box-shadow: 0 10px 15px -3px rgba(17, 24, 39, 0.3);
}
.pulse-cta-soft {
    animation: pulse-dark 2.5s infinite;
}
@keyframes pulse-dark {
    0% { box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(17, 24, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(17, 24, 39, 0); }
}

.wa-main-cta {
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2.5s infinite;
}
.wa-main-cta i { font-size: 1.5rem; }

/* 1. Hero Alanı (Merkezi) */
.hero {
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #fafafa 100%);
    text-align: center;
}
.hero-centered {
    max-width: 800px;
    margin: 0 auto;
}
.badge {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
}
.hero-centered h1 { font-size: 3.2rem; letter-spacing: -0.03em; margin-bottom: 20px; line-height: 1.3; }
.hero-centered .subtitle { font-size: 1.2rem; margin: 0 auto 30px; max-width: 650px; }
.hero-centered .trust-text { font-weight: 600; margin-top: 25px; font-size: 0.95rem; }

section { padding: 80px 20px; }

/* 2. Sorun Yüzleşmesi Alanı */
.problem-solution {
    background-color: #ffffff;
}
.problem-solution h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
}
.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.pain-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.pain-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111827;
}

/* 3. Kıyaslama Tablosu */
.comparison-section { background-color: #fafafa; text-align: center; }
.comparison-section h2 { font-size: 2.4rem; margin-bottom: 50px; }
.comparison-grid { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.comparison-card { padding: 40px 30px; border-radius: 16px; text-align: left; position: relative; }
.comparison-card h3 { font-size: 1.4rem; margin-bottom: 25px; text-align: center; }
.comparison-card li { margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: flex-start; gap: 10px; }
.comparison-card.them { background-color: #f1f5f9; border: 1px solid #cbd5e1; color: #64748b; }
.comparison-card.them i { color: #ef4444; margin-top: 4px; }
.comparison-card.us { background-color: #ffffff; border: 3px solid #111827; box-shadow: 0 15px 25px -5px rgba(0,0,0,0.1); }
.comparison-card.us i { color: #10b981; margin-top: 4px; }
.best-choice-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #111827; color: #ffffff; padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }

/* 4. Özellikler */
.features { background-color: #ffffff; text-align: center; }
.features h2 { font-size: 2.4rem; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.feature-item { background: #fafafa; padding: 40px 25px; border-radius: 12px; border: 1px solid #f1f5f9; }
.feature-icon { font-size: 2rem; color: #111827; margin-bottom: 15px; }

/* 5. Fiyatlandırma */
.pricing-section { background-color: #fafafa; }
.pricing-box { border: 3px solid #111827; border-radius: 20px; padding: 50px 30px; text-align: center; background: #ffffff; max-width: 700px; margin: 0 auto; }
.urgency-banner { background: #fee2e2; color: #991b1b; padding: 12px; font-weight: 800; border-radius: 8px; margin-bottom: 30px; font-size: 1.1rem; text-transform: uppercase; }
.live-viewers { color: #dc2626; font-weight: 600; margin-bottom: 20px; font-size: 1.1rem; }
.pulse-text { animation: opacityPulse 2s infinite; }
@keyframes opacityPulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
.old-price { text-decoration: line-through; color: #9ca3af; font-size: 1.4rem; font-weight: 600; }
.discount-badge { background: #10b981; color: #ffffff; padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 1rem; margin: 10px 0; display: inline-block; }
.new-price { font-size: 2.8rem; font-weight: 800; color: #111827; line-height: 1; margin: 10px 0; }
.scarcity-container { background: #f8fafc; padding: 25px; border-radius: 12px; margin-bottom: 30px; border: 1px solid #e2e8f0; }
.scarcity-header { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; }
.spot-number { color: #dc2626; font-size: 1.8rem; }
.progress-bar-container { width: 100%; height: 12px; background-color: #e2e8f0; border-radius: 6px; margin-bottom: 20px; overflow: hidden; }
.progress-bar { height: 100%; width: 20%; background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%); transition: width 0.8s ease; }
.timer { font-size: 3rem; font-weight: 800; color: #dc2626; font-variant-numeric: tabular-nums; }
.risk-reversal { margin-top: 30px; padding: 20px; background-color: #f0fdf4; border: 2px dashed #16a34a; border-radius: 12px; display: flex; align-items: center; gap: 15px; text-align: left; }
.risk-reversal i { font-size: 2.5rem; color: #16a34a; }
.risk-reversal p { font-size: 0.95rem; color: #166534; margin: 0; }

/* 6. SSS (FAQ) */
.faq-section { background-color: #ffffff; text-align: center; }
.faq-section h2 { font-size: 2.4rem; margin-bottom: 40px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 15px; overflow: hidden; text-align: left; }
.faq-question { width: 100%; text-align: left; padding: 20px; background: none; border: none; font-size: 1.15rem; font-weight: 700; color: #111827; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 20px 20px; font-size: 1.05rem; }
.faq-item.active .faq-answer { max-height: 250px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Sosyal Kanıt & Çıkış Niyeti Pop-up */
.social-toast { position: fixed; bottom: 90px; left: 10px; right: 10px; background: #ffffff; border-left: 5px solid #10b981; padding: 12px 15px; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; z-index: 9998; transform: translateY(150%); transition: transform 0.5s ease; }
.social-toast.show { transform: translateY(0); }
.toast-img i { font-size: 1.8rem; color: #10b981; }
.toast-name { font-weight: 800; font-size: 0.9rem; margin-bottom: 2px; }
.toast-action { font-size: 0.8rem; color: #64748b; }

.exit-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 24, 39, 0.9); display: flex; justify-content: center; align-items: center; z-index: 10000; opacity: 0; visibility: hidden; transition: opacity 0.3s; padding: 20px; }
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-content { background: #ffffff; padding: 40px 20px; border-radius: 16px; width: 100%; max-width: 450px; text-align: center; position: relative; border: 4px solid #ef4444; }
.close-popup { position: absolute; top: 10px; right: 15px; font-size: 2rem; color: #9ca3af; cursor: pointer; }
.exit-badge { background: #fee2e2; color: #dc2626; padding: 6px 12px; border-radius: 20px; font-weight: 800; margin-bottom: 15px; display: inline-block; font-size: 0.9rem; }
.exit-content h2 { font-size: 1.8rem; margin-bottom: 10px; }
.exit-offer { font-size: 1.1rem; color: #166534; background: #dcfce7; padding: 15px; border-radius: 8px; margin: 15px 0; font-weight: 600; }

/* Animasyonlar */
.section-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.section-fade.visible { opacity: 1; transform: translateY(0); }

/* Mobil Sabit Alt Çubuk */
.mobile-sticky-bar { display: none; }

/* Mobil Odaklı Medya Sorgusu */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    
    .hero { padding: 80px 20px 60px; }
    .hero-centered h1 { font-size: 2.3rem; }
    .pain-points-grid { grid-template-columns: 1fr; }
    
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        padding: 12px 20px;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    }
    .mobile-bar-price { display: flex; flex-direction: column; line-height: 1.2; }
    .m-old { text-decoration: line-through; color: #9ca3af; font-size: 0.8rem; font-weight: 600; }
    .m-new { font-size: 1.3rem; font-weight: 800; color: #111827; }
    .mobile-bar-btn {
        background-color: #25D366;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        animation: pulse-green 2s infinite;
    }
}

/* Masaüstü İnce Ayarlar */
@media (min-width: 769px) {
    .comparison-grid { flex-direction: row; }
    .social-toast { bottom: 30px; left: 30px; right: auto; transform: translateX(-150%); }
    .social-toast.show { transform: translateX(0); }
    .mobile-sticky-bar, .mobile-spacer { display: none !important; }
}