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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #090d1f;
    color: #f1f5f9;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #090d1f 70%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 25s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.system-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.nav-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.credits-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-violet {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-violet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #818cf8;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 70%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
}

.hero-stat-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Search Panel */
.search-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 24px;
    padding: 35px;
    max-width: 960px;
    margin: 0 auto 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

select, input {
    background: rgba(9, 13, 31, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

select:focus, input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

option {
    background: #0f172a;
    color: white;
}

.search-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

/* Loading Container */
.loading {
    display: none;
    max-width: 520px;
    margin: 40px auto 60px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.2);
}

.loading.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(16, 185, 129, 0.15);
    border-top: 4px solid #10b981;
    border-right: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Section */
.results-section {
    max-width: 1240px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: none;
}

.results-section.active {
    display: block;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-title {
    font-size: 24px;
    font-weight: 700;
}

.export-buttons {
    display: flex;
    gap: 10px;
}

.results-table-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    overflow-x: auto;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

/* Table Pill Badges */
.wa-pill-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: rgba(16, 185, 129, 0.18) !important;
    border: 1px solid rgba(16, 185, 129, 0.45) !important;
    color: #10b981 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    margin-left: 6px !important;
}

.wa-pill-btn:hover {
    background: rgba(16, 185, 129, 0.35) !important;
    border-color: #10b981 !important;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4) !important;
    transform: translateY(-1px) !important;
}

.website-pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(99, 102, 241, 0.15) !important;
    border: 1px solid rgba(99, 102, 241, 0.35) !important;
    color: #818cf8 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.website-pill-badge:hover {
    background: rgba(99, 102, 241, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-1px) !important;
}

.email-pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(168, 85, 247, 0.15) !important;
    border: 1px solid rgba(168, 85, 247, 0.35) !important;
    color: #c084fc !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.no-data-pill {
    color: #64748b !important;
    font-size: 13px !important;
}

th {
    background: rgba(30, 41, 59, 0.8);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

tr:hover {
    background: rgba(99, 102, 241, 0.06);
}

/* Status Tags (CRM) */
.status-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.tag-new { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-hot { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.tag-called { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-emailed { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.tag-closed { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

/* Live Toast Activity */
.live-activity-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 998;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.live-activity-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #10b981, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.toast-info p {
    font-size: 13px;
    color: #f1f5f9;
    margin: 0;
}

.toast-info span {
    font-size: 11px;
    color: #94a3b8;
}

/* Features Grid */
.features {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    max-width: 1240px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 40%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 17px;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.step-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(99, 102, 241, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* 3'lü SaaS Fiyatlandırma Kartları */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.price-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.price-card.featured {
    border: 2px solid #10b981;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25);
}

.price-badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.price-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.price-amount-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.price-currency { font-size: 24px; font-weight: 700; color: #10b981; }
.price-amount { font-size: 48px; font-weight: 800; color: white; line-height: 1; }
.price-period { font-size: 15px; color: #94a3b8; }
.price-original { text-decoration: line-through; color: #ef4444; font-size: 16px; margin-left: 8px; }

.price-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.price-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features-list li:last-child {
    border-bottom: none;
}

.price-cta-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* FAQ Accordion Section */
.faq-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #10b981;
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(15, 23, 42, 0.85);
}

.faq-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #10b981;
}

/* Trust Badges Bar */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 600;
}


/* ==========================================================================
   📱 MOBILE-FIRST TOUCH & RESPONSIVE UX OVERHAUL (For 84%+ Mobile Traffic)
   ========================================================================== */
@media (max-width: 768px) {
    /* iOS Input Zoom Önleme (16px kuralı) */
    input, select, textarea, .auth-input, .sp-select, .sp-input {
        font-size: 16px !important;
        -webkit-appearance: none;
    }

    /* Hero Section */
    .hero {
        padding: 28px 16px 18px;
        text-align: center;
    }
    .hero-badge {
        font-size: 11.5px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .hero h1 {
        font-size: 25px;
        line-height: 1.32;
        letter-spacing: -0.4px;
        margin-bottom: 12px;
    }
    .hero p {
        font-size: 14px;
        line-height: 1.55;
        color: #cbd5e1;
        margin-bottom: 16px;
    }
    .hero-trust-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 10px;
        font-size: 12px;
        color: #94a3b8;
    }
    .hero-trust-sep {
        display: inline;
        color: #64748b;
    }

    /* Arama Paneli (Search Panel Pro) */
    .search-panel-pro {
        padding: 0 12px;
        margin-top: 10px;
    }
    .sp-card {
        padding: 18px 14px;
        border-radius: 18px;
        border: 1px solid rgba(99, 102, 241, 0.25);
    }
    .sp-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }
    .sp-title {
        font-size: 18px;
        font-weight: 800;
    }
    .sp-subtitle {
        font-size: 12px;
        color: #94a3b8;
        margin-top: 2px;
    }
    .sp-clear {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    /* Konum & Input Grid */
    .sp-location {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .sp-field {
        width: 100%;
    }
    .sp-label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .sp-select, .sp-input {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Sektör Chips Yatay Kaydırma */
    .sp-sector-section {
        margin-top: 4px;
    }
    .sp-chips-scroll {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    .sp-chips-scroll::-webkit-scrollbar {
        display: none;
    }
    .sp-chip {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 10px;
        flex-shrink: 0;
    }

    /* Arama Butonu */
    .sp-search-btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 800;
        border-radius: 14px;
        margin-top: 14px;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    }

    /* Veri Kaynakları */
    .sp-sources {
        flex-wrap: wrap;
        gap: 6px 10px;
        font-size: 12px;
        margin-top: 12px;
    }
    .sp-source-item {
        font-size: 11.5px;
    }

    /* Arama Sonuçları Tablosu & Dokunmatik Kaydırma */
    .results-section {
        padding: 0 12px 40px;
        margin-top: 24px;
    }
    .results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 16px;
    }
    .results-title {
        font-size: 18px;
        text-align: center;
    }
    .export-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .export-buttons .btn {
        width: 100%;
        padding: 12px 10px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }

    .results-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .results-table-container table {
        min-width: 660px;
        font-size: 13px;
    }
    .results-table-container th, .results-table-container td {
        padding: 10px 12px;
    }

    /* Dokunmatik Butonlar */
    .wa-pill-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        font-weight: 700 !important;
    }
    .row-action-btn {
        padding: 6px 10px !important;
        font-size: 11.5px !important;
        min-height: 32px;
    }

    /* Modallar (Auth & İstihbarat) */
    .modal {
        padding: 12px;
        z-index: 9999999 !important;
    }
    .modal-content {
        padding: 24px 18px !important;
        border-radius: 20px !important;
        max-width: 420px !important;
        width: 95% !important;
        max-height: 88vh !important;
        margin: auto !important;
        box-sizing: border-box;
    }
    .auth-submit-btn {
        min-height: 48px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* Floating WhatsApp Butonu */
    .whatsapp-widget {
        bottom: 16px !important;
        right: 14px !important;
        transform: scale(0.9);
        transform-origin: bottom right;
    }

    .live-activity-toast {
        display: none !important;
    }
    .mobile-swipe-hint {
        display: block !important;
    }
}