/* Mobile Pricing Cards */
.mobile-pricing-cards {
    display: none;
}

.mobile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.mobile-card.featured-mobile {
    border: 2px solid #ff6b9d;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.mobile-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.mobile-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.mobile-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.mobile-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.mobile-price .currency {
    font-size: 45px;
    font-weight: 600;
    color: #6fd26f;
    margin-left: 5px;
}

.mobile-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.mobile-period {
    font-size: 0.85rem;
    color: #868e96;
    margin-bottom: 1.5rem;
}

.mobile-cta {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.featured-mobile .mobile-cta {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
}

.featured-mobile .mobile-cta:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.45);
}

.featured-mobile .mobile-price .currency {
}

/* Mobile Features List */
.mobile-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.mobile-features li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-features li i {
    color: #51cf66;
    margin-right: 0.8rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Pricing Table Container */
.pricing-table-container {
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.pricing-table-container::-webkit-scrollbar {
    height: 8px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 10px;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
}

.comparison-table {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    min-width: 900px;
    border: 1px solid rgb(229 229 229 / 80%);
}

/* Table Row */
.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-row:hover {
    background: linear-gradient(90deg, #fafbfc 0%, #f5f9ff 100%);
    transform: translateX(5px);
}

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

/* Table Cell */
.table-cell {
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    color: #495057;
}

.table-cell i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.table-cell i.fa-check-circle {
    color: #51cf66;
    background: #ebfbee;
    padding: 0.3rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(81, 207, 102, 0.2);
}

.table-cell i.fa-times {
    color: #dee2e6;
    background: #f8f9fa;
    padding: 0.3rem;
    border-radius: 50%;
}

.table-cell.featured {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

/* Feature Cell (First Column) */
.feature-cell {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    font-weight: 600;
    color: #2c3e50;
    justify-content: flex-start;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-cell h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Package Cell (Header Columns) */
.package-cell {
    flex-direction: column;
    padding: 1.5rem 1.5rem;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
}

.package-cell:hover {
}

.package-cell.featured {
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f8 100%);
    box-shadow: inset 0 0 40px rgba(255, 107, 157, 0.05);
}

.package-cell h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.package-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-price .currency {
    font-size: 35px;
    font-weight: 600;
    color: #6fd26f;
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.package-period {
    font-size: 0.8rem;
    color: #868e96;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-detail {
    font-size: 0.8rem;
    color: #ff6b9d;
    margin-left: 0.5rem;
    font-weight: 600;
    background: #fff0f4;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Popular Badge for Table */
.package-cell .popular-badge {
    position: absolute;
    top: 10px;
    right: 0px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    border-radius: 10px 0px 0px 10px;
}

/* Table Header */
.table-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

/* Plan Icon */
.plan-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.35);
    position: relative;
    transition: all 0.4s ease;
}

.plan-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(167, 139, 250, 0.45);
}

.package-cell.featured .plan-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 50%, #ffb3c6 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.package-cell.featured .cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
}

.package-cell.featured .cta-button:hover {
    background: linear-gradient(135deg, #ff8cab 0%, #ff6b9d 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.45);
}

/* Additional Info */
.additional-info {
    background: #ffffff;
    border-radius: 25px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 60px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.additional-info h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f3f5;
}

.info-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
    border-color: #e7f3ff;
}

.info-item i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        min-width: 850px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .header {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .header p {
        font-size: 0.95rem;
    }
    
    /* Mobilde kartları göster, tabloyu gizle */
    .mobile-pricing-cards {
        display: block;
        margin-bottom: 2rem;
    }
    
    .pricing-table-container {
        display: none;
    }
    
    .additional-info {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0 0.5rem;
    }
    
    .additional-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.2rem 1rem;
    }
    
    .info-item i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.3rem;
    }
    
    .header {
        padding: 0.8rem 0.3rem;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header p {
        font-size: 0.85rem;
    }
    
    .pricing-table-container {
        margin: 0 -0.3rem 0.8rem;
    }
    
    .comparison-table {
        min-width: 680px;
        margin: 0 0.3rem;
    }
    
    .comparison-table::before {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .package-cell {
        padding: 1rem 0.6rem;
    }
    
    .package-cell h3 {
        font-size: 1rem;
    }
    
    .package-subtitle {
        font-size: 0.7rem;
    }
    
    .package-price .currency {
        font-size: 0.9rem;
    }
    
    .package-price .amount {
        font-size: 1.6rem;
    }
    
    .package-period {
        font-size: 0.65rem;
    }
    
    .plan-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .table-cell {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .feature-cell {
        padding-left: 0.8rem;
        font-size: 0.8rem;
    }
    
    .feature-cell h3 {
        font-size: 0.95rem;
    }
    
    .table-cell i {
        font-size: 1rem;
    }
    
    .additional-info {
        padding: 1.2rem 0.8rem;
        margin: 0 0.3rem;
    }
    
    .additional-info h2 {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 1rem 0.8rem;
    }
    
    .info-item i {
        font-size: 1.5rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }