:root {
    /* Renk Paleti */
    --primary: #2563eb;       /* Royal Blue */
    --primary-dark: #1d4ed8;  /* Dark Blue */
    --accent: #0ea5e9;        /* Sky Blue */
    --accent-green: #10b981;  /* Kutlama Yeşili */
    
    --dark-bg: #0f172a;       /* Koyu Arka Plan */
    --darker-bg: #020617;     /* Çok Koyu Arka Plan */
    --light-bg: #f8fafc;      /* Açık Gri Arka Plan */
    --white: #ffffff;
    
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-dark-sec: #94a3b8; /* Koyu zeminde gri yazı */
    
    --shadow-soft: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(37, 99, 235, 0.15);
    
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--light-bg); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- Navbar --- */
.navbar { background: var(--white); height: 80px; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo img { height: 40px; }

.nav-links { display: flex; gap: 30px; height: 100%; align-items: center; }
.nav-links > li > a { color: var(--text-main); font-weight: 500; }
.nav-links > li:hover > a { color: var(--primary); }

/* --- Mega Menü (DÜZELTİLDİ) --- */
.mega-menu { 
    position: absolute; 
    top: 80px; 
    left: 50%; 
    transform: translateX(-50%) translateY(10px); 
    background: var(--white); 
    border: 1px solid #e2e8f0; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-hover); 
    padding: 20px; 
    opacity: 0; 
    visibility: hidden; 
    transition: 0.2s; 
}
.dropdown:hover .mega-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(-50%) translateY(0); 
}

.mega-grid-8 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; width: 500px; }
.mega-grid-2-horizontal { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 500px; }

