.pricing-page-wrapper {
    font-family: 'Inter', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 14vh;
    color: #1a202c;
    background-color: #ffffff;
}

.header-section {
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.trusted-by-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    /* Adjust as needed */
    margin-top: 0px;
    /* Adjust as needed */

}

.trusted-by-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -15px;
    object-fit: cover;
}

.trusted-by-avatars .avatar:first-child {
    margin-left: 0;
}

.header-description {
    font-size: 13px;
    color: rgb(31, 64, 140);
    /* Updated color */
    margin-left: 0px;
    margin-right: 15px;
    padding: 8px 15px;
    background-color: rgb(225, 233, 252);
    /* Updated background color */
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
}

.billing-and-user-selector-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.billing-cycle-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #edf2f7;
    border-radius: 30px;
    padding: 8px 15px;
    width: fit-content;
    margin: 0 auto;
    /* Tüm alana göre ortalamak için */
}

.user-count-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    font-weight: 500;
    color: #1a202c;
    background: #f7fafc;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.billing-and-user-selector-container .user-count-selector .count-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.count-button {
    background-color: #ffffff;
    border: none;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
    color: #4a5568;
    transition: background-color 0.2s ease;
}

.count-button:hover {
    background-color: #f7fafc;
}

.user-count-input {
    border: none;
    text-align: center;
    width: 40px;
    font-size: 1em;
    font-weight: 600;
    color: #1a202c;
    -moz-appearance: textfield;
    /* Firefox */
    appearance: textfield;
}

.user-count-input::-webkit-inner-spin-button,
.user-count-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.toggle-option {
    font-size: 1em;
    font-weight: 500;
    color: #718096;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.toggle-option.active {
    color: #1a202c;
    background-color: #ffffff;
    font-weight: 600;
}

.discount-tag {
    background-color: #4299e1;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    margin-left: 8px;
    font-weight: bold;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: #3B82F6;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (max-width: 768px) {
    .trusted-by-avatars {
        margin-top: 10px !important;
    }

    .trusted-by-avatars .avatar {
        width: 36px !important;
        height: 36px !important;
        margin-left: -12px !important;
        border-width: 2px !important;
    }

    .trusted-by-avatars .avatar:first-child {
        margin-left: 0 !important;
    }
}

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

.pricing-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 0;
    /* Genel padding'i kaldırdım */
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.pricing-card.best-value {
    background-color: #ffffff;
    border-color: #3B82F6;
    border: 2px solid #3B82F6;
    transform: translateY(-15px);
    overflow: hidden;
}

.pricing-card.best-value .plan-title,
.pricing-card.best-value .plan-description,
.pricing-card.best-value .price-section .current-price,
.pricing-card.best-value .price-section .period,
.pricing-card.best-value .annual-discount,
.pricing-card.best-value .features-title,
.pricing-card.best-value .features-list ul li {
    color: #1a202c;
    /* Metin rengini koyu yaptım */
}

.pricing-card.expert-choice {
    background-color: #ffffff;
    border-color: #e2e8f0;
    border: 3px solid #e1e9fc;
}

.pricing-card .badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3B82F6;
    color: white;
    padding: 5px 0px 20px 0px;
    border-radius: 0px 0px 0 0;
    /* Kartın üst köşeleriyle uyumlu */
    font-size: 0.8em;
    font-weight: bold;

    white-space: nowrap;
    text-align: center;
    z-index: 1;
}

.card-content {
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    margin-top: 32px;
    /* Başlığın üzerine doğru kaydırmak için */
    border-radius: 13px;
    /* Üst köşeleri yuvarlat */
    padding: 1.75rem;
    padding-top: 18px;
}

.pricing-card.expert-choice .badge {
    background-color: rgb(225, 233, 252);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    color: #1f408c;
    padding: 4px 0px 20px 0px;
    border-radius: 10px 10px 0 0;
    /* Kartın üst köşeleriyle uyumlu */
    font-size: 0.8em;
    font-weight: bold;

    white-space: nowrap;
    text-align: center;
    z-index: 1;
}

.plan-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a202c;
}

.plan-description {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 25px;
    min-height: 45px;
}

.premium-badge,
.unlimited-badge {
    background-color: #edf2f7;
    color: #2d3748;
    padding: 8px 15px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.pricing-card.best-value .unlimited-badge,
.pricing-card.expert-choice .unlimited-badge {
    background-color: #edf2f7;
    /* Rozet arka planını güncelledim */
    color: #2d3748;
    /* Rozet metin rengini güncelledim */
}

.unlimited-badge {
    background-color: #e1e9fc !important;
}

.price-section {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* İçeriği sola yasla */
}

.original-price {
    order: 1;
    text-decoration: none;
    color: #c0c0c0;
    font-size: 21px;
    margin-right: 0;
    margin-top: 0;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    /* Çizginin kenarlardan taşmaması için padding */
}

.original-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid #c0c0c0;
    transform: rotate(-10deg);
    transform-origin: center;
}

.current-price-wrapper {
    order: 2;
    /* Yeni wrapper'ı altta göster */
    display: flex;
    align-items: baseline;
    /* Fiyat ve ay ibaresini aynı hizada tut */
    margin-top: 0px;
    /* Original price ile aradaki boşluk */
    line-height: 30px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 0;
    /* Wrapper içinde olduğu için sıfırla */
}

.period {
    font-size: 14px;
    color: #4a5568;
    margin-left: 5px;
}

.annual-discount {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 600;
}

.min-period-info {
    font-size: 12px;
    color: #718096;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.min-period-info i {
    color: #a0aec0;
    font-size: 11px;
}

.select-plan-btn {
    background-color: #000;
    color: white;
    padding: 12px 25px;
    border-radius: .25rem;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    display: block;
    box-sizing: border-box;
    text-align: center;
}

.select-plan-btn:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

.pricing-card.best-value .select-plan-btn {
    background-color: #3B82F6;
    /* Mavi arka plan */
    color: #ffffff;
    /* Beyaz metin */
}

.pricing-card.best-value .select-plan-btn:hover {
    background-color: #e2e8f0;
}

