/* ========================================
   استایل‌های مخصوص صفحه VPS
   ======================================== */

/* هیرو VPS - بج */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
}

.text-highlight {
    background: linear-gradient(135deg, #90CAF9, #E3F2FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* آمار هیرو */
.hero-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
}

.hero-stat {
    text-align: center;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #90CAF9;
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}

/* ========================================
   تب‌های لوکیشن
   ======================================== */
.loc-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.loc-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.loc-tab:hover {
    border-color: #C5CAE9;
    transform: translateY(-2px);
}

.loc-tab.active {
    background: linear-gradient(135deg, #1A237E, #283593);
    border-color: #1A237E;
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,35,126,0.25);
}

.loc-flag {
    font-size: 1.4rem;
    line-height: 1;
}

.loc-name {
    font-weight: 700;
}

/* پنل‌ها */
.loc-panel {
    display: none;
}

.loc-panel.active {
    display: block;
    animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   ۴ تایی کنار هم
   ======================================== */
.pricing-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* قیمت دلاری */
.price-usd {
    display: inline-block;
    font-size: 0.72rem;
    color: #4CAF50;
    background: #E8F5E9;
    padding: 3px 10px;
    border-radius: 5px;
    margin-top: 6px;
    font-weight: 600;
}

/* CTA outline */
.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-outline-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ========================================
   ریسپانسیو
   ======================================== */
@media (max-width: 1100px) {
    .pricing-cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats-row {
        gap: 10px;
    }
    
    .hero-stat {
        padding: 8px 12px;
    }
    
    .hero-stat strong {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .loc-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .loc-tab {
        justify-content: center;
    }
    
    .pricing-cards-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pricing-cards-4 {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}
/* ===== شمارنده آمار ===== */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5C6BC0 0%, #7986CB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ===== مقایسه با رقبا ===== */
.compare-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #E8EAF6 0%, #fff 100%);
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.compare-card.ours {
    border: 3px solid #3949AB;
    box-shadow: 0 20px 60px rgba(57, 73, 171, 0.2);
}

.compare-card.others {
    border: 2px solid #e5e7eb;
    opacity: 0.85;
}

.compare-card.ours::before {
    content: '⭐ انتخاب هوشمند';
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    padding: 8px 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(-45deg);
}

.compare-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E8EAF6;
}

.compare-logo {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.compare-card.ours .compare-logo {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.compare-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.compare-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
}

.compare-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.compare-card.ours .feature-icon {
    background: #C5CAE9;
    color: #1A237E;
}

.compare-card.others .feature-icon {
    background: #fee2e2;
    color: #991b1b;
}

.feature-text {
    flex: 1;
    color: #334155;
}

.feature-value {
    font-weight: 700;
    color: #1e293b;
}

.compare-card.ours .feature-value {
    color: #3949AB;
}

.compare-card.others .feature-value {
    color: #dc2626;
}

/* ===== نظرات مشتریان ===== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #E8EAF6 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #C5CAE9;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: #3949AB;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(57, 73, 171, 0.15);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-size: 1.05rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== دیتاسنترها ===== */
.datacenters-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
    position: relative;
}

.datacenters-section .section-header h2 {
    color: #fff;
}

.datacenters-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.datacenters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.datacenter-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.datacenter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7986CB, #9FA8DA);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.datacenter-card:hover::before {
    transform: scaleX(1);
}

.datacenter-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dc-flag {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.datacenter-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.dc-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: right;
}

.dc-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.dc-specs li:last-child {
    border-bottom: none;
}

.dc-label {
    color: rgba(255,255,255,0.7);
}

.dc-value {
    color: #fff;
    font-weight: 600;
}

.dc-ping {
    color: #9FA8DA;
    font-weight: 700;
}

.dc-best-for {
    background: linear-gradient(135deg, rgba(121, 134, 203, 0.2), rgba(159, 168, 218, 0.2));
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #C5CAE9;
    border: 1px solid rgba(197, 202, 233, 0.3);
}

.dc-best-for strong {
    color: #fff;
}

/* ===== محتوای آموزشی ===== */
.content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #E8EAF6 0%, #fff 100%);
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.seo-content {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(57, 73, 171, 0.1);
    border: 1px solid #C5CAE9;
}

.seo-content h2 {
    font-size: 2rem;
    color: #1A237E;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.seo-content h2::before {
    content: '📚';
    font-size: 1.8rem;
}

.seo-content h3 {
    font-size: 1.3rem;
    color: #3949AB;
    margin: 35px 0 20px;
    padding-right: 15px;
    border-right: 4px solid #3949AB;
}

.seo-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 2;
    margin-bottom: 20px;
}

.seo-content ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.seo-content li {
    position: relative;
    padding: 12px 0 12px 35px;
    color: #475569;
    line-height: 1.8;
    border-bottom: 1px solid #E8EAF6;
}

.seo-content li:last-child {
    border-bottom: none;
}

.seo-content li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* سایدبار محتوا */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
    border-radius: 24px;
    padding: 35px;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.sidebar-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sidebar-card .btn {
    background: #fff;
    color: #1A237E;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.sidebar-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sidebar-features {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(57, 73, 171, 0.1);
    border: 1px solid #C5CAE9;
}

.sidebar-features h4 {
    font-size: 1.1rem;
    color: #1A237E;
    margin-bottom: 20px;
    text-align: center;
}

.sidebar-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #E8EAF6;
    font-size: 0.95rem;
    color: #475569;
}

