/* =========================================
   WORDPRESS HOSTING VARIABLES
   ========================================= */
:root {
    --bg-body: #f8fafc;
    --primary: #2563eb;
    --secondary: #1e293b;
    --accent: #f97316;
    --wp-gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --hero-bg: radial-gradient(circle at 10% 10%, #172554 0%, #0f172a 100%);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hosting-hero {
    position: relative;
    padding: 160px 0 200px;
    background: var(--hero-bg);
    color: white;
    overflow: hidden;
}
.hosting-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 50px 50px; opacity: 0.5; 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(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 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, #93c5fd);
    -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(37, 99, 235, 0.2) 100%);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}
.hf-box.glow .hf-icon { color: #60a5fa; }

.hero-visual { position: relative; text-align: center; }
.hero-img-anim {
    width: 100%; max-width: 500px; 
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* =========================================
   2. WP ECOSYSTEM (SABİT GRID)
   ========================================= */
.wp-ecosystem {
    background: white; border-bottom: 1px solid #e2e8f0; padding: 40px 0;
}
.ecosystem-grid {
    display: flex; justify-content: center; align-items: center;
    gap: 60px; flex-wrap: wrap;
}
.wp-brand { 
    height: 40px; width: auto; opacity: 0.4; filter: grayscale(100%); transition: 0.3s; cursor: pointer;
}
.wp-brand:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }

/* =========================================
   3. PRICING SECTION
   ========================================= */
.pricing-section { padding: 100px 0; background: var(--bg-body); }

.pricing-switch-container {
    text-align: center; margin-bottom: 60px;
    display: flex; justify-content: center; align-items: center; gap: 25px;
    background: white; padding: 15px 40px; border-radius: 999px; 
    border: 1px solid #e2e8f0; width: fit-content; margin: 0 auto 60px;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.switch-label { color: var(--text-muted); font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 1rem; }
.switch-label.active { color: var(--primary); font-weight: 800; }

.switch-toggle {
    position: relative; width: 68px; height: 38px;
    background: #e2e8f0; border-radius: 999px; cursor: pointer;
    border: 2px solid white; transition: 0.4s ease; display: inline-block;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}
.switch-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: transparent; transition: .4s; border-radius: 999px;
}
.switch-slider:before {
    position: absolute; content: ""; height: 28px; width: 28px;
    left: 3px; bottom: 3px; background-color: white;
    transition: .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
input:checked + .switch-slider { background-color: var(--primary); }
input:checked + .switch-slider:before { transform: translateX(30px); }

.discount-badge {
    background: var(--accent); color: white; font-size: 0.8rem; font-weight: 700;
    padding: 6px 14px; border-radius: 12px;
    position: absolute; top: -48px; right: -15px;
    animation: bounce 2s infinite; pointer-events: none; white-space: nowrap;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4); z-index: 20;
}
.discount-badge::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid var(--accent);
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.price-card {
    background: white; border-radius: 20px; padding: 40px 25px;
    text-align: center; border: 1px solid #e2e8f0; position: relative;
    transition: 0.4s; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow); border-color: var(--primary); }
.price-card.popular {
    transform: scale(1.05); z-index: 2; border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}
.price-card.popular:hover { transform: scale(1.08); }
.pop-badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--wp-gradient); color: white; padding: 8px 20px;
    border-radius: 30px; font-weight: 700; font-size: 0.9rem; box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.pkg-name { font-size: 1.4rem; font-weight: 700; color: var(--text-main); margin-bottom: 15px; }
.pkg-price { margin-bottom: 20px; color: var(--text-main); }
.currency { font-size: 1.2rem; vertical-align: top; }
.amount { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--primary); }
.duration { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.pkg-features { list-style: none; margin: 25px 0 35px; text-align: left; flex-grow: 1; }
.pkg-features li { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pkg-features i { color: var(--accent); font-size: 1.1rem; }
.btn-price {
    display: block; width: 100%; padding: 15px; border-radius: 12px;
    font-weight: 700; transition: 0.3s; text-decoration: none;
    background: #f1f5f9; color: var(--text-main);
}
.btn-price:hover { background: var(--secondary); color: white; }
.price-card.popular .btn-price { background: var(--wp-gradient); color: white; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }
.price-card.popular .btn-price:hover { transform: translateY(-3px); }

/* =========================================
   4. SPECS, CONTENT & FAQ
   ========================================= */
.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; }

.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; }

.migration-bar {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 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; }
.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; }

.compare-section { padding: 80px 0; background: var(--bg-body); }
.compare-wrapper {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: var(--card-shadow); border: 1px solid #e2e8f0;
}
.compare-head {
    background: var(--secondary); color: white; padding: 20px 30px;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.compare-head h3 { font-size: 1.3rem; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 10px; }
.compare-body { display: none; padding: 0; overflow-x: auto; }
.compare-body.active { display: block; animation: slideDown 0.5s ease; }
.comp-table { width: 100%; border-collapse: collapse; min-width: 900px; table-layout: fixed; }
.comp-table th, .comp-table td { padding: 15px; border-bottom: 1px solid #f1f5f9; width: 20%; text-align: center; vertical-align: middle; }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; padding-left: 30px; font-weight: 700; color: var(--text-main); }
.comp-table th { background: #f8fafc; color: var(--text-muted); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }

.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 FIXES (MOBİL DÜZENLEMELER)
   ========================================= */
@media (max-width: 992px) {
    /* Hero Fixes */
    .hosting-hero { 
        padding: 100px 0 100px; 
        text-align: center; 
    }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .hero-text { 
        text-align: center; 
    }
    .hero-badge { 
        margin: 0 auto 15px; 
    }
    .hero-title { 
        font-size: 2.2rem; /* Font küçültüldü */
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .hero-desc { 
        font-size: 1rem;
        margin: 0 auto 30px; 
    }
    .hero-features-grid { 
        margin: 0 auto; 
        gap: 15px; /* Kutu arası boşluk azaldı */
    }
    .hf-box {
        flex-direction: column; /* İkon ve yazı alt alta */
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    .hf-text h5 { font-size: 0.95rem; }
    
    .hero-visual { display: none; } /* Mobilde görsel gizlendi */

    /* Other Sections */
    .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 { flex-direction: column; text-align: center; gap: 20px; }
    .mig-info { flex-direction: column; text-align: center; gap: 15px; }
    
    .row-item, .row-item.reverse { flex-direction: column; text-align: center; gap: 30px; }
    .row-text h2 { font-size: 1.8rem; }
    
    .comp-table { min-width: 800px; font-size: 0.85rem; }
    .compare-body { overflow-x: auto; padding: 15px; }
    
    .ecosystem-grid { gap: 30px; }
    .wp-brand { height: 25px; } /* Mobilde logolar küçüldü */
}

/* Küçük Telefonlar */
@media (max-width: 600px) { 
    .specs-grid { grid-template-columns: 1fr; } 
    .hero-title { font-size: 2rem; }
}