.neden-section {
    background: #fff;
    padding: 80px 0;
}

/* Koruma Detay Section */
.koruma-section {
    background: linear-gradient(135deg, #003859 0%, #00629D 50%, #0082cf 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.koruma-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.koruma-content {
    position: relative;
    z-index: 2;
}

.koruma-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.koruma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.12);
}
.koruma-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.koruma-card-icon svg {
    width: 32px;
    height: 32px;
}
.koruma-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 12px;
}
.koruma-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins';
    line-height: 1.7;
    font-weight: 300;
}

/* Nasıl Çalışır Section */
.nasil-section {
    background: #f8fafc;
    padding: 100px 0;
}
.step-card {
    text-align: center;
    padding: 40px 24px;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins';
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 12px;
}
.step-card p {
    font-size: 15px;
    color: #4b5563;
    font-family: 'Poppins';
    line-height: 1.7;
}
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.step-connector svg {
    color: #0082cf;
    opacity: 0.4;
}

/* İstatistik Section */
.stats-section {
    background: #fff;
    padding: 80px 0;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
}
.stat-value {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Poppins';
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 16px;
    color: #4b5563;
    font-family: 'Poppins';
    font-weight: 400;
}

/* Paket Tablosu Section */
.paketler-section {
    background: #f8fafc;
    padding: 100px 0;
}
.antiddos-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    font-family: 'Inter';
}
.antiddos-table thead th {
    background: linear-gradient(90deg, #003859, #00629D);
    color: #fff;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.antiddos-table tbody tr {
    background: #fff;
    transition: background 0.2s;
}
.antiddos-table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.antiddos-table tbody tr:hover {
    background: #eff6ff;
}
.antiddos-table tbody td {
    padding: 18px 24px;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}
.table-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.badge-basic {
    background: #dbeafe;
    color: #1e40af;
}
.badge-pro {
    background: #d1fae5;
    color: #065f46;
}
.badge-enterprise {
    background: #fef3c7;
    color: #92400e;
}

/* Avantajlar Section */
.avantajlar-section {
    background: #fff;
    padding: 100px 0;
}
.avantaj-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}
.avantaj-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0082cf20, #58b5eb20);
    display: flex;
    align-items: center;
    justify-content: center;
}
.avantaj-icon svg {
    width: 24px;
    height: 24px;
    color: #0082cf;
}
.avantaj-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 6px;
}
.avantaj-item p {
    font-size: 15px;
    color: #6b7280;
    font-family: 'Poppins';
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .koruma-card {
        margin-bottom: 20px;
    }
    .step-connector {
        display: none;
    }
    .step-card {
        margin-bottom: 20px;
    }
    .antiddos-table {
        display: block;
        overflow-x: auto;
    }
    .stat-item {
        margin-bottom: 20px;
    }
    .stat-value {
        font-size: 36px;
    }
}
.koruma-section {
    background: linear-gradient(135deg, #003859 0%, #00629D 50%, #0082cf 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.koruma-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}
.koruma-content { position: relative; z-index: 2; }
.koruma-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.koruma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.12);
}
.koruma-card-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.koruma-card-icon svg { width: 32px; height: 32px; }
.koruma-card h3 { font-size: 22px; font-weight: 600; color: #fff; font-family: 'Poppins'; margin-bottom: 12px; }
.koruma-card p { font-size: 16px; color: rgba(255,255,255,0.7); font-family: 'Poppins'; line-height: 1.7; font-weight: 300; }

.nasil-section { background: #f8fafc; padding: 100px 0; }
.step-card { text-align: center; padding: 40px 24px; }
.step-number {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    color: #fff; font-size: 24px; font-weight: 700; font-family: 'Poppins';
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step-card h4 { font-size: 20px; font-weight: 600; color: #12567f; font-family: 'Poppins'; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: #4b5563; font-family: 'Poppins'; line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 30px; }

.stats-section { background: #fff; padding: 80px 0; }
.stat-item { text-align: center; padding: 30px 20px; }
.stat-value {
    font-size: 48px; font-weight: 800; font-family: 'Poppins';
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.2; margin-bottom: 8px;
}
.stat-label { font-size: 16px; color: #4b5563; font-family: 'Poppins'; }

.avantajlar-section { background: #fff; padding: 100px 0; }
.avantaj-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.avantaj-icon {
    min-width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #0082cf20, #58b5eb20);
    display: flex; align-items: center; justify-content: center;
}
.avantaj-icon svg { width: 24px; height: 24px; }
.avantaj-item h4 { font-size: 18px; font-weight: 600; color: #12567f; font-family: 'Poppins'; margin-bottom: 6px; }
.avantaj-item p { font-size: 15px; color: #6b7280; font-family: 'Poppins'; line-height: 1.6; margin: 0; }

.usecase-section { background: #f8fafc; padding: 100px 0; }
.usecase-card {
    background: #fff; border-radius: 16px; padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.usecase-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.usecase-card h4 { font-size: 20px; font-weight: 600; color: #12567f; font-family: 'Poppins'; margin-bottom: 10px; }
.usecase-card p { font-size: 15px; color: #6b7280; font-family: 'Poppins'; line-height: 1.7; margin: 0; }
.usecase-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.usecase-icon svg { width: 26px; height: 26px; }

@media (max-width: 768px) {
    .koruma-card { margin-bottom: 20px; }
    .step-connector { display: none; }
    .step-card { margin-bottom: 20px; }
    .stat-value { font-size: 36px; }
    .usecase-card { margin-bottom: 20px; }
}
.ssl-features ul,
.ssl-features li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ssl-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: #374151;
  font-family: 'Inter';
  border-bottom: 1px solid #f3f4f6;
}
.ssl-features li:last-child {
  border-bottom: none;
}
/* Eğer backend li içine ikon göndermiyorsa otomatik checkmark ekle */
.ssl-features li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23d1fae5'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
/* Eğer backend zaten ikon/svg gönderiyorsa ::before'u kaldır */
.ssl-features li svg ~ *,
.ssl-features li i ~ * {
  margin-left: 0;
}
.ssl-features li:has(svg)::before,
.ssl-features li:has(i)::before {
  display: none;
}

/* Para birimi switcher label renk geçişi */
#ssl-tl:checked ~ label[for="ssl-tl"],
.pricing-switcher-currency input[type="radio"]:checked + label {
  color: #fff;
}