.security-section {
    background-color: #0d1629;
    padding: 80px 5%;
    color: #ffffff;
    border-bottom: 1px solid rgba(54, 123, 245, 0.2);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-header .badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.security-header h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.security-header h2 .highlight { color: #f59e0b; }
.security-header p { font-size: 16px; color: #7a8ea6; max-width: 650px; margin: 0 auto; line-height: 1.6; }

.security-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.security-compare-box {
    flex: 1.1;
    background-color: #121d36;
    border: 1px solid #1c2a4d;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.compare-title { font-size: 14px; color: #7a8ea6; font-weight: 600; margin-bottom: 20px; }
.compare-tables { display: flex; gap: 15px; margin-bottom: 25px; }
.compare-col { flex: 1; border-radius: 12px; padding: 20px; }
.compare-col.good { background-color: rgba(2, 177, 40, 0.05); border: 1px solid rgba(2, 177, 40, 0.3); }
.compare-col.bad { background-color: rgba(238, 5, 5, 0.05); border: 1px solid rgba(238, 5, 5, 0.3); }
.col-header { font-size: 13px; font-weight: 700; margin-bottom: 15px; }
.compare-col.good .col-header { color: #02b128; }
.compare-col.bad .col-header { color: #ee0505; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col ul li { font-size: 13px; color: #c0cce6; margin-bottom: 10px; line-height: 1.4; }

.compare-footer-quote {
    background-color: #0b1324;
    border: 1px solid #1c2a4d;
    border-radius: 10px;
    padding: 20px;
}

.compare-footer-quote .quote-title {
    color: #02b128;
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.compare-footer-quote p { font-size: 13px; color: #7a8ea6; margin: 0; line-height: 1.5; }

.security-features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    background-color: #121d36;
    border: 1px solid #1c2a4d;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(54, 123, 245, 0.6); }

.feature-icon {
    font-size: 24px;
    background-color: #0b1324;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #1c2a4d;
}

.feature-text h3 { font-size: 16px; font-weight: 700; margin: 0 0 5px 0; color: #ffffff; }
.feature-text p { font-size: 13px; color: #7a8ea6; margin: 0; line-height: 1.5; }

@media (max-width: 968px) {
    .security-grid { flex-direction: column; }
    .compare-tables { flex-direction: column; }
}