/* --- MARKETING SAYFASI EKLEMELERİ --- */

/* Hero Düzenlemeleri */
.hero-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
    font-weight: 300;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Büyük Butonlar */
.btn-primary-lg {
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary-lg:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-lg {
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* İstatistik Bandı */
.stats-bar {
    background: var(--white);
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Bölüm Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header small {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

/* Fiyatlandırma Tablosu */
.pricing-section {
    background-color: #f8f9fa; /* Hafif farklı ton */
    padding-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center; /* Kartları ortalar */
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Popüler Kart Vurgusu */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(67, 97, 238, 0.15);
    z-index: 2;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-plan {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.btn-plan:hover {
    background: #eee;
}

.btn-plan-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-plan-primary:hover {
    background: var(--secondary-color);
}

/* Mobil Uyum için ek */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1); /* Mobilde büyüme efektini kapat */
    }
    .hero-buttons {
        flex-direction: column;
    }
}