.features-list {
    text-align: left;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list ul li {
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.features-list ul li i.fa-check {
    color: #4299e1;
    margin-right: 10px;
}

.feature-checkmark-icon {
    width: 16px;
    /* İkon boyutu */
    height: 16px;
    /* İkon boyutu */
    margin-right: 10px;
    /* Metinle aradaki boşluk */
    vertical-align: middle;
    /* Metinle dikey hizalama */
}

.features-list ul li.unavailable {
    color: #718096;
    text-decoration: line-through;
}

.features-list ul li i.fa-times {
    color: #e53e3e;
    margin-right: 10px;
}

.trusted-by-section {
    text-align: center;
    margin-top: 80px;
    color: #4a5568;
    font-size: 14px;
}

.trusted-logo {
    max-width: 150px;
    margin-bottom: 15px;
    filter: none;
}

.trusted-by-section p {
    font-weight: 500;
}

/* Yeni Enterprise Section Styles */
.enterprise-section {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    margin-top: 30px;
}

.enterprise-header {
    grid-column: span 3 / span 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
    border-right: 1px solid #e2e8f0;
}

.enterprise-header-icon-text-group {
    display: flex;
    gap: 0.75rem;
}

.enterprise-header-icon-text-group svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    color: #000000;
    min-width: 40px;
}

.enterprise-title-group {
    margin-bottom: 0.25rem;
    /* mb-1 */
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.enterprise-title {
    flex: 1;
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0px;
}

.enterprise-description {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0px;
}

.enterprise-button-container {
    width: 100%;
    /* w-full */
    min-width: 0;
    overflow: hidden;
}

.enterprise-content {
    grid-column: span 9 / span 9;
    /* col-span-9 */
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    /* p-7 */
}

.enterprise-features-heading {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
    color: #1a202c;
    margin-bottom: 1rem;
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.enterprise-feature-item {
    display: flex;
    font-size: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.60rem;
    break-inside: avoid;
    align-items: center;
}

.enterprise-feature-item svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    color: #4299e1;
    /* Görseldeki mavi renk */
    font-size: 1.125rem;
    margin-right: 0.625rem;
    min-height: 1rem;
    min-width: 0.75rem;
    flex-shrink: 0;
}

/* Dark Mode (Örnek olarak, dark: sınıflarına göre düzenlenebilir) */
@media (prefers-color-scheme: dark) {
    .enterprise-section.dark\:border-neutral-875 {
        border-color: #303030;
    }

    .enterprise-section.dark\:bg-neutral-875 {
        background-color: #303030;
    }
}

/* Responsive adjustments for Enterprise section */
@media (max-width: 768px) {
    .enterprise-section {
        grid-template-columns: 1fr;
    }

    .enterprise-header {
        grid-column: span 1 / span 1;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .enterprise-content {
        grid-column: span 1 / span 1;
    }

    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-page-wrapper {
        padding-top: 80px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow-x: hidden !important;
    }

    .header-section {
        margin-bottom: 30px !important;
    }

    .main-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .trusted-by-avatars {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
        display: flex !important;
        width: 100% !important;
    }

    .trusted-by-avatars .avatar-group {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 5px !important;
    }

    .header-description {
        margin: 0 !important;
        text-align: center !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 8px 15px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        border-radius: 12px !important;
    }

    .billing-and-user-selector-container {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 20px !important;
        display: flex !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .user-count-selector {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px !important;
        flex-wrap: wrap !important;
        box-sizing: border-box !important;
        background: #f8fafc !important;
        border-radius: 15px !important;
    }

    .billing-cycle-toggle {
        margin: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        border-radius: 30px !important;
        gap: 10px !important;
    }

    .toggle-option {
        font-size: 13px !important;
        padding: 8px 10px !important;
        white-space: nowrap !important;
    }

    .discount-tag {
        font-size: 10px !important;
        padding: 2px 6px !important;
        margin-left: 5px !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr !important;
        margin-top: 30px !important;
        gap: 25px !important;
    }

    .pricing-card.best-value {
        transform: translateY(0) !important;
    }
}

.hidden {
    display: none !important;
}

.kdv-bilgisi {
    text-align: center;
    color: #5c5c5c;
    /* Gri renk */
    font-size: 12px;
    margin-top: 20px;
}

/* Kolay ve Güvenli Ödeme Bölümü Stilleri */
.payment-explanation-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* gap-7 */
    padding-top: 40px;
    /* py-10 */
    padding-bottom: 40px;
    /* py-10 */
    max-width: 1400px;
    /* Ebeveyn kapsayıcıya uygun genişlik */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.payment-explanation-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    /* font-alternate yerine mevcut fontu kullanıyorum */
    font-size: 2.75rem;
    /* text-4xl */
    font-weight: 600;
    /* font-semibold */
    margin-bottom: 0;
    color: #212121;
    /* Koyu metin rengi */
}



.payment-explanation-cards-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* gap-8 */
}

@media (min-width: 896px) {

    /* @[56rem]/payment-explanation:flex-row - 56rem = 896px */
    .payment-explanation-cards-container {
        flex-direction: row;
    }

    .payment-explanation-cards-container .payment-explanation-card:nth-child(1) {
        flex-basis: 25%;
        /* Birinci kartın temel genişliği */
        max-width: 25%;
        /* Birinci kartın maksimum genişliği */
    }

    .payment-explanation-cards-container .payment-explanation-card:nth-child(2) {
        flex-basis: 45%;
        /* İkinci kartın temel genişliği */
        max-width: 45%;
        /* İkinci kartın maksimum genişliği */
    }

    .payment-explanation-cards-container .payment-explanation-card:nth-child(3) {
        flex-basis: 30%;
        /* Üçüncü kartın temel genişliği */
        max-width: 30%;
        /* Üçüncü kartın maksimum genişliği */
    }
}

.payment-explanation-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    /* rounded-xl */
    background-color: #f7f7f7;
    /* bg-surface-1 (açık gri) */
    padding: 32px;
    /* p-8 */
    flex: 1;
    /* Eşit genişlik için */
}

.payment-card-icon {
    display: inline-block;
    width: 24px;
    /* size-6 */
    height: 24px;
    /* size-6 */
    fill: #616161;
    /* İkon rengi için orta gri */
    margin-bottom: 24px;
    /* mb-6 */
}

.payment-card-title {
    margin-bottom: 6px;
    /* mb-1.5 */
    font-size: 20px;
    /* text-xl */
    color: #212121;
    /* text-surface-foreground-0 (koyu metin) */
    line-height: 1.2;
}

.payment-card-description {
    font-size: 14px;
    /* text-sm */
    color: #757575;
    /* text-surface-foreground-3 (açık gri metin) */
    line-height: 1.5;
    margin-bottom: 0;
    /* Paragraf sonrası boşluğu kaldırma */
}

.payment-card-description a {
    font-weight: 600;
    /* font-semibold */
    color: #3B82F6;
    /* text-surface-foreground-accent-0 (mavi) */
    text-decoration: none;
}

.payment-card-description a:hover {
    text-decoration: underline;
}

/* Sık Sorulan Sorular Bölümü Stilleri */
.faq-section {
    max-width: 800px;
    /* Ortalama bir genişlik */
    margin: 60px auto 40px auto;
    /* Üstte ve altta boşluk, ortala */
    padding: 0 20px;
}

.faq-section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    /* Görseldeki başlık boyutuna yakın */
    font-weight: 600;
    margin-bottom: 40px;
    color: #212121;
}

