/* =========================================
   REMOTE DDOS PROXY VARIABLES (HYBRID THEME)
   ========================================= */
:root {
    --bg-body: #f8fafc; /* ARTIK AYDINLIK (Light Theme) */
    /* Magma Turuncusu (Ana Renk) */
    --primary: #ea580c; /* Orange 600 */
    --secondary: #0f172a; /* Slate 900 (Koyu vurgular için) */
    --accent: #f97316; /* Bright Orange */
    --fire-gradient: linear-gradient(135deg, #c2410c 0%, #fb923c 100%);
    /* Hero arka planı hala koyu ve havalı */
    --hero-bg: radial-gradient(circle at 50% 10%, #431407 0%, #020617 100%);
    
    /* Metin Renkleri (Koyu zemin için değil, açık zemin için ayarlandı) */
    --text-main: #0f172a; /* Koyu Lacivert/Siyah Metin */
    --text-muted: #64748b; /* Gri Metin */
    
    --card-bg: #ffffff; /* Kartlar Beyaz */
    --card-shadow: 0 20px 60px -15px rgba(234, 88, 12, 0.15); /* Turuncu gölge */
}

/* =========================================
   1. HERO SECTION (DARK & MAGMA)
   ========================================= */
.hosting-hero {
    position: relative;
    padding: 160px 0 200px;
    background: var(--hero-bg);
    color: white; /* Hero içindeki yazılar BEYAZ kalacak */
    overflow: hidden;
}
.hosting-hero::before {
    content: ''; position: absolute; inset: 0;
    /* Radar Deseni */
    background-image: repeating-radial-gradient(circle, rgba(249, 115, 22, 0.05) 0, rgba(249, 115, 22, 0.05) 1px, transparent 1px, transparent 50px);
    opacity: 0.4; z-index: 0;
    animation: pulseRadar 4s infinite linear;
}
@keyframes pulseRadar { 0% { opacity: 0.2; } 50% { opacity: 0.5; } 100% { opacity: 0.2; } }

.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.1); 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, #fdba74);
    -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; }

/* Feature Grid (Hero İçi) */
.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.03); 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(234, 88, 12, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-color: rgba(234, 88, 12, 0.4);
    box-shadow: 0 0 25px rgba(234, 88, 12, 0.15);
}
.hf-box.glow .hf-icon { color: #fb923c; }

.hero-visual { position: relative; text-align: center; }
.hero-img-anim {
    width: 100%; max-width: 500px; 
    filter: drop-shadow(0 0 60px rgba(234, 88, 12, 0.3));
    animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }


/* =========================================
   2. PRICING SECTION (LIGHT THEME FIX)
   ========================================= */
.pricing-section { padding: 100px 0; background: var(--bg-body); position: relative; z-index: 10; margin-top:-80px; }

.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; text-shadow: none; }

.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(--primary); 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(234, 88, 12, 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(--primary);
}

/* 3 Column Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.price-card {
    background: white; border-radius: 20px; padding: 40px 30px;
    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 60px rgba(234, 88, 12, 0.15); background: white;
}
.price-card.popular:hover { transform: scale(1.08); }
.pop-badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--fire-gradient); color: white; padding: 8px 20px;
    border-radius: 30px; font-weight: 700; font-size: 0.9rem; box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
}
.pkg-name { font-size: 1.5rem; 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: 30px 0 40px; text-align: left; flex-grow: 1; }
.pkg-features li { margin-bottom: 15px; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }
.pkg-features i { color: var(--primary); font-size: 1.2rem; }
.pkg-features li.disabled { opacity: 0.5; text-decoration: line-through; }
.btn-price {
    display: block; width: 100%; padding: 18px; border-radius: 14px;
    font-weight: 700; transition: 0.3s; text-decoration: none; font-size: 1.1rem;
    background: #f1f5f9; color: var(--text-main); border: 1px solid #e2e8f0;
}
.btn-price:hover { background: var(--secondary); border-color: var(--secondary); color: white; }
.price-card.popular .btn-price { background: var(--fire-gradient); border:none; box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3); color: white; }
.price-card.popular .btn-price:hover { transform: translateY(-3px); }


/* =========================================
   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 #e2e8f0; 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; }

/* Setup Bar */
.setup-bar {
    background: linear-gradient(90deg, #9a3412 0%, #ea580c 100%);
    padding: 40px 0; color: white; position: relative; overflow: hidden;
}
.setup-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1000px; margin: 0 auto; }
.setup-info { display: flex; align-items: center; gap: 25px; text-align: left; }
.setup-icon { font-size: 3.5rem; background: rgba(255,255,255,0.1); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.setup-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; color: #fff; }
.setup-text p { font-size: 1.1rem; opacity: 0.9; margin: 0; color: #fed7aa; }
.setup-btn-box { flex-shrink: 0; }

.content-area { padding: 100px 0; background: var(--bg-body); }
.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. HOW IT WORKS & FAQ (FIXED VISIBILITY)
   ========================================= */
.how-section { padding: 80px 0; background: #fff; text-align: center; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.how-item { position: relative; }
.how-item::after {
    content: '\f054'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; right: -25px; top: 30%; transform: translateY(-50%); color: #cbd5e1; font-size: 1.5rem;
}
.how-item:last-child::after { display: none; }
.how-icon { 
    width: 90px; height: 90px; background: #fff; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 2rem; color: var(--primary); border: 2px solid #e2e8f0; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.how-item h4 { color: var(--text-main); font-size: 1.3rem; margin-bottom: 10px; }
.how-item p { color: var(--text-muted); font-size: 0.95rem; }

/* FAQ FIX: ARTIK GÖRÜNÜR */
.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; background: #fff; }
.faq-q { padding: 20px; background: #fff; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; color: var(--text-main); }
.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) {
    .hosting-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; }
    .setup-content, .setup-info, .row-item, .row-item.reverse { flex-direction: column; text-align: center; }
    .how-grid { grid-template-columns: 1fr; gap: 30px; }
    .how-item::after { display: none; }
    .faq-q { font-size: 0.95rem; }
}
@media (max-width: 600px) { .specs-grid { grid-template-columns: 1fr; } }