/* =========================================
   NESTED SERVER VARIABLES (CYBER ARCHITECT)
   ========================================= */
:root {
    --bg-body: #f8fafc;
    /* Mor (Mimari) ve Pembe (Enerji) */
    --primary: #7c3aed; /* Violet 600 */
    --secondary: #0f172a; /* Slate 900 */
    --accent: #d946ef; /* Fuchsia 500 */
    --nested-gradient: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
    --hero-bg: radial-gradient(circle at 80% 20%, #2e1065 0%, #0f172a 100%);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --card-shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.15);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.server-hero {
    position: relative;
    padding: 160px 0 200px;
    background: var(--hero-bg);
    color: white;
    overflow: hidden;
}
.server-hero::before {
    content: ''; position: absolute; inset: 0;
    /* Küp / Katman Deseni */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18c0-1.1.9-2 2-2h.5a2.5 2.5 0 1 0-2.5 2.5v.5c0 1.1-.9 2-2 2H18c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6v2.5c0 2.2-1.8 4-4 4s-4-1.8-4-4V15' fill='%23d946ef' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3; z-index: 0;
}

.hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; 
    align-items: center; gap: 50px; position: relative; z-index: 2;
}

.hero-text { text-align: left; }

.hero-badge {
    background: rgba(217, 70, 239, 0.15); color: #e879f9; border: 1px solid rgba(217, 70, 239, 0.3);
    padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e879f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: #cbd5e1; max-width: 600px; line-height: 1.6; margin-bottom: 40px; }

/* 2x2 Feature Grid */
.hero-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; }
.hf-box {
    padding: 15px 20px; border-radius: 16px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; gap: 15px; transition: 0.3s;
}
.hf-icon { font-size: 1.5rem; color: #94a3b8; }
.hf-text h5 { font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }
.hf-text span { font-size: 0.8rem; color: #94a3b8; }

.hf-box.glow {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.hf-box.glow .hf-icon { color: #c084fc; }

.hero-visual { position: relative; text-align: center; }
.hero-img-anim {
    width: 100%; max-width: 500px; 
    filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.3));
    animation: floatImg 7s ease-in-out infinite;
}
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }


/* =========================================
   2. PACKAGES SECTION (PREMIUM CARDS)
   ========================================= */
.packages-section { margin-top: -80px; padding-bottom: 100px; position: relative; z-index: 10; }

.pricing-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
}

.price-card {
    background: white; border-radius: 24px; padding: 0;
    text-align: center; border: 1px solid #e2e8f0; position: relative;
    transition: 0.4s; overflow: hidden; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow); border-color: var(--primary); }

/* Renkli Başlık Alanı */
.card-header {
    background: #f8fafc; padding: 30px 30px 20px; border-bottom: 1px solid #e2e8f0;
}
.pkg-icon-lg {
    width: 70px; height: 70px; background: white; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 2rem; color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pkg-name { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 5px; }
.pkg-sub { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* Fiyat Alanı */
.card-price { padding: 20px; }
.amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.currency { font-size: 1.2rem; vertical-align: top; }
.duration { font-size: 0.9rem; color: var(--text-muted); }

/* Özellikler */
.card-features { padding: 0 30px 30px; text-align: left; flex-grow: 1; }
.feature-list li {
    margin-bottom: 15px; font-size: 0.95rem; color: var(--text-muted);
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #f1f5f9; padding-bottom: 10px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list strong { color: var(--text-main); font-weight: 700; }
.feature-list i { color: var(--accent); margin-right: 10px; }

/* Popüler Kart Efekti */
.price-card.popular { 
    transform: scale(1.05); z-index: 2; border: 2px solid var(--primary); 
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}
.price-card.popular:hover { transform: scale(1.08); }
.pop-badge {
    position: absolute; top: 0; left: 0; width: 100%;
    background: var(--nested-gradient); color: white; padding: 8px;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
}
.price-card.popular .card-header { padding-top: 50px; background: #faf5ff; }

/* Buton */
.card-action { padding: 0 30px 30px; }
.btn-price {
    display: block; width: 100%; padding: 15px; border-radius: 12px;
    font-weight: 700; transition: 0.3s; text-decoration: none;
    background: var(--secondary); color: white;
}
.btn-price:hover { background: var(--primary); box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3); }
.price-card.popular .btn-price { background: var(--nested-gradient); border:none; }


/* =========================================
   3. SPECS & CONTENT
   ========================================= */
.specs-section { padding: 100px 0; background: #fff; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.spec-box { background: #f8fafc; padding: 30px; border-radius: 16px; transition: 0.3s; border: 1px solid transparent; text-align: left; }
.spec-box:hover { background: #fff; border-color: var(--primary); box-shadow: var(--card-shadow); }
.spec-icon {
    width: 60px; height: 60px; background: white; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--primary); margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.spec-box h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; color: var(--text-main); }
.spec-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Migration Bar (Violet Theme) */
.migration-bar {
    background: linear-gradient(90deg, #7c3aed 0%, #4c1d95 100%);
    padding: 40px 0; color: white; position: relative; overflow: hidden;
}
.mig-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1000px; margin: 0 auto; }
.mig-info { display: flex; align-items: center; gap: 25px; text-align: left; }
.mig-icon { font-size: 3.5rem; background: rgba(255,255,255,0.2); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #e879f9; }
.mig-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; }
.mig-text p { font-size: 1.1rem; opacity: 0.9; margin: 0; }
.mig-btn-box { flex-shrink: 0; }

.content-area { padding: 100px 0; }
.row-item { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.row-item.reverse { flex-direction: row-reverse; }
.row-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.row-text h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 20px; font-weight: 800; }
.row-text p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

/* =========================================
   4. FAQ
   ========================================= */
.faq-sec { padding: 80px 0; max-width: 900px; margin: 0 auto; }
.faq-box { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px; background: #fff; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-q:hover { background: #f8fafc; }
.faq-a { display: none; padding: 20px; border-top: 1px solid #f1f5f9; background: #fff; color: var(--text-muted); line-height: 1.6; }
.faq-box.active .faq-a { display: block; }
.faq-box.active .faq-q { color: var(--primary); }
.rotate-icon { transition: 0.3s; }
.faq-box.active .rotate-icon { transform: rotate(180deg); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .server-hero { padding: 100px 0 100px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-badge, .hero-features-grid { margin: 0 auto 20px; }
    .hero-visual { display: none; }
    
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .price-card.popular { transform: scale(1); border-width: 2px; }
    
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .mig-content, .mig-info, .row-item, .row-item.reverse { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) { .specs-grid { grid-template-columns: 1fr; } }