.faq-items-container {
    border-top: 1px solid #e0e0e0;
    /* İlk öğe için üst kenarlık */
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #424242;
    cursor: pointer;
    margin-bottom: 0;
    /* İç paragrafın margin-bottom'ını sıfırla */
}

.faq-question:hover {
    color: #000;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    /* İnce bir artı işareti için */
    color: #757575;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Açık durumda ikonu çevir */
}

.faq-answer {
    display: none;
    /* Varsayılan olarak gizli */
    padding-top: 15px;
    font-size: 15px;
    color: #616161;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-section-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* Yardım Etmek İçin Buradayız Bölümü Stilleri */
.help-section {
    max-width: 70%;
    /* Ortalama bir genişlik */
    margin: 80px auto 60px auto;
    /* Üstte ve altta boşluk, ortala */
    padding: 0 20px;
    text-align: center;
}

.help-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212121;
}

.help-section-description {
    font-size: 16px;
    color: #616161;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
    /* Metni daha okunur hale getirmek için */
    margin-left: auto;
    margin-right: auto;
}

.send-message-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #212121;
    /* Koyu arka plan */
    color: #ffffff;
    /* Beyaz metin */
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.send-message-button:hover {
    background-color: #333333;
    /* Hafif koyu */
}

.arrow-icon {
    margin-left: 10px;
    font-size: 20px;
    /* Ok ikonu boyutu */
    transition: transform 0.3s ease;
}

.send-message-button:hover .arrow-icon {
    transform: translateX(5px);
}

.help-section-info {
    font-size: 13px;
    color: #757575;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .help-section-title {
        font-size: 28px;
    }

    .help-section-description {
        font-size: 14px;
    }

    .send-message-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Yeni Tanıtım Bölümü Stilleri */
.bottom-promo-section {
    background: linear-gradient(180deg, #fff 0%, #fef3f6 100%);
    /* Degrade yönü tersine çevrildi */
    padding: 80px 0px;
    text-align: center;
    max-width: 100%;
    margin: 0px auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.top-crm-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #424242;
    background-color: #e0e0e0;
    /* Hafif gri arkaplan */
    padding: 6px 12px;
    border-radius: 20px;
}

.top-crm-platform .rocket-icon {
    font-size: 16px;
}

.promo-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    /* Büyük başlık */
    font-weight: 700;
    line-height: 1.1;
    color: #212121;
    margin: 0;
    max-width: 100%;
}

.promo-description {
    font-size: 18px;
    color: #616161;
    line-height: 1.6;
    max-width: 50%;
    margin-bottom: 20px;
}

.get-started-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #212121;
    /* Koyu arka plan */
    color: #ffffff;
    /* Beyaz metin */
    padding: 16px 32px;
    border-radius: 8px;
    /* Tam yuvarlak kenarlar */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.get-started-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.get-started-button .arrow-icon {
    margin-left: 10px;
    font-size: 22px;
    transition: transform 0.2s ease;
}

