/* =========================================
   LICENSES PAGE (MODERN MARKET)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-body: #f8fafc;
    --primary: #4f46e5;
    --secondary: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    
    /* Marka Renkleri */
    --brand-cpanel: #ff6c2c;
    --brand-plesk: #1f283d;
    --brand-litespeed: #3b82f6;
    --brand-cloudlinux: #0284c7;
    --brand-directadmin: #ef4444;
}

body {
    background-color: var(--bg-body);
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* 1. HERO SECTION */
.lic-hero {
    padding: 140px 0 80px;
    background: white;
    text-align: center; 
    border-bottom: 1px solid #e2e8f0;
}
.hero-badge {
    display: inline-block; padding: 8px 25px; border-radius: 50px;
    background: #e0e7ff; color: var(--primary); font-weight: 700; font-size: 0.9rem;
    margin-bottom: 25px; letter-spacing: 1px;
}
.hero-title {
    font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px;
    color: var(--secondary);
}
.hero-desc {
    font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto;
}

/* 2. LİSANS KARTLARI (MODERNİZE EDİLDİ) */
.license-section { padding: 80px 0; }
.cat-header {
    display: flex; align-items: center; gap: 15px; margin-bottom: 40px;
    padding-bottom: 15px; border-bottom: 2px solid #e2e8f0;
}
.cat-title { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin: 0; }
.cat-icon { font-size: 1.8rem; color: var(--primary); }

.lic-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 80px;
}

.lic-card {
    background: white; border-radius: 24px; overflow: hidden;
    /* Daha yumuşak, modern gölge */
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); 
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex; flex-direction: column; position: relative;
}
.lic-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

/* Header Kısmı */
.lic-header { 
    padding: 35px 20px; text-align: center; color: white; 
    clip-path: ellipse(150% 100% at 50% 0%); /* Hafif kavisli alt kısım */
}
.lic-card.cpanel .lic-header { background: linear-gradient(135deg, #ff6c2c, #ff9f43); }
.lic-card.plesk .lic-header { background: linear-gradient(135deg, #1f283d, #34495e); }
.lic-card.litespeed .lic-header { background: linear-gradient(135deg, #3b82f6, #2980b9); }
.lic-card.cloudlinux .lic-header { background: linear-gradient(135deg, #0284c7, #00d2d3); }
.lic-card.directadmin .lic-header { background: linear-gradient(135deg, #ef4444, #ff6b6b); }

.lic-logo { font-size: 2.5rem; margin-bottom: 10px; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2)); }
.lic-name { font-size: 1.4rem; font-weight: 800; display: block; letter-spacing: -0.5px; }
.lic-sub { font-size: 0.9rem; opacity: 0.9; font-weight: 500; }

.lic-body { padding: 30px; text-align: center; flex: 1; display: flex; flex-direction: column; }

.lic-price { margin-bottom: 25px; }
.currency { font-size: 1.2rem; font-weight: 600; color: var(--text-main); vertical-align: top; }
.amount { font-size: 3rem; font-weight: 800; color: var(--secondary); letter-spacing: -1px; }
.period { font-size: 0.9rem; color: var(--text-muted); }

.lic-features { list-style: none; padding: 0; margin: 0 0 30px 0; text-align: left; }
.lic-features li {
    padding: 10px 0; border-bottom: 1px dashed #f1f5f9;
    font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px;
}
.lic-features li:last-child { border-bottom: none; }
.lic-features li i { color: #10b981; }

.btn-lic {
    margin-top: auto; width: 100%; padding: 15px; border-radius: 12px;
    background: var(--secondary); color: white; font-weight: 700; text-decoration: none;
    transition: 0.3s; border: none; cursor: pointer;
}
.btn-lic:hover { background: var(--primary); transform: translateY(-2px); }

/* 3. NEDEN BİZ (WHY US) */
.why-section { padding: 100px 0; background: #fff; border-top: 1px solid #f1f5f9; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

.why-card { text-align: center; padding: 20px; transition: 0.3s; }
.why-card:hover { transform: translateY(-5px); }
.why-icon {
    width: 70px; height: 70px; background: #eef2ff; color: var(--primary);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 20px;
}
.why-card h4 { font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* 4. S.S.S (FAQ) */
.faq-section { padding: 100px 0; background: #f8fafc; border-top: 1px solid #e2e8f0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 50px; }

.faq-item {
    background: white; border-radius: 16px; margin-bottom: 15px;
    border: 1px solid #e2e8f0; overflow: hidden; transition: 0.3s;
}
.faq-item:hover { border-color: var(--primary); }

.faq-item summary {
    padding: 20px 25px; cursor: pointer; font-weight: 700; color: var(--secondary);
    font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { 
    content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: 0.3s; 
}
.faq-item[open] summary::after { content: '-'; transform: rotate(180deg); color: var(--text-muted); }
.faq-content { padding: 0 25px 25px; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* 5. HELP CTA */
.help-cta {
    background: var(--secondary); padding: 80px 0; text-align: center; color: white;
    background-image: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
}
.help-cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.help-cta p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-help {
    background: white; color: var(--secondary); padding: 15px 35px; border-radius: 50px;
    font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-help:hover { background: var(--primary); color: white; }

/* RESPONSIVE */
@media (max-width: 1200px) { .lic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lic-grid, .why-grid { grid-template-columns: 1fr; } .hero-title { font-size: 2.5rem; } }