.sidebar-features li:last-child {
    border-bottom: none;
}

.sidebar-features li span {
    font-size: 1.2rem;
}

/* ===== موارد استفاده ===== */
.usecases-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
}

.usecases-section .section-header h2 {
    color: #fff;
}

.usecases-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.usecase-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.usecase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7986CB, #9FA8DA);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.usecase-card:hover::after {
    transform: scaleX(1);
}

.usecase-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.usecase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(121, 134, 203, 0.3), rgba(159, 168, 218, 0.2));
    border: 1px solid rgba(197, 202, 233, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.usecase-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.usecase-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.usecase-rec {
    background: linear-gradient(135deg, rgba(121, 134, 203, 0.2), rgba(159, 168, 218, 0.15));
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #C5CAE9;
    border: 1px solid rgba(197, 202, 233, 0.3);
}

.usecase-rec strong {
    color: #fff;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #E8EAF6 100%);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #C5CAE9;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(57, 73, 171, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(57, 73, 171, 0.1);
}

.faq-item.active {
    border-color: #3949AB;
    box-shadow: 0 5px 25px rgba(57, 73, 171, 0.15);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1A237E;
    text-align: right;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    color: #3949AB;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #E8EAF6;
    border-radius: 50%;
    padding: 6px;
    color: #3949AB;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #475569;
    line-height: 1.9;
    font-size: 1rem;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .datacenters-grid,
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .datacenters-grid,
    .usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        padding: 30px;
    }
}
/* ===== جدول افقی پلن‌ها ===== */
.plans-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 35, 126, 0.15);
    margin-bottom: 40px;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 900px;
}

.plans-table thead {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
}

.plans-table th {
    padding: 20px 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.plans-table th:first-child {
    text-align: right;
    padding-right: 30px;
    border-radius: 0 16px 0 0;
}

.plans-table th:last-child {
    border-radius: 16px 0 0 0;
}

.plans-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #E8EAF6;
    font-size: 0.95rem;
    color: #475569;
    vertical-align: middle;
}

.plans-table td:first-child {
    text-align: right;
    padding-right: 30px;
}

.plans-table tbody tr {
    transition: all 0.3s ease;
}

.plans-table tbody tr:hover {
    background: #F5F7FF;
}

.plans-table tbody tr.featured {
    background: linear-gradient(90deg, rgba(57, 73, 171, 0.08) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-right: 4px solid #3949AB;
}

.plans-table tbody tr.featured:hover {
    background: linear-gradient(90deg, rgba(57, 73, 171, 0.12) 0%, rgba(26, 35, 126, 0.08) 100%);
}

.plans-table tbody tr:last-child td {
    border-bottom: none;
}

.plans-table tbody tr:last-child td:first-child {
    border-radius: 0 0 16px 0;
}

.plans-table tbody tr:last-child td:last-child {
    border-radius: 0 0 0 16px;
}

/* نام پلن */
.plan-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-title {
    font-weight: 700;
    color: #1A237E;
    font-size: 1.05rem;
}

.plan-desc {
    font-size: 0.8rem;
    color: #64748b;
}

.popular-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* قیمت */
.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.price-toman {
    font-weight: 800;
    color: #1A237E;
    font-size: 1.1rem;
}

.price-label {
    font-size: 0.75rem;
    color: #64748b;
}

.price-usd {
    font-size: 0.8rem;
    color: #3949AB;
    background: #E8EAF6;
    padding: 2px 8px;
    border-radius: 10px;
}

/* دکمه‌ها */
.plans-table .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.plans-table .btn-outline {
    border: 2px solid #3949AB;
    color: #3949AB;
    background: transparent;
}

.plans-table .btn-outline:hover {
    background: #3949AB;
    color: #fff;
}

.plans-table .btn-primary {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    border: none;
}

.plans-table .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(57, 73, 171, 0.4);
}

/* ویژگی‌های مشترک */
.shared-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: #F5F7FF;
    border-radius: 16px;
    border: 1px solid #C5CAE9;
}

.shared-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
}

.shared-feature span {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===== مشخصات دیتاسنتر جزئی ===== */
.datacenter-detail-section {
    padding: 80px 0;
    background: #fff;
}

.dc-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dc-detail-card {
    background: linear-gradient(135deg, #F5F7FF 0%, #E8EAF6 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #C5CAE9;
    transition: all 0.3s ease;
}

.dc-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(57, 73, 171, 0.15);
}

.dc-detail-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.dc-detail-card h3 {
    font-size: 1.1rem;
    color: #1A237E;
    margin-bottom: 20px;
}

.dc-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.dc-detail-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 202, 233, 0.5);
    font-size: 0.9rem;
}

.dc-detail-card li:last-child {
    border-bottom: none;
}

.dc-detail-card li span {
    color: #64748b;
}

.dc-detail-card li strong {
    color: #1A237E;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff;
    color: #1A237E;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ===== ریسپانسیو جدول ===== */
@media (max-width: 1024px) {
    .dc-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-table-wrapper {
        border-radius: 12px;
    }
    
    .plans-table th,
    .plans-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .price-toman {
        font-size: 0.95rem;
    }
    
    .dc-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .shared-features {
        gap: 15px;
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}