.mega-item { 
    display: flex; 
    gap: 15px; 
    align-items: flex-start; /* İkonu yukarı sabitle */
    padding: 10px; 
    border-radius: var(--radius); 
    color: var(--text-main); 
}
.mega-item:hover { background: #eff6ff; }
.mega-item i { 
    color: var(--primary); 
    font-size: 1.4rem; 
    margin-top: 3px; 
    flex-shrink: 0; 
}

/* ÖNEMLİ DÜZELTME: Başlık ve açıklamanın alt alta gelmesi için */
.mega-item div {
    display: flex;
    flex-direction: column;
}
.mega-item strong {
    font-size: 0.95rem;
    font-weight: 700;
}
.mega-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Navbar Butonları */
.btn-primary { background: var(--primary); color: white; padding: 10px 25px; border-radius: var(--radius); font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline-primary { 
    background: transparent; 
    color: var(--primary); 
    padding: 10px 25px; 
    border-radius: var(--radius); 
    font-weight: 600; 
    border: 2px solid var(--primary); 
    margin-right: 15px; 
}
.btn-outline-primary:hover { background: var(--primary); color: white; }

/* --- Hero Section --- */
.hero { padding: 80px 0; background: linear-gradient(to right, #eff6ff, #ffffff); overflow: hidden; }
.hero-content { display: flex; align-items: center; gap: 50px; }
.hero-text-slider { flex: 1; position: relative; min-height: 450px; display: flex; flex-direction: column; justify-content: center; }

.hero-slide { display: none; animation: fadeIn 0.8s ease; }
.hero-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.badge-blue { display: inline-block; background: #dbeafe; color: var(--primary); padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; margin-bottom: 20px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; color: var(--dark-bg); margin-bottom: 20px; font-weight: 800; }
.text-highlight { color: var(--primary); }
.hero p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 30px; max-width: 500px; }

.slider-dots { display: flex; gap: 10px; margin-bottom: 30px; }
.dot { width: 10px; height: 10px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary); width: 25px; border-radius: 10px; }

.hero-image { flex: 1; perspective: 1000px; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-hover); transform: rotateY(-5deg); transition: 0.5s; }
.hero-image:hover img { transform: rotateY(0deg); }

.domain-search form { background: var(--white); padding: 5px; border-radius: var(--radius); border: 1px solid #cbd5e1; display: flex; max-width: 500px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.domain-search input { flex: 1; border: none; padding: 15px; outline: none; font-size: 1rem; }
.domain-search button { background: var(--dark-bg); color: white; border: none; padding: 0 25px; border-radius: 6px; cursor: pointer; font-weight: 600; }

/* --- Başlıklar (Section Headers - DÜZELTİLDİ) --- */
.section-header, .section-header-modern, .section-header-dark { 
    text-align: center; 
    margin-bottom: 50px; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-title, .sub-title-modern, .sub-title-dark { 
    font-weight: 700; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 10px; 
    text-transform: uppercase;
}
.sub-title { color: var(--accent); }
.sub-title-modern { color: var(--accent); }
.sub-title-dark { color: var(--accent); }

/* Başlık Boyutu Dengelendi (3rem -> 2.25rem) */
.section-header h2, .section-header-modern h2, .section-header-dark h2 { 
    font-size: 2.25rem; 
    color: var(--dark-bg); 
    font-weight: 800; 
    line-height: 1.3;
}
.section-header-modern h2, .section-header-dark h2 { color: var(--white); }

/* --- BÖLÜM 1: Adda Uzmanları --- */
.agents-section-modern { padding: 100px 0; background: var(--dark-bg); color: var(--white); }
.agents-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.agent-card-modern { background: rgba(255,255,255,0.05); padding: 40px 30px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.agent-card-modern:hover { border-color: var(--primary); background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.agent-icon-modern { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.agent-card-modern h3 { font-size: 1.3rem; margin-bottom: 15px; }
.agent-card-modern p { color: var(--text-dark-sec); font-size: 0.95rem; }

/* --- BÖLÜM 2: Özellikler --- */
.features-section-dark { padding: 100px 0; background: var(--dark-bg); color: var(--white); position: relative; overflow: hidden; }
.features-grid-dark { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.feature-card-dark { background: rgba(255,255,255,0.03); padding: 40px 30px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; position: relative; overflow: hidden; }
.feature-card-dark:hover { border-color: var(--primary); background: rgba(255,255,255,0.06); transform: translateY(-5px); }
.feature-icon-dark { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; position: relative; z-index: 2; }
.feature-card-dark h3 { font-size: 1.3rem; margin-bottom: 15px; position: relative; z-index: 2; }
.feature-card-dark p { color: var(--text-dark-sec); font-size: 0.95rem; position: relative; z-index: 2; }

.bg-icon { position: absolute; bottom: -20px; right: -20px; font-size: 8rem; color: rgba(255,255,255,0.02); transform: rotate(-15deg); transition: 0.3s; z-index: 1; }
.feature-card-dark:hover .bg-icon { transform: rotate(0deg) scale(1.1); color: rgba(37, 99, 235, 0.1); }

.feature-card-wide { grid-column: span 2; display: flex; align-items: center; }
.feature-content-wide { display: flex; align-items: flex-start; gap: 30px; position: relative; z-index: 2; }
.feature-content-wide .feature-icon-dark { margin-bottom: 0; font-size: 3.5rem; }

/* --- BÖLÜM 3: Fiyatlandırma --- */
.pricing-section { padding: 100px 0; background: var(--light-bg); position: relative; overflow: hidden; }
.pricing-switch-container { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 50px; position: relative; }
.switch-label { font-weight: 600; color: var(--text-main); }
.save-badge { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); padding: 4px 10px; border-radius: 20px; font-size: 0.85rem; margin-left: 5px; }

.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; }
.slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; }
input:checked + .slider { background-color: var(--primary); }
input:focus + .slider { box-shadow: 0 0 1px var(--primary); }
input:checked + .slider:before { transform: translateX(26px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.price-card { background: var(--white); padding: 40px; border-radius: 16px; border: 1px solid #e2e8f0; transition: 0.3s; position: relative; }
.price-card:hover { border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.05); transform: translateY(-10px); }
.price-card.popular { border-color: var(--primary); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15); transform: scale(1.05); z-index: 10; }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.card-header { text-align: center; margin-bottom: 30px; }
.price { display: flex; justify-content: center; align-items: flex-start; color: var(--dark-bg); font-weight: 800; }
.currency { font-size: 1.5rem; margin-top: 5px; }
.amount { font-size: 3.5rem; line-height: 1; }
.period { font-size: 1rem; color: var(--text-light); align-self: flex-end; margin-bottom: 5px; }
.price-card ul { margin-bottom: 30px; }
.price-card li { margin-bottom: 15px; color: var(--text-main); display: flex; gap: 10px; align-items: center; }
.price-card li i { color: var(--accent-green); }
.btn-outline-blue { display: block; text-align: center; border: 2px solid var(--primary); padding: 10px; border-radius: var(--radius); color: var(--primary); font-weight: 600; }
.btn-outline-blue:hover { background: var(--primary); color: white; }
.full-width { display: block; text-align: center; }

/* --- BÖLÜM 4: İnteraktif Partner Slider --- */
.partners-section-interactive { background: var(--dark-bg); padding: 40px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.partners-title { color: var(--text-dark-sec); font-weight: 600; margin-bottom: 25px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.slider-area-interactive { overflow: hidden; white-space: nowrap; padding: 10px 0; }
.slider-track-interactive { display: inline-flex; animation: scroll 30s linear infinite; }
.slider-area-interactive:hover .slider-track-interactive { animation-play-state: paused; }
.slide-interactive { margin: 0 40px; font-size: 1.5rem; color: #64748b; display: flex; align-items: center; gap: 10px; font-weight: 600; transition: 0.3s; filter: grayscale(100%); opacity: 0.5; cursor: pointer; }
.slide-interactive:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); text-shadow: 0 0 15px rgba(255,255,255,0.3); }
.slide-interactive i { font-size: 2rem; transition: 0.3s; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Footer & FAQ --- */
.faq { padding: 80px 0; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; margin-bottom: 10px; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; font-size: 1.1rem; font-weight: 600; color: var(--dark-bg); cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; color: var(--text-light); }
.faq-item.active .faq-answer { max-height: 100px; padding-bottom: 20px; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--primary); }

footer { background: var(--dark-bg); color: #cbd5e1; padding-top: 70px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 35px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.brand-col p { max-width: 300px; margin-bottom: 20px; color: #94a3b8; }
.social-links a { color: white; margin-right: 15px; font-size: 1.2rem; }
.footer-col h4 { color: white; margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.footer-bottom { background: var(--darker-bg); padding: 25px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.payment-icons i { font-size: 1.5rem; margin-left: 10px; color: #64748b; }

/* --- Confetti --- */
.confetti { position: absolute; width: 8px; height: 8px; z-index: 999; pointer-events: none; border-radius: 50%; }
@keyframes explodeUp {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0.5) rotate(720deg); opacity: 0; }
}
/* --- ÖNERİ 1: Karşılaştırma Tablosu --- */
.comparison-section { padding: 100px 0; background: var(--white); }
.comparison-table-wrapper { overflow-x: auto; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-radius: 16px; border: 1px solid #e2e8f0; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 20px 30px; text-align: left; font-size: 1rem; }

.comparison-table thead th { background: #f8fafc; font-weight: 700; color: var(--text-main); border-bottom: 2px solid #e2e8f0; }
.comparison-table .adda-col { background: var(--primary); color: white; text-align: center; width: 35%; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.comparison-table .feature-col { width: 30%; }
.comparison-table .others-col { width: 35%; color: var(--text-light); }

.comparison-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table .highlight { background: #eff6ff; color: var(--primary-dark); font-weight: 600; text-align: center; border-left: 1px solid #dbeafe; border-right: 1px solid #dbeafe; }
.comparison-table td:nth-child(3) { color: var(--text-light); }

/* --- ÖNERİ 2: Global Map --- */
.global-map-section { padding: 100px 0; background: var(--darker-bg); color: white; overflow: hidden; }
.map-content { display: flex; align-items: center; gap: 50px; }
.map-text { flex: 1; }
.map-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.map-text p { color: #94a3b8; margin-bottom: 40px; font-size: 1.1rem; }
.map-stats { display: flex; gap: 40px; }
.stat-item h3 { font-size: 2rem; color: var(--primary); font-weight: 800; margin-bottom: 5px; }
.stat-item span { color: #cbd5e1; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.map-visual { flex: 1.2; position: relative; }
.world-map-svg { width: 100%; filter: invert(1) opacity(0.2); } /* Haritayı koyu moda uyarla */
.map-pin { 
    position: absolute; width: 15px; height: 15px; background: var(--primary); 
    border-radius: 50%; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite; cursor: pointer;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
/* --- Global Map Pin Ayarları (DÜZELTİLDİ) --- */
.map-visual { flex: 1.2; position: relative; }
.world-map-svg { width: 100%; filter: invert(1) opacity(0.2); }

.map-pin { 
    position: absolute; 
    width: 12px; height: 12px; /* Pinleri biraz daha kibarlaştırdım */
    background: var(--primary); 
    border-radius: 50%; 
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite; 
    cursor: pointer;
    z-index: 5;
}

/* İstanbul: Yeşil ve Belirgin */
.pin-istanbul { 
    top: 33%;    /* Biraz daha aşağı indi */
    left: 54.5%; /* Hafif sağa kaydı */
    background: var(--accent-green); 
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    z-index: 10; /* Diğerlerinin üstünde dursun */
    width: 15px; height: 15px; /* İstanbul ana merkez olduğu için bir tık büyük */
}

/* Almanya (Frankfurt) */
.pin-frankfurt { 
    top: 33%; 
    left: 51.5%; 
}

/* Belçika (Brüksel) */
.pin-belgium { 
    top: 32.5%; 
    left: 49.8%; 
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
/* --- GÜNCELLENMİŞ CTA (3D Görselli) --- */
.cta-section { 
    margin-top: -80px; /* Yukarı çekme miktarı */
    position: relative; 
    z-index: 20; 
    width: 90%; 
    max-width: 1100px; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 60px;
    border-radius: 24px; 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 30px 60px -10px rgba(37, 99, 235, 0.4);
    overflow: visible; /* Görselin dışarı taşması için şart! */
}

/* Hafif Desen Efekti */
.cta-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    border-radius: 24px;
    pointer-events: none;
}

.cta-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 60px 50px;
    position: relative;
}

.cta-content-wrapper { flex: 1; max-width: 600px; position: relative; z-index: 2; }

.cta-text h2 { color: white; font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
.cta-text p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 30px; }

.cta-buttons { display: flex; gap: 15px; }
.btn-primary-white { background: white; color: var(--primary); padding: 15px 35px; border-radius: 12px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-primary-white:hover { background: #f8fafc; transform: translateY(-2px); }
.btn-outline-white { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); color: white; padding: 15px 35px; border-radius: 12px; font-weight: 700; backdrop-filter: blur(5px); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.2); }

/* 3D Görsel Konumu */
.cta-image {
    position: absolute;
    right: -20px; /* Kutunun sağından taşır */
    top: -50px;   /* Kutunun üstünden taşır */
    width: 350px;
    pointer-events: none; /* Tıklamayı engellemesin */
    animation: floatImage 6s ease-in-out infinite;
    z-index: 3;
}
.cta-image img { width: 100%; drop-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Mobil Uyum */
@media (max-width: 900px) {
    .cta-container { flex-direction: column; text-align: center; padding: 40px 20px; }
    .cta-buttons { justify-content: center; }
    .cta-image { 
        position: relative; 
        right: auto; top: auto; 
        width: 200px; 
        margin-bottom: -20px; 
        margin-top: 20px;
        order: -1; /* Mobilde üste al */
    }
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .map-content { flex-direction: column; text-align: center; }
    .map-stats { justify-content: center; }
    .cta-container { flex-direction: column; text-align: center; gap: 20px; }
}
/* --- Developer Friendly Section --- */
.dev-friendly-section { padding: 100px 0; background: var(--white); }
.dev-flex-container { display: flex; align-items: center; gap: 60px; }
.dev-text { flex: 1; }
.dev-features-list { margin-top: 25px; }
.dev-features-list li { margin-bottom: 12px; font-weight: 600; color: var(--text-main); display: flex; gap: 10px; align-items: center; }
.dev-features-list li i { color: var(--accent-green); }

/* Terminal Tasarımı */
.terminal-wrapper {
    flex: 1.2;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid #333;
}

.terminal-header {
    background: #323232;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-buttons { display: flex; gap: 8px; }
.t-btn { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.t-btn.close { background: #ff5f56; }
.t-btn.minimize { background: #ffbd2e; }
.t-btn.expand { background: #27c93f; }

.terminal-title {
    position: absolute; width: 100%; text-align: center;
    color: #999; font-size: 0.8rem; font-family: 'Inter', sans-serif;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace; /* Kod fontu */
    font-size: 0.95rem;
    color: #f1f1f1;
    min-height: 250px;
}

.terminal-line { margin-bottom: 10px; }
.t-user { color: #27c93f; font-weight: bold; }
.t-dir { color: #0ea5e9; margin-left: 5px; }
.t-output { color: #aaa; padding-left: 10px; }
.t-cursor {
    display: inline-block; width: 10px; height: 18px;
    background: var(--primary); margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

@media (max-width: 900px) {
    .dev-flex-container { flex-direction: column; text-align: center; }
    .dev-features-list { text-align: left; display: inline-block; }
}
/* --- Tek Tıkla Uygulama Vitrini --- */
.app-showcase { padding: 100px 0; background: #f8fafc; }
.app-icons-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 25px; 
}
.app-item { 
    background: white;
    text-align: center; 
    padding: 30px 20px; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-item:hover { 
    border-color: var(--primary); 
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.app-item i { 
    font-size: 3rem; 
    color: var(--text-light); 
    margin-bottom: 15px; 
    display: block; 
}
.app-item:hover i { color: var(--primary); }
.app-item span { font-weight: 700; color: var(--text-main); font-size: 0.95rem; }
/* --- Kurumsal Sayfa Düzeni --- */
.corporate-page {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 80vh;
}

.corporate-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.corporate-sidebar {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu .tab-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-light);
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.sidebar-menu .tab-link i {
    width: 20px;
    font-size: 1.1rem;
}

.sidebar-menu .tab-link:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.sidebar-menu .tab-link.active {
    background: var(--primary);
    color: white;
}

/* İçerik Alanı */
.corporate-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.corporate-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.corporate-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* Banka Kartları */
.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.bank-card {
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.bank-logo {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contract-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.contract-list li a:hover {
    background: #eff6ff;
    color: var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .corporate-container { grid-template-columns: 1fr; }
    .corporate-sidebar { position: sticky; top: 100px; }
}
/* --- HOSTING SAYFASI ÖZEL TASARIM --- */

/* Yeni Font (Daha teknolojik) */
.hosting-page { font-family: 'Plus Jakarta Sans', sans-serif; background: #f8fafc; }

/* 1. HERO BÖLÜMÜ */
.hosting-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #0f172a; /* Çok koyu lacivert */
    color: white;
    overflow: hidden;
}

/* Arka plan efekti (Gradient Blur) */
.hero-bg-overlay {
    position: absolute;
    top: -50%; left: -20%;
    width: 80%; height: 150%;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, rgba(0,0,0,0) 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.hero-content-left { flex: 1.2; }
.hero-visual-right { flex: 1; text-align: center; }
.hero-visual-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: 0.5s;
}
.hero-visual-right:hover img { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

.pill-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hosting-hero h1 { font-size: 3.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; }
.gradient-text-hero {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-checklist { margin-top: 30px; list-style: none; }
.hero-checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1.1rem; }
.hero-checklist li i { color: #4ade80; font-size: 1.2rem; }

/* 2. PREMIUM PRICING CARDS (En önemli kısım) */
.premium-pricing { padding: 80px 0; margin-top: -50px; position: relative; z-index: 5; }
.pricing-header { text-align: center; margin-bottom: 50px; color: var(--dark-bg); }

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center; /* Ortadaki kartın büyümesi için */
}

.host-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.host-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1); }

/* POPULAR CARD STYLE */
.popular-card {
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #2563eb, #a855f7);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    transform: scale(1.05); /* Diğerlerinden büyük */
    z-index: 10;
}

.pop-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: #2563eb; color: white; padding: 5px 15px;
    border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
}

.icon-layer {
    width: 60px; height: 60px;
    background: #eff6ff; color: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
}
.layer-purple { background: #f3e8ff; color: #9333ea; }

.card-top h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; color: var(--dark-bg); }
.desc { color: #64748b; font-size: 0.9rem; margin-bottom: 20px; }

.card-price { font-size: 3.5rem; font-weight: 800; color: var(--dark-bg); letter-spacing: -2px; margin-bottom: 25px; }
.card-price .currency { font-size: 1.5rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.card-price .period { font-size: 1rem; color: #94a3b8; font-weight: 500; letter-spacing: 0; }

.btn-card-primary {
    display: block; width: 100%; text-align: center;
    background: var(--primary); color: white;
    padding: 15px; border-radius: 12px; font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.btn-card-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-card-outline {
    display: block; width: 100%; text-align: center;
    border: 2px solid #e2e8f0; color: var(--dark-bg);
    padding: 15px; border-radius: 12px; font-weight: 700;
    transition: 0.3s;
}
.btn-card-outline:hover { border-color: var(--dark-bg); background: var(--dark-bg); color: white; }

.card-features { margin-top: 30px; }
.feature-row {
    display: flex; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569; font-size: 0.95rem;
}
.feature-row:last-child { border-bottom: none; }
.feature-row strong { color: var(--dark-bg); }
.highlight-row { color: #10b981; font-weight: 700; justify-content: center; background: #ecfdf5; border-radius: 8px; margin-top: 10px; border: none; }

/* 3. TEKNİK TABLO (Toggle) */
.tech-specs-section { padding: 60px 0 100px; text-align: center; }
.specs-toggle-area { margin-bottom: 40px; }
.btn-specs-toggle {
    background: transparent; border: none; color: var(--primary);
    font-weight: 700; font-size: 1.1rem; cursor: pointer;
    margin-top: 15px; text-decoration: underline;
}

.specs-container {
    background: white; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; max-width: 900px; margin: 0 auto;
    transition: all 0.5s ease;
}
.specs-container.hidden { display: none; }

.modern-table { width: 100%; border-collapse: collapse; }
.modern-table th, .modern-table td { padding: 15px 30px; border-bottom: 1px solid #e2e8f0; text-align: left; }
.modern-table th { background: #f8fafc; font-weight: 700; color: var(--dark-bg); }
.modern-table tr:hover { background: #f1f5f9; }

@media (max-width: 900px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-bg-overlay { width: 100%; height: 100%; top: 0; left: 0; }
    .hosting-hero h1 { font-size: 2.5rem; }
    .popular-card { transform: scale(1); }
}
/* --- 4 Sütunlu Fiyatlandırma --- */
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Eşit Sütun */
    gap: 20px;
    align-items: center;
}

/* Mobilde tek sütun, tablette 2 sütun */
@media (max-width: 1100px) {
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cards-grid-4 { grid-template-columns: 1fr; }
}

/* --- Pricing Switch (Modern) --- */
.pricing-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}
.switch-toggle input { opacity: 0; width: 0; height: 0; }
.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}
.slider-toggle:before {
    position: absolute;
    content: "";
    height: 24px; width: 24px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .slider-toggle { background-color: var(--primary); }
input:checked + .slider-toggle:before { transform: translateX(26px); }

.period-label { font-weight: 600; color: var(--text-light); transition: 0.3s; }
.period-label.active { color: var(--dark-bg); font-weight: 800; }
.discount-badge { background: #fef08a; color: #854d0e; padding: 3px 8px; border-radius: 12px; font-size: 0.75rem; margin-left: 5px; }

/* --- Adda Farkı (Features Grid) --- */
.features-grid-section { padding: 100px 0; background: var(--white); }
.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.feat-box {
    padding: 30px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.feat-box:hover { background: white; box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateY(-5px); }
.feat-icon {
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feat-box h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-bg); }
.feat-box p { color: var(--text-light); line-height: 1.6; }

/* --- FAQ Section (Yan Yana Tasarım) --- */
.faq-section { padding: 100px 0; background: #f1f5f9; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.faq-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 15px; }
.faq-header p { margin-bottom: 30px; color: var(--text-light); }
.btn-faq-contact { color: var(--primary); font-weight: 700; text-decoration: underline; }

.faq-accordion { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: white; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-bg);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary i { color: var(--primary); transition: 0.3s; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item .content { padding: 0 20px 20px; color: var(--text-light); line-height: 1.6; border-top: 1px solid #f1f5f9; }

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; text-align: center; }
    .faq-header { margin-bottom: 30px; }
    .faq-item summary { text-align: left; }
}
/* --- SEO FEATURES SECTION --- */
.why-choose-us { padding: 100px 0; background: #fff; }
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.seo-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.seo-card:hover {
    background: #fff;
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.icon-box {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
/* İkon Renkleri */
.icon-box.green { background: #dcfce7; color: #16a34a; }
.icon-box.blue { background: #dbeafe; color: #2563eb; }
.icon-box.purple { background: #f3e8ff; color: #9333ea; }
.icon-box.orange { background: #ffedd5; color: #ea580c; }
.icon-box.teal { background: #ccfbf1; color: #0d9488; }
.icon-box.red { background: #fee2e2; color: #dc2626; }

.seo-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-bg); }
.seo-card p { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }


/* --- MODERN FAQ SECTION (YENİLENMİŞ) --- */
.modern-faq-section { padding: 100px 0; background: #f8fafc; }
.faq-header-wrapper { text-align: center; margin-bottom: 50px; }
.faq-header-wrapper h2 { font-size: 2.5rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 10px; }
.faq-header-wrapper p { color: var(--text-light); }
.faq-header-wrapper a { color: var(--primary); font-weight: 600; text-decoration: underline; }

.modern-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.accordion-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.accordion-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.accordion-header {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.question-text { font-size: 1.1rem; font-weight: 700; color: var(--dark-bg); }

.icon-wrapper {
    width: 35px; height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
    color: var(--text-light);
}

/* Aktif Durum (JS ile eklenecek 'active' classı için) */
.accordion-item.active { border-color: var(--primary); }
.accordion-item.active .accordion-header { background: #eff6ff; }
.accordion-item.active .question-text { color: var(--primary); }
.accordion-item.active .icon-wrapper { transform: rotate(180deg); background: var(--primary); color: white; }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-body p { padding: 0 25px 25px; color: var(--text-light); line-height: 1.7; }

/* Mobilde Grid Ayarı */
@media (max-width: 768px) {
    .seo-features-grid { grid-template-columns: 1fr; }
}
/* --- YENİ WORDPRESS HERO --- */
.wp-hero-section {
    padding: 120px 0 100px;
    background: #0f172a; /* Koyu Lacivert Zemin */
    color: white;
    overflow: hidden;
    position: relative;
}

.wp-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp-hero-text { flex: 1; z-index: 2; }

.wp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.wp-hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text-wp {
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wp-hero-text p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 35px; max-width: 500px; }

/* --- ORBIT ANIMATION (Görsel Kısım) --- */
.wp-hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex; align-items: center; justify-content: center;
}

.wp-logo-center {
    width: 100px; height: 100px;
    background: #38bdf8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; color: white;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.4);
    z-index: 10;
    position: relative;
}

.wp-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.circle-1 { width: 200px; height: 200px; }
.circle-2 { width: 320px; height: 320px; }
.circle-3 { width: 450px; height: 450px; border-color: rgba(255,255,255,0.05); }

.orbit-icon {
    position: absolute;
    width: 50px; height: 50px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 5;
    animation: floatIcon 4s ease-in-out infinite;
}

/* İkonların Konumları */
.icon-1 { top: 20%; left: 20%; color: #d63384; animation-delay: 0s; } /* Elementor */
.icon-2 { top: 15%; right: 25%; color: #a855f7; animation-delay: 1s; } /* Woo */
.icon-3 { bottom: 25%; left: 15%; color: #22c55e; animation-delay: 2s; } /* Security */
.icon-4 { bottom: 15%; right: 20%; color: #f59e0b; animation-delay: 0.5s; } /* Litespeed */
.icon-5 { top: 50%; right: 10%; color: #38bdf8; animation-delay: 1.5s; } /* Themes */

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- TEMA VİTRİNİ BÖLÜMÜ --- */
.wp-templates-section { padding: 80px 0; background: #fff; }

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.template-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.template-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.template-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.template-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.template-card:hover .template-img img { transform: scale(1.05); }

.template-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.template-card:hover .template-overlay { opacity: 1; }

.btn-preview {
    background: white; color: var(--dark-bg);
    padding: 10px 25px; border-radius: 30px;
    font-weight: 700; border: none; cursor: pointer;
    transform: translateY(10px); transition: 0.3s;
}
.template-card:hover .btn-preview { transform: translateY(0); }

.template-info { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.template-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark-bg); margin: 0; }
.cat-badge { font-size: 0.8rem; background: #f1f5f9; padding: 4px 10px; border-radius: 6px; color: var(--text-light); }

.template-cta {
    margin-top: 40px;
    text-align: center;
    background: #ecfdf5;
    padding: 15px;
    border-radius: 12px;
    color: #065f46;
    border: 1px dashed #34d399;
    font-size: 1.1rem;
}
.template-cta i { margin-right: 8px; }

/* Mobilde Hero Düzeni */
@media (max-width: 900px) {
    .wp-hero-container { flex-direction: column; text-align: center; }
    .wp-hero-visual { width: 100%; margin-top: 50px; height: 300px; }
    .circle-3 { display: none; } /* Mobilde çok büyük halkayı gizle */
}
/* --- VDS HERO IMAGE DÜZELTME --- */
.hero-3d-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: rotateY(-10deg);
    transition: 0.5s;
}
.hero-visual-right:hover .hero-3d-img { transform: rotateY(0deg); }


/* --- PRICING LIST (LIGHT & PREMIUM) --- */
.pricing-list-section { padding: 80px 0; background: #f8fafc; }
.vds-list-container { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.vds-row-light {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.2fr;
    align-items: center;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.vds-row-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

/* Kolon 1: İkon ve İsim */
.vds-col-info { display: flex; align-items: center; gap: 20px; }
.vds-icon-box {
    width: 55px; height: 55px;
    background: #f1f5f9;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 1.4rem;
}
.vds-icon-box.blue { background: #eff6ff; color: var(--primary); }
.vds-icon-box.purple { background: #f3e8ff; color: #9333ea; }
.vds-icon-box.dark { background: #e2e8f0; color: var(--dark-bg); }

.vds-names h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark-bg); margin-bottom: 2px; }
.vds-names span { font-size: 0.9rem; color: var(--text-light); }

/* Kolon 2: Özellikler */
.vds-col-specs { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.spec-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 14px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--text-main);
    display: flex; align-items: center; gap: 8px;
}
.spec-tag i { color: #94a3b8; }
.spec-tag.highlight { background: #f3e8ff; border-color: #d8b4fe; color: #7e22ce; }
.spec-tag.highlight i { color: #a855f7; }

/* Kolon 3: Fiyat ve Buton */
.vds-col-price { display: flex; align-items: center; justify-content: flex-end; gap: 25px; }
.price-wrap { text-align: right; }
.price-wrap .amount { font-size: 1.6rem; font-weight: 800; color: var(--dark-bg); }
.price-wrap .period { color: #94a3b8; }

.btn-row-outline {
    padding: 10px 25px;
    border: 2px solid #e2e8f0; color: var(--dark-bg);
    border-radius: 10px; font-weight: 700;
    transition: 0.3s;
}
.btn-row-outline:hover { border-color: var(--dark-bg); background: var(--dark-bg); color: white; }

.btn-row-primary {
    padding: 12px 25px;
    background: var(--primary); color: white;
    border-radius: 10px; font-weight: 700;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    transition: 0.3s;
}
.btn-row-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Popüler Satır Farkı */
.popular-row-light {
    border: 2px solid var(--primary);
    background: #fff;
    position: relative;
    overflow: hidden;
}
.pop-badge-row {
    position: absolute; top: 0; right: 0;
    background: var(--primary); color: white;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
    padding: 4px 12px; border-bottom-left-radius: 12px;
}

/* --- YÖNETİM PANELİ BÖLÜMÜ --- */
.management-section { padding: 100px 0; background: white; }
.mgmt-wrapper { display: flex; align-items: center; gap: 60px; }
.mgmt-text { flex: 1; }
.mgmt-text h2 { font-size: 2.5rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 20px; }
.mgmt-list { list-style: none; margin-top: 30px; }
.mgmt-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; font-size: 1.1rem; color: var(--text-main); }
.icon-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); }

.mgmt-visual { flex: 1.2; position: relative; }
.mgmt-visual img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.panel-overlay { position: absolute; bottom: 30px; left: -30px; display: flex; gap: 15px; }

.status-card {
    background: white; padding: 15px 25px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; gap: 5px;
}
.status-card .lbl { font-size: 0.8rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; }
.status-card .val { font-weight: 800; font-size: 1.1rem; color: var(--dark-bg); }
.status-card .val.online { color: #10b981; display: flex; align-items: center; gap: 5px; }
.status-card .val.online i { font-size: 0.6rem; animation: pulse 1.5s infinite; }

/* Mobil Uyum */
@media (max-width: 900px) {
    .vds-row-light { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .vds-col-info { flex-direction: column; }
    .vds-col-specs { flex-direction: column; }
    .vds-col-price { flex-direction: column; gap: 10px; }
    .mgmt-wrapper { flex-direction: column; }
    .panel-overlay { left: 50%; transform: translateX(-50%); bottom: -20px; width: 90%; justify-content: center; }
}
/* --- OS SECTION --- */
.os-section { padding: 80px 0; background: #fff; text-align: center; }
.os-grid {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    margin-top: 40px;
}
.os-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-weight: 700; color: var(--dark-bg);
    transition: 0.3s; cursor: pointer;
}
.os-item i { font-size: 3.5rem; transition: 0.3s; }
.os-item:hover { transform: translateY(-5px); }
.os-item:hover i { transform: scale(1.1); }
/* --- DEDICATED SUNUCU ÖZEL --- */

/* Satır Düzeni Ayarları */
.dedicated-row {
    position: relative; /* Stok rozeti için */
    padding-top: 35px; /* Stok rozeti payı */
}

/* Stok Göstergesi */
.stock-indicator {
    position: absolute;
    top: 15px; left: 35px;
    font-size: 0.8rem; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
}
.in-stock { color: #16a34a; }
.low-stock { color: #ea580c; }
.pre-order { color: #2563eb; }

.stock-indicator i { font-size: 0.6rem; animation: pulse 2s infinite; }

/* İşlemci Marka Logoları */
.chip-icon {
    width: 60px; height: 60px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    padding: 10px;
}
.chip-icon img { width: 100%; height: auto; object-fit: contain; }
.chip-icon.amd { border-color: #fca5a5; background: #fff1f2; } /* Hafif kırmızı */

/* Benchmark Puanı */
.benchmark {
    display: block;
    font-size: 0.8rem; color: #64748b;
    margin-top: 4px;
    background: #f1f5f9;
    padding: 2px 8px; border-radius: 4px;
    width: fit-content;
}

/* Teknik Özellikler Izgarası (Daha sıkışık olmasın diye) */
.dedicated-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun yap */
    gap: 10px;
    justify-content: start;
}
.dedicated-specs .spec-tag {
    font-size: 0.85rem;
    white-space: nowrap; /* Satır kaymasını önle */
}

/* Mobilde Düzen */
@media (max-width: 900px) {
    .dedicated-specs { grid-template-columns: 1fr; width: 100%; }
    .stock-indicator { position: relative; top: 0; left: 0; margin-bottom: 15px; justify-content: center; }
    .dedicated-row { padding-top: 25px; }
}
/* --- BENCHMARK (PERFORMANS) GRAFİĞİ --- */
.benchmark-section { padding: 100px 0; background: #fff; }
.benchmark-wrapper {
    display: flex; align-items: center; gap: 60px;
    background: #0f172a; border-radius: 24px; padding: 50px;
    color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.bench-text { flex: 1; }
.bench-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.bench-text p { color: #94a3b8; margin-bottom: 30px; font-size: 1.1rem; }

.bench-legend { display: flex; gap: 20px; font-size: 0.9rem; color: #cbd5e1; }
.legend-item { display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.adda { background: #16a34a; box-shadow: 0 0 10px #16a34a; }
.dot.standard { background: #64748b; }
.dot.cloud { background: #334155; }

.bench-graph { flex: 1.2; display: flex; flex-direction: column; gap: 25px; }

.bar-group { width: 100%; }
.bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.95rem; font-weight: 600; }
.bar-track { width: 100%; height: 12px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }

.bar-fill { height: 100%; border-radius: 20px; animation: fillBar 1.5s ease-out forwards; width: 0; }
.fill-adda { background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%); box-shadow: 0 0 20px rgba(22, 163, 74, 0.4); }
.fill-standard { background: #64748b; }
.fill-cloud { background: #334155; }

@keyframes fillBar { from { width: 0; } }

/* --- USE CASES (KULLANIM SENARYOLARI) --- */
.use-cases-section { padding: 80px 0; background: #f8fafc; }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }

.case-card {
    background: white; padding: 35px; border-radius: 20px;
    border: 1px solid #e2e8f0; transition: 0.3s;
    border-bottom: 4px solid transparent;
}
.case-card:hover { transform: translateY(-5px); border-bottom-color: #16a34a; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.case-icon {
    width: 60px; height: 60px; background: #dcfce7; color: #16a34a;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
}
.case-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark-bg); }
.case-card p { color: var(--text-light); line-height: 1.6; }

/* Mobil Uyum */
@media (max-width: 900px) {
    .benchmark-wrapper { flex-direction: column; padding: 30px; }
    .bench-graph { width: 100%; }
}
/* --- İLETİŞİM SAYFASI STİLLERİ --- */

.contact-hero {
    padding: 120px 0 60px;
    background: #f8fafc;
    text-align: center;
}
.contact-hero h1 { font-size: 3rem; margin: 20px 0 10px; color: var(--dark-bg); }
.contact-hero p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.contact-section { padding: 60px 0 100px; background: #f8fafc; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol daha dar, Sağ (Form) daha geniş */
    gap: 60px;
    align-items: start;
}

/* Sol Kolon: Bilgiler */
.contact-info-col h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--dark-bg); }
.info-desc { color: var(--text-light); margin-bottom: 30px; }

.info-cards-grid { display: flex; flex-direction: column; gap: 20px; }

.c-card {
    background: white; padding: 20px; border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex; align-items: flex-start; gap: 20px;
    transition: 0.3s;
}
.c-card:hover { border-color: var(--primary); transform: translateX(5px); }

.c-icon {
    width: 50px; height: 50px;
    background: #eff6ff; color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}

.c-card h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--dark-bg); }
.c-card p { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin-bottom: 5px; }
.c-status { font-size: 0.85rem; color: #94a3b8; }
.c-status.online { color: #16a34a; font-weight: 600; }

.support-cta-box {
    margin-top: 30px;
    background: #0f172a; color: white;
    padding: 25px; border-radius: 16px;
    display: flex; gap: 20px; align-items: flex-start;
}
.support-cta-box .cta-icon {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #38bdf8; flex-shrink: 0;
}
.support-cta-box h4 { margin-bottom: 5px; font-size: 1.1rem; }
.support-cta-box p { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 15px; line-height: 1.5; }
.link-arrow { color: #38bdf8; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.link-arrow:hover i { transform: translateX(5px); transition: 0.3s; }

/* Sağ Kolon: Form */
.contact-form-col {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.modern-form h3 { font-size: 1.8rem; margin-bottom: 30px; color: var(--dark-bg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-main); font-size: 0.95rem; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-bg);
    background: #f8fafc;
    transition: 0.3s;
    font-family: var(--font-stack) !important;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note { font-size: 0.85rem; color: #94a3b8; margin-top: 15px; text-align: center; }

/* Harita */
.map-section {
    height: 400px;
    width: 100%;
    filter: grayscale(100%); /* Siyah beyaz harita efekti */
    transition: 0.5s;
}
.map-section:hover { filter: grayscale(0%); /* Üzerine gelince renklenir */ }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* Mobil Uyum */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-col { padding: 25px; }
}