.get-started-button:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bottom-promo-section {
        padding: 60px 15px;
        margin: 40px auto;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-description {
        font-size: 15px;
    }

    .get-started-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .top-crm-platform {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* ========================================
   MODÜL CHECKLIST STİLLERİ
   ======================================== */

.module-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-checklist li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.module-checklist li:last-child {
    border-bottom: none;
}

/* Dahil olan modüller */
.module-checklist li.included {
    color: #1a202c;
}

.module-checklist li.included .feature-checkmark-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

/* Ek ücretli modüller */
.module-checklist li.not-included {
    color: #6b7280;
}

.module-checklist li.not-included .extra-icon {
    color: #000;
    font-size: 12px;
    margin-right: 10px;
    min-width: 16px;
}

/* Ek Ücretli badge - Siyah tema + Tooltip */
.extra-badge {
    position: relative;
    background: #000;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: help;
    white-space: nowrap;
}

/* Tooltip on hover */
.extra-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 100;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: normal;
}

.extra-badge:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modül bölümü başlıkları */
.module-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.module-section-title.extra-title {
    margin-top: 16px;
    color: #6b7280;
    padding-top: 12px;
    border-top: 1px dashed #e5e5e5;
}

.module-section-title i {
    font-size: 11px;
}

/* Plan limitleri */
.plan-limits {
    margin-top: 15px;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 8px;
}

.plan-limits small {
    color: #4a5568;
    font-size: 12px;
    line-height: 1.5;
}

.plan-limits strong {
    color: #1a202c;
}

/* Ek modüller bilgi notu */
.extra-modules-note {
    margin-top: 12px;
    padding: 10px 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 11px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-modules-note i {
    color: #f59e0b;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .module-checklist li {
        font-size: 12px;
        padding: 6px 0;
    }

    .extra-badge {
        font-size: 8px;
        padding: 2px 4px;
    }

    .extra-badge::after {
        font-size: 9px;
        padding: 5px 8px;
    }
}

/* ========================================
   EK PERSONEL FİYAT STİLLERİ
   ======================================== */

/* Ek personel bilgi kutusu */
.extra-personnel-info {
    margin-top: 8px;
    margin-bottom: 8px !important;
    padding: 6px 10px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 11px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: slideIn 0.3s ease;
}

.extra-personnel-info i {
    color: #000;
    font-size: 12px;
}

.extra-personnel-info .extra-count {
    font-weight: 600;
    color: #000;
}

.extra-personnel-info .extra-price {
    font-weight: 700;
    color: #000;
}

/* Fiyat değişim animasyonu */
.current-price {
    transition: all 0.3s ease;
}

.current-price.has-extra {
    color: #000;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Responsive ek personel */
@media (max-width: 768px) {
    .extra-personnel-info {
        font-size: 10px;
        padding: 5px 8px;
    }
}

/* ========================================
   SEKTÖREL MODÜL KARŞILAŞTIRMA TABLOSU
   ======================================== */

.module-comparison-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.comparison-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table thead {
    background: #000;
    color: #fff;
}

.comparison-table th {
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.comparison-table th.module-column {
    text-align: left;
    min-width: 200px;
}

.comparison-table th.plan-column {
    min-width: 100px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: #f9f9f9;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 14px 12px;
    text-align: center;
}

.comparison-table td.module-name {
    text-align: left;
    font-weight: 500;
    color: #1a202c;
    font-size: 14px;
}

.comparison-table .plan-cell {
    text-align: center;
}

/* Dahil/Ek ücretli ikonlar */
.included-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #25CB71;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
}

.not-included-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e5e5e5;
    color: #666;
    border-radius: 50%;
    font-size: 11px;
}

/* Karşılaştırma notu */
.comparison-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comparison-note i.fa-info-circle {
    color: #9ca3af;
}

.comparison-note .included-icon,
.comparison-note .not-included-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-title {
        font-size: 24px;
    }

    .comparison-subtitle {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .comparison-table th.module-column {
        min-width: 150px;
    }

    .comparison-table th.plan-column {
        min-width: 70px;
    }

    .included-icon,
    .not-included-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Tablo Grup Başlıkları */
.group-header {
    background: #eef2ff;
    /* Daha belirgin bir mavi/gri tonu */
}

.group-title {
    font-weight: 800;
    color: #1a202c;
    text-align: left !important;
    padding: 14px 20px !important;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-left: 4px solid #4f46e5;
    /* Sol kenarlık vurgusu */
    position: sticky;
    left: 0;
}