/* ==============================================
   Security Pages Common Styles
   YourIT - Modern, Conversion-Optimized Design
   Toss-inspired UI with high conversion rate focus
============================================== */

/* ===== Promo Banner ===== */
.promo-banner.security {
    background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 170, 0.08) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.promo-banner.security .promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-banner.security .promo-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.promo-banner.security p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.promo-banner.security p strong {
    color: var(--primary);
}

.promo-banner.security .promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-left: 8px;
}

.promo-banner.security .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-banner.security .promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.promo-banner.security .promo-btn.pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 170, 0); }
}

/* ===== Hero Section ===== */
.security-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #0a0f1a 0%, #1a1f2e 100%);
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.security-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.security-hero .hero-content {
    text-align: left;
}

.security-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
}

.security-hero .hero-badge i {
    font-size: 16px;
}

.security-hero .hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.security-hero .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-hero .hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.security-hero .hero-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.security-hero .hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.security-hero .btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.security-hero .btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

.security-hero .btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.security-hero .btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: var(--primary);
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Security Visual Placeholder - 공통 비주얼 */
.security-visual-placeholder {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-visual-placeholder .visual-icon {
    position: relative;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: iconPulse 3s ease-in-out infinite;
}

.security-visual-placeholder .visual-icon::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite 0.5s;
}

.security-visual-placeholder .visual-icon::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-radius: 50%;
    z-index: -2;
    animation: iconPulse 3s ease-in-out infinite 1s;
}

.security-visual-placeholder .visual-icon i {
    font-size: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* 플로팅 파티클 */
.security-visual-placeholder::before,
.security-visual-placeholder::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.security-visual-placeholder::before {
    top: 60px;
    left: 80px;
    animation-delay: 0s;
}

.security-visual-placeholder::after {
    bottom: 80px;
    right: 60px;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(20px, 0) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translate(10px, 20px) scale(0.8);
        opacity: 0.8;
    }
}

/* 데코레이션 링 */
.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.visual-ring.ring-1 {
    width: 250px;
    height: 250px;
    animation: rotateRing 20s linear infinite;
}

.visual-ring.ring-2 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    border-color: rgba(0, 180, 216, 0.15);
    animation: rotateRing 30s linear infinite reverse;
}

.visual-ring.ring-3 {
    width: 380px;
    height: 380px;
    border-width: 1px;
    border-color: rgba(0, 212, 170, 0.1);
    animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 플로팅 아이콘들 */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 22px;
    color: var(--primary);
}

.floating-icon:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 30%; right: 10px; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 30%; right: 20px; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.floating-icon:nth-child(5) { bottom: 30%; left: 10px; animation-delay: 4s; }
.floating-icon:nth-child(6) { top: 30%; left: 20px; animation-delay: 5s; }

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

.floating-icon:nth-child(odd) {
    animation-name: floatIconAlt;
}

@keyframes floatIconAlt {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 1;
    }
}

/* ===== Stats Section ===== */
.security-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 26px;
    color: var(--primary);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-number .unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 2px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #191f28;
}

.section-title.light {
    color: #fff;
}

.section-title strong {
    display: block;
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: #8b95a1;
    margin-top: 16px;
}

/* ===== Why Section ===== */
.why-section {
    padding: 100px 0;
    background: #f8fafb;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.risk-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.risk-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-icon i {
    font-size: 32px;
    color: #e74c3c;
}

.risk-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.risk-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7684;
    margin-bottom: 20px;
}

.risk-stat {
    padding-top: 16px;
    border-top: 1px solid #e5e8eb;
}

.risk-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 4px;
}

.risk-label {
    font-size: 12px;
    color: #8b95a1;
}

.solution-intro {
    text-align: center;
    margin-top: 50px;
}

.solution-arrow {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.solution-arrow i {
    font-size: 24px;
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.solution-intro p {
    font-size: 18px;
    color: #4e5968;
}

.solution-intro strong {
    color: var(--primary);
}

/* ===== Features Section ===== */
.features-section,
.security-features-section {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: #f8fafb;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #fff;
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7684;
}

/* ===== Pricing Section ===== */
.security-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.security-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 180, 216, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.security-pricing-section .section-badge {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.security-pricing-section .section-title {
    color: #fff;
}

.security-pricing-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pricing-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-grid.four-cols .pricing-card {
    padding: 30px 22px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-color: rgba(0, 212, 170, 0.5);
}

.pricing-card.premium .pricing-name,
.pricing-card.premium .pricing-desc,
.pricing-card.premium .price-current,
.pricing-card.premium .pricing-features li {
    color: #fff;
}

.pricing-card.premium .pricing-features li.excluded {
    color: rgba(255, 255, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-badge.free {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    color: var(--primary);
}

.pricing-badge.discount {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.pricing-badge.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-price {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.pricing-card.premium .pricing-price {
    border-color: rgba(255, 255, 255, 0.1);
}

.price-original {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.price-current strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.price-monthly {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

.price-monthly strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.price-condition {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-features li.included i {
    color: var(--primary);
}

.pricing-features li.excluded {
    color: rgba(255, 255, 255, 0.35);
}

.pricing-features li.excluded i {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-features li.highlight {
    font-weight: 600;
    color: var(--primary);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.pricing-card.premium .pricing-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.pricing-notice {
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(0, 212, 170, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.pricing-notice i {
    font-size: 20px;
    color: var(--primary);
}

.pricing-notice p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Alternative Pricing Section (pentest, vulnerability, incident) ===== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 180, 216, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .section-header {
    position: relative;
    z-index: 1;
}

.pricing-section .section-badge {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.pricing-section .section-title {
    color: #fff;
}

.pricing-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section .pricing-grid {
    position: relative;
    z-index: 1;
}

.pricing-section .pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-section .pricing-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 170, 0.3);
}

.pricing-section .pricing-card.featured {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.4);
}

.pricing-section .pricing-header .pricing-name {
    color: #fff;
}

.pricing-section .pricing-header .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-section .pricing-price .price-amount {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.pricing-section .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-section .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.35);
}

.pricing-section .pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-section .pricing-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-section .pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.pricing-section .pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border: none;
}

.pricing-section .pricing-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

/* ===== Comparison Table Section ===== */
.security-comparison-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.comparison-table th {
    padding: 24px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table th.feature-col {
    text-align: left;
    width: 200px;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 24px;
}

.comparison-table th.plan-col {
    width: 170px;
}

.comparison-table th.plan-col.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.plan-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
}

.plan-price {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e8eb;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.03);
}

.comparison-table tbody tr.category-row {
    background: #f8fafb;
}

.comparison-table tbody tr.category-row td {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #191f28;
}

.comparison-table tbody tr.category-row td i {
    margin-right: 8px;
    color: var(--primary);
}

.comparison-table tbody td {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #4e5968;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #191f28;
    padding-left: 24px;
}

.comparison-table tbody td.featured-col {
    background: rgba(0, 212, 170, 0.05);
}

.comparison-table .text-primary {
    color: var(--primary);
}

.comparison-table .text-gray {
    color: #d1d5db;
}

.plan-value {
    display: inline-block;
    padding: 4px 12px;
    background: #f2f4f6;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7684;
}

.plan-value.primary {
    background: rgba(0, 212, 170, 0.12);
    color: var(--primary);
}

.plan-value.enterprise {
    background: rgba(102, 126, 234, 0.12);
    color: #667eea;
}

.plan-value.highlight {
    background: rgba(0, 212, 170, 0.15);
    color: var(--primary);
}

/* ===== Use Cases Section ===== */
.usecase-section {
    padding: 100px 0;
    background: #f8fafb;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.usecase-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.usecase-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usecase-icon i {
    font-size: 32px;
    color: var(--primary);
}

.usecase-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.usecase-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7684;
    margin-bottom: 20px;
}

.recommend-plan {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== Customer Review Section ===== */
.security-review-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.security-review-section .section-title {
    color: #fff;
}

.security-review-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.review-stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.review-stat-item {
    text-align: center;
}

.review-stat-item .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.review-stat-item .stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    font-size: 14px;
    color: #ffc107;
}

.review-plan {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.review-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.author-company {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Process Section ===== */
.process-section,
.security-process-section {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #00B4D8 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.25);
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step-icon.emergency {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.25);
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(231, 76, 60, 0.25); }
    50% { box-shadow: 0 10px 40px rgba(231, 76, 60, 0.45); }
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7684;
}

.process-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #4e5968;
}

.highlight-item i {
    font-size: 20px;
    color: var(--primary);
}

.highlight-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===== FAQ Section ===== */
.faq-section,
.security-faq-section {
    padding: 100px 0;
    background: #f8fafb;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 16px;
    color: #8b95a1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7684;
}

/* ===== CTA Section ===== */
.security-cta-section,
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.cta-note i {
    color: var(--primary);
    margin-right: 6px;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact-info i {
    color: var(--primary);
}

/* CTA Section Buttons */
.cta-section .btn-primary-lg,
.security-cta-section .btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.cta-section .btn-primary-lg:hover,
.security-cta-section .btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

.cta-section .btn-secondary-lg,
.security-cta-section .btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .btn-secondary-lg:hover,
.security-cta-section .btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* CTA Section Gradient Text */
.cta-section .gradient-text,
.security-cta-section .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
}

.floating-btn.phone {
    background: #191f28;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn.phone:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .risk-grid,
    .usecase-grid,
    .process-timeline,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-stats-bar {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .security-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .security-hero .hero-content {
        text-align: center;
    }

    .security-hero .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .security-hero .hero-visual {
        display: none;
    }

    .security-hero .hero-title {
        font-size: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid.four-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .security-hero {
        padding: 120px 0 80px;
    }

    .security-hero .hero-title {
        font-size: 32px;
    }

    .security-hero .hero-desc {
        font-size: 16px;
    }

    .security-hero .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .security-hero .btn-primary-lg,
    .security-hero .btn-secondary-lg {
        width: 100%;
        justify-content: center;
    }

    .cta-section .cta-buttons,
    .security-cta-section .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-section .btn-primary-lg,
    .cta-section .btn-secondary-lg,
    .security-cta-section .btn-primary-lg,
    .security-cta-section .btn-secondary-lg {
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid,
    .risk-grid,
    .features-grid,
    .usecase-grid,
    .process-timeline,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-stats-bar {
        flex-direction: column;
        gap: 20px;
    }

    .promo-banner.security .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .process-highlight {
        flex-direction: column;
        gap: 16px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-number .unit {
        font-size: 16px;
    }
}

/* ===== WAF Architecture Diagram Section ===== */
.waf-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.waf-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.waf-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.waf-diagram-section .section-title {
    color: #fff;
}

.waf-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* WAF 타입 탭 */
.waf-type-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.waf-type-tab {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.waf-type-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.waf-type-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border-color: var(--primary);
    color: #fff;
}

.waf-type-tab i {
    margin-right: 10px;
}

/* WAF 다이어그램 컨테이너 */
.waf-diagram-container {
    position: relative;
}

.waf-diagram-content {
    display: none;
}

.waf-diagram-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* 소프트웨어형 WAF 다이어그램 */
.software-waf-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sw-waf-zone {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sw-waf-zone.client {
    border-color: rgba(100, 181, 246, 0.3);
}

.sw-waf-zone.server {
    border-color: rgba(0, 212, 170, 0.3);
}

.sw-waf-zone.database {
    border-color: rgba(156, 39, 176, 0.3);
}

.sw-waf-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-waf-zone.client .sw-waf-icon {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2) 0%, rgba(100, 181, 246, 0.1) 100%);
}

.sw-waf-zone.server .sw-waf-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
}

.sw-waf-zone.database .sw-waf-icon {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.sw-waf-icon i {
    font-size: 36px;
}

.sw-waf-zone.client .sw-waf-icon i {
    color: #64b5f6;
}

.sw-waf-zone.server .sw-waf-icon i {
    color: var(--primary);
}

.sw-waf-zone.database .sw-waf-icon i {
    color: #9c27b0;
}

.sw-waf-zone h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sw-waf-zone p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* WAF 모듈 박스 (서버 내부) */
.waf-module-box {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 12px;
    border: 1px dashed var(--primary);
}

.waf-module-box span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.waf-module-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.waf-module-box li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.waf-module-box li i {
    font-size: 10px;
    color: var(--primary);
}

/* 연결 화살표 */
.sw-waf-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sw-waf-arrow .arrow-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.sw-waf-arrow .arrow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: arrowFlow 1.5s linear infinite;
}

@keyframes arrowFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sw-waf-arrow .arrow-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 하드웨어형 WAF 다이어그램 */
.hardware-waf-diagram {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hw-waf-layer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
}

.hw-waf-layer.external {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.hw-waf-layer.waf-appliance {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border: 2px solid var(--primary);
    position: relative;
}

.hw-waf-layer.internal {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.hw-layer-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hw-layer-label i {
    font-size: 18px;
}

.hw-waf-layer.external .hw-layer-label i {
    color: #e74c3c;
}

.hw-waf-layer.waf-appliance .hw-layer-label i {
    color: var(--primary);
}

.hw-waf-layer.internal .hw-layer-label i {
    color: #4caf50;
}

.hw-layer-label span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hw-waf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.hw-waf-item i {
    font-size: 28px;
    margin-bottom: 10px;
}

.hw-waf-layer.external .hw-waf-item i {
    color: #e74c3c;
}

.hw-waf-layer.waf-appliance .hw-waf-item i {
    color: var(--primary);
}

.hw-waf-layer.internal .hw-waf-item i {
    color: #4caf50;
}

.hw-waf-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* WAF 전용 장비 강조 */
.hw-waf-appliance-box {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    margin-top: 10px;
}

.hw-appliance-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(0, 212, 170, 0.5);
    }
}

.hw-appliance-icon i {
    font-size: 48px;
    color: #fff;
}

.hw-appliance-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.hw-appliance-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.hw-appliance-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hw-appliance-features span {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* 트래픽 플로우 화살표 */
.hw-traffic-flow {
    display: flex;
    justify-content: center;
    position: relative;
    height: 40px;
}

.hw-traffic-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(231, 76, 60, 0.5), var(--primary), rgba(76, 175, 80, 0.5));
}

.hw-traffic-flow .flow-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: flowDown 2s linear infinite;
}

@keyframes flowDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* WAF 유형 비교 카드 */
.waf-comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.waf-compare-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.waf-compare-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.waf-compare-card.featured {
    border-color: var(--primary);
    background: rgba(0, 212, 170, 0.08);
}

.waf-compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.waf-compare-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waf-compare-icon i {
    font-size: 28px;
    color: #fff;
}

.waf-compare-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.waf-compare-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.waf-compare-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-left: auto;
}

.waf-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.waf-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.waf-compare-list li:last-child {
    border-bottom: none;
}

.waf-compare-list li i {
    font-size: 14px;
    color: var(--primary);
    margin-top: 2px;
}

/* WAF 다이어그램 반응형 */
@media (max-width: 992px) {
    .software-waf-diagram {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sw-waf-arrow {
        transform: rotate(90deg);
    }

    .waf-type-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .waf-type-tab {
        text-align: center;
    }

    .waf-comparison-cards {
        grid-template-columns: 1fr;
    }

    .hw-waf-appliance-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hw-waf-layer {
        grid-template-columns: repeat(2, 1fr);
    }

    .waf-compare-header {
        flex-direction: column;
        text-align: center;
    }

    .waf-compare-badge {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* ===== SOC (보안관제) Process Diagram Section ===== */
.soc-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.soc-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.soc-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.soc-diagram-section .section-title {
    color: #fff;
}

.soc-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* SOC 관제 프로세스 플로우 */
.soc-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* 연결 라인 배경 */
.soc-process-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(0, 212, 170, 0.3),
        rgba(0, 180, 216, 0.3),
        rgba(102, 126, 234, 0.3),
        rgba(156, 39, 176, 0.3)
    );
    transform: translateY(-50%);
    z-index: 0;
}

/* 애니메이션 데이터 흐름 */
.soc-process-flow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100px;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateY(-50%);
    animation: socDataFlow 3s linear infinite;
    z-index: 1;
}

@keyframes socDataFlow {
    0% { left: 100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 140px); opacity: 0; }
}

.soc-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.soc-step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.soc-process-step:nth-child(1) .soc-step-icon {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.soc-process-step:nth-child(2) .soc-step-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.soc-process-step:nth-child(3) .soc-step-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.soc-process-step:nth-child(4) .soc-step-icon {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(156, 39, 176, 0.1) 100%);
    border: 2px solid rgba(156, 39, 176, 0.3);
}

.soc-process-step:nth-child(5) .soc-step-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.soc-step-icon i {
    font-size: 36px;
}

.soc-process-step:nth-child(1) .soc-step-icon i { color: #e74c3c; }
.soc-process-step:nth-child(2) .soc-step-icon i { color: var(--primary); }
.soc-process-step:nth-child(3) .soc-step-icon i { color: #667eea; }
.soc-process-step:nth-child(4) .soc-step-icon i { color: #9c27b0; }
.soc-process-step:nth-child(5) .soc-step-icon i { color: #4caf50; }

.soc-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.soc-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.soc-step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.soc-step-time {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* SOC 관제 영역 탭 */
.soc-area-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.soc-area-tab {
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.soc-area-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.soc-area-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border-color: var(--primary);
    color: #fff;
}

.soc-area-tab i {
    margin-right: 8px;
}

/* SOC 관제 영역 콘텐츠 */
.soc-area-container {
    position: relative;
}

.soc-area-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.soc-area-content.active {
    display: block;
}

/* 관제 대상 그리드 */
.soc-targets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.soc-target-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.soc-target-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.soc-target-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-target-icon i {
    font-size: 32px;
    color: var(--primary);
}

.soc-target-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.soc-target-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* SOC 통계 대시보드 스타일 */
.soc-dashboard {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.soc-monitor-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.soc-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soc-panel-header i {
    font-size: 20px;
    color: var(--primary);
}

.soc-panel-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.soc-panel-header span {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* 실시간 로그 스타일 */
.soc-log-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.soc-log-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.soc-log-item.new {
    animation: logSlideIn 0.5s ease forwards;
}

.soc-log-item.removing {
    animation: logSlideOut 0.3s ease forwards;
}

@keyframes logSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 60px;
    }
}

@keyframes logSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes logFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.soc-log-time {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.soc-log-level {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.soc-log-level.critical {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.soc-log-level.warning {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.soc-log-level.info {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.soc-log-level.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.soc-log-message {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* SOC 통계 카드 */
.soc-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.soc-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.soc-stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.soc-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-stat-box.threats .soc-stat-icon {
    background: rgba(231, 76, 60, 0.15);
}

.soc-stat-box.threats .soc-stat-icon i {
    color: #e74c3c;
}

.soc-stat-box.blocked .soc-stat-icon {
    background: rgba(0, 212, 170, 0.15);
}

.soc-stat-box.blocked .soc-stat-icon i {
    color: var(--primary);
}

.soc-stat-box.response .soc-stat-icon {
    background: rgba(52, 152, 219, 0.15);
}

.soc-stat-box.response .soc-stat-icon i {
    color: #3498db;
}

.soc-stat-box.uptime .soc-stat-icon {
    background: rgba(76, 175, 80, 0.15);
}

.soc-stat-box.uptime .soc-stat-icon i {
    color: #4caf50;
}

.soc-stat-icon i {
    font-size: 22px;
}

.soc-stat-info {
    flex: 1;
}

.soc-stat-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.soc-stat-info .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.soc-stat-info .stat-value span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* SOC 다이어그램 반응형 */
@media (max-width: 1200px) {
    .soc-process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .soc-process-flow::before,
    .soc-process-flow::after {
        display: none;
    }

    .soc-process-step {
        flex: 0 0 calc(33.333% - 20px);
    }

    .soc-targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .soc-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .soc-process-step {
        flex: 0 0 calc(50% - 15px);
    }

    .soc-area-tabs {
        flex-direction: column;
    }

    .soc-area-tab {
        text-align: center;
    }

    .soc-targets-grid {
        grid-template-columns: 1fr;
    }

    .soc-stat-box {
        padding: 16px;
    }

    .soc-stat-info .stat-value {
        font-size: 20px;
    }
}

/* ==============================================
   IDS/IPS Diagram Section
============================================== */
.ids-diagram-section {
    padding: 100px 0;
    background: #f8fafb;
}

.ids-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 50px 40px;
}

/* Traffic Zone */
.traffic-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.traffic-zone .zone-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 87, 87, 0.15);
    border: 1px solid rgba(255, 87, 87, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #ff5757;
    margin-bottom: 20px;
}

.traffic-zone .zone-label i {
    font-size: 16px;
}

.traffic-zone .zone-label.safe {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

.traffic-types,
.protected-assets {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.traffic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 16px;
    min-width: 90px;
    transition: all 0.3s ease;
}

.traffic-item.normal {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.traffic-item.normal i {
    color: var(--primary);
    font-size: 24px;
}

.traffic-item.threat {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.traffic-item.threat i {
    color: #ff5757;
    font-size: 24px;
}

.traffic-item span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.asset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.asset-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.asset-item i {
    font-size: 28px;
    color: var(--primary);
}

.asset-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Traffic Flow Lines */
.traffic-flow {
    position: relative;
    height: 50px;
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
}

.traffic-flow .flow-line {
    position: absolute;
    width: 3px;
    height: 50px;
    border-radius: 2px;
    overflow: hidden;
}

.traffic-flow .flow-line.mixed {
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.6), rgba(255, 193, 7, 0.2));
}

.traffic-flow .flow-line.mixed::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffc107, transparent);
    animation: mixedFlow 1.5s linear infinite;
    animation-delay: var(--delay);
}

@keyframes mixedFlow {
    0% { top: -100%; }
    100% { top: 100%; }
}

.traffic-flow .flow-line.safe {
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.6));
}

.traffic-flow .flow-line.safe::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: safeFlowIDS 2s linear infinite;
    animation-delay: var(--delay);
}

@keyframes safeFlowIDS {
    0% { top: -100%; }
    100% { top: 100%; }
}

.traffic-flow.inbound .flow-line:nth-child(1) { left: 30%; }
.traffic-flow.inbound .flow-line:nth-child(2) { left: 50%; }
.traffic-flow.inbound .flow-line:nth-child(3) { left: 70%; }

.traffic-flow.safe .flow-line:nth-child(1) { left: 40%; }
.traffic-flow.safe .flow-line:nth-child(2) { left: 60%; }

/* IDS Core Zone */
.ids-core-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ids-monitor,
.ips-blocker {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ids-monitor:hover,
.ips-blocker:hover {
    border-color: var(--primary);
}

.ids-icon,
.ips-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ids-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.ips-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.ids-icon i,
.ips-icon i {
    font-size: 26px;
    color: #fff;
}

.ids-label,
.ips-label {
    margin-bottom: 12px;
}

.ids-label strong,
.ips-label strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.ids-label span,
.ips-label span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.ids-features,
.ips-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.ids-badge,
.ips-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.detection-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--primary);
}

.detection-arrow i {
    font-size: 24px;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

.detection-arrow span {
    font-size: 10px;
    font-weight: 600;
}

/* Block Indicator */
.block-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.block-indicator .block-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    animation: blockFlash 2s ease-in-out infinite;
}

.block-indicator .block-item:nth-child(2) {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.block-indicator .block-item:nth-child(2) i,
.block-indicator .block-item:nth-child(2) span {
    color: #3498db;
}

.block-indicator .block-item i {
    color: #ff5757;
    font-size: 14px;
}

.block-indicator .block-item span {
    font-size: 12px;
    font-weight: 600;
    color: #ff5757;
}

@keyframes blockFlash {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* IDS/IPS Compare Cards */
.ids-ips-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.compare-card {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 320px;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compare-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
}

.compare-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.compare-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-card.ids .compare-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.compare-card.ips .compare-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.compare-icon i {
    font-size: 28px;
    color: #fff;
}

.compare-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.compare-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 20px;
}

.compare-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.compare-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #4e5968;
    border-top: 1px solid #f2f4f6;
}

.compare-features li:first-child {
    border-top: none;
}

.compare-features li i {
    color: var(--primary);
    font-size: 12px;
}

.compare-plus {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8fafb 0%, #e5e8eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-plus i {
    font-size: 24px;
    color: var(--primary);
}

/* IDS/IPS Responsive */
@media (max-width: 992px) {
    .ids-core-zone {
        flex-direction: column;
    }

    .detection-arrow {
        transform: rotate(90deg);
    }

    .detection-arrow i {
        animation: arrowPulseVertical 1.5s ease-in-out infinite;
    }

    @keyframes arrowPulseVertical {
        0%, 100% { transform: translateY(0); opacity: 0.6; }
        50% { transform: translateY(5px); opacity: 1; }
    }
}

@media (max-width: 768px) {
    .ids-architecture {
        padding: 30px 20px;
    }

    .traffic-types,
    .protected-assets {
        gap: 10px;
    }

    .traffic-item,
    .asset-item {
        padding: 12px 16px;
        min-width: 75px;
    }

    .ids-ips-compare {
        flex-direction: column;
        gap: 20px;
    }

    .compare-plus {
        transform: rotate(90deg);
    }

    .compare-card {
        max-width: 100%;
    }
}

/* ==============================================
   SSL Diagram Section
============================================== */
.ssl-diagram-section {
    padding: 100px 0;
    background: #f8fafb;
}

.ssl-architecture {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 50px 30px;
}

/* SSL Zone */
.ssl-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: 150px;
}

.ssl-zone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.ssl-zone-label i {
    font-size: 14px;
}

.ssl-zone-label.safe {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

.ssl-device,
.ssl-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.device-icon,
.server-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.server-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.device-icon i,
.server-icon i {
    font-size: 36px;
    color: #fff;
}

.ssl-device span,
.ssl-server span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* SSL Handshake Zone */
.ssl-handshake-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    position: relative;
}

.ssl-handshake-zone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, var(--primary));
    opacity: 0.3;
    transform: translateY(-50%);
}

.handshake-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.handshake-step:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.handshake-step.secure {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.step-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-arrow.right {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.step-arrow.left {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.step-arrow.both {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}

.step-arrow i {
    font-size: 14px;
    color: #fff;
}

.step-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-label strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.step-label span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* SSL Benefits Grid */
.ssl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.ssl-benefit-card {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ssl-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.ssl-benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssl-benefit-card .benefit-icon i {
    font-size: 26px;
    color: #fff;
}

.ssl-benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.ssl-benefit-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
}

/* SSL Responsive */
@media (max-width: 992px) {
    .ssl-architecture {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .ssl-handshake-zone::before {
        display: none;
    }

    .ssl-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

@media (max-width: 768px) {
    .ssl-architecture {
        padding: 30px 20px;
    }

    .handshake-step {
        padding: 10px 12px;
    }

    .step-label strong {
        font-size: 12px;
    }

    .step-label span {
        font-size: 10px;
    }
}

/* ==============================================
   Webshell Diagram Section
============================================== */
.webshell-diagram-section {
    padding: 100px 0;
    background: #f8fafb;
}

.webshell-architecture {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 50px 40px;
}

/* Webshell Zone */
.ws-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: 180px;
}

.ws-zone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.ws-zone-label i {
    font-size: 14px;
}

.ws-zone-label.safe {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

/* WS Files */
.ws-files {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.ws-file.normal {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.ws-file.normal i {
    color: var(--primary);
    font-size: 20px;
}

.ws-file.infected {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.5);
    animation: infectedPulse 2s ease-in-out infinite;
}

@keyframes infectedPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 87, 87, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 87, 87, 0); }
}

.ws-file.infected i {
    color: #ff5757;
    font-size: 20px;
}

.ws-file.backup {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.ws-file.backup i {
    color: var(--primary);
    font-size: 24px;
}

.ws-file span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.infection-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ff5757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 1s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.infection-badge i {
    font-size: 12px;
    color: #fff;
}

/* WS Process Zone */
.ws-process-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    flex: 1;
}

.ws-process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
}

.ws-process-step:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.ws-process-step.alert {
    background: rgba(255, 87, 87, 0.1);
    border-color: rgba(255, 87, 87, 0.3);
}

.ws-process-step.restore {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.ws-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-step-icon.monitor {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.ws-step-icon.scan {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.ws-step-icon.alert {
    background: linear-gradient(135deg, #ff5757 0%, #e74c3c 100%);
}

.ws-step-icon.restore {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.ws-step-icon i {
    font-size: 20px;
    color: #fff;
}

.ws-step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ws-step-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.ws-step-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.ws-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

/* WS Backup Files */
.ws-backup-files {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ws-backup-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    padding: 8px 14px;
    border-radius: 100px;
}

.ws-backup-info i {
    color: var(--primary);
    font-size: 12px;
}

.ws-backup-info span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

/* WS Detection Methods */
.ws-detection-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.ws-method-card {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ws-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.ws-method-card .method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-method-card .method-icon i {
    font-size: 26px;
    color: #fff;
}

.ws-method-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.ws-method-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ws-method-card .method-stat {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

/* Webshell Responsive */
@media (max-width: 992px) {
    .webshell-architecture {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .ws-zone {
        width: 100%;
        max-width: 300px;
    }

    .ws-files {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ws-detection-methods {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

@media (max-width: 768px) {
    .webshell-architecture {
        padding: 30px 20px;
    }

    .ws-process-step {
        padding: 12px 16px;
    }

    .ws-step-icon {
        width: 40px;
        height: 40px;
    }

    .ws-step-icon i {
        font-size: 16px;
    }
}

/* ==============================================
   DB Encryption Obligation Section
============================================== */
.db-obligation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.db-obligation-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.db-obligation-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.db-obligation-section .section-title {
    color: #fff;
}

.db-obligation-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: 16px;
}

/* Obligation Diagram - Circular Layout */
.db-obligation-diagram {
    position: relative;
    max-width: 700px;
    height: 500px;
    margin: 0 auto 60px;
}

.obligation-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.4);
    z-index: 10;
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 212, 170, 0.4); }
    50% { box-shadow: 0 20px 80px rgba(0, 212, 170, 0.6), 0 0 0 20px rgba(0, 212, 170, 0.1); }
}

.center-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.center-icon i {
    font-size: 32px;
    color: #fff;
}

.obligation-center h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

/* Obligation Items - Circular Position */
.obligation-targets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.obligation-item {
    position: absolute;
    width: 150px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.obligation-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: scale(1.05);
}

.obligation-item:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.obligation-item:nth-child(2) { top: 100px; right: 20px; }
.obligation-item:nth-child(3) { bottom: 80px; right: 40px; }
.obligation-item:nth-child(4) { bottom: 80px; left: 40px; }
.obligation-item:nth-child(5) { top: 100px; left: 20px; }

.obligation-item::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.obligation-item:nth-child(1)::before { bottom: -30px; left: 50%; transform: translateX(-50%) rotate(90deg); }
.obligation-item:nth-child(2)::before { left: -50px; top: 50%; transform: translateY(-50%); }
.obligation-item:nth-child(3)::before { left: -40px; top: 50%; transform: translateY(-50%) rotate(-30deg); }
.obligation-item:nth-child(4)::before { right: -40px; top: 50%; transform: translateY(-50%) rotate(30deg); }
.obligation-item:nth-child(5)::before { right: -50px; top: 50%; transform: translateY(-50%); }

.item-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon i {
    font-size: 22px;
    color: var(--primary);
}

.item-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.item-content span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Obligation Legal Cards */
.obligation-legal-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.legal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-icon i {
    font-size: 26px;
    color: var(--primary);
}

.legal-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Obligation Warning */
.obligation-warning {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 16px;
    padding: 24px 30px;
}

.obligation-warning > i {
    font-size: 36px;
    color: #e74c3c;
    flex-shrink: 0;
}

.warning-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 6px;
}

.warning-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.warning-content .highlight {
    color: #e74c3c;
    font-weight: 700;
}

/* DB Obligation Responsive */
@media (max-width: 1200px) {
    .obligation-legal-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .db-obligation-diagram {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
    }

    .obligation-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }

    .obligation-targets {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
    }

    .obligation-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
    }

    .obligation-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .obligation-legal-cards {
        grid-template-columns: 1fr;
    }

    .obligation-targets {
        grid-template-columns: 1fr;
    }

    .obligation-warning {
        flex-direction: column;
        text-align: center;
    }
}

/* ==============================================
   Email Security (Anti-Spam) Diagram Section
============================================== */
.email-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.email-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.email-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.email-diagram-section .section-title {
    color: #fff;
}

.email-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.email-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.email-zone {
    width: 100%;
    text-align: center;
    padding: 30px;
}

.email-zone-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.email-zone-label i {
    font-size: 16px;
}

.email-sources {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.email-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 14px;
    min-width: 90px;
}

.email-item.normal {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.email-item.normal i {
    color: var(--primary);
    font-size: 24px;
}

.email-item.spam,
.email-item.phishing,
.email-item.malware {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.email-item.spam i,
.email-item.phishing i,
.email-item.malware i {
    color: #e74c3c;
    font-size: 24px;
}

.email-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Email Filter Zone */
.email-filter-zone {
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.filter-flow-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: flowPulse 2s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(5px); opacity: 1; }
}

.filter-flow-arrow i {
    font-size: 18px;
    color: var(--primary);
}

.email-filter-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 24px;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.email-filter-step:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.filter-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-icon.rbl {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.filter-icon.spf {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.filter-icon.content {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.filter-icon.sandbox {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.filter-icon i {
    font-size: 20px;
    color: #fff;
}

.filter-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.filter-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Email Result Zone */
.email-result-zone {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    flex-wrap: wrap;
}

.email-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 16px;
    min-width: 220px;
}

.email-result.blocked {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.email-result.delivered {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-result.blocked .result-icon {
    background: rgba(231, 76, 60, 0.2);
}

.email-result.blocked .result-icon i {
    font-size: 22px;
    color: #e74c3c;
}

.email-result.delivered .result-icon {
    background: rgba(0, 212, 170, 0.2);
}

.email-result.delivered .result-icon i {
    font-size: 22px;
    color: var(--primary);
}

.result-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.result-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.result-badge {
    padding: 6px 12px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #e74c3c;
}

.result-badge.safe {
    background: rgba(0, 212, 170, 0.2);
    color: var(--primary);
}

/* Email Filter Cards */
.email-filter-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.filter-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.filter-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.filter-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-card-icon i {
    font-size: 24px;
    color: var(--primary);
}

.filter-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.filter-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Email Diagram Responsive */
@media (max-width: 992px) {
    .email-filter-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .email-filter-cards {
        grid-template-columns: 1fr;
    }

    .email-result-zone {
        flex-direction: column;
        align-items: center;
    }

    .email-result {
        width: 100%;
        max-width: 280px;
    }
}

/* ==============================================
   Antivirus Diagram Section
============================================== */
.av-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.av-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.av-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.av-diagram-section .section-title {
    color: #fff;
}

.av-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.av-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.av-zone {
    width: 100%;
    text-align: center;
    padding: 30px;
}

.av-zone-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.av-zone-label.safe {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

.av-zone-label i {
    font-size: 16px;
}

.threat-sources,
.protected-assets {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.threat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 14px;
    min-width: 90px;
}

.threat-item i {
    color: #e74c3c;
    font-size: 24px;
}

.threat-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.protected-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 14px;
    min-width: 90px;
}

.protected-item i {
    color: var(--primary);
    font-size: 24px;
}

.protected-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* AV Protection Layers */
.av-protection-layers {
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.protection-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: flowPulse 2s ease-in-out infinite;
}

.protection-arrow i {
    font-size: 18px;
    color: var(--primary);
}

.av-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 24px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
}

.av-layer:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.layer-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.layer-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon.signature {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.layer-icon.behavior {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.layer-icon.ai {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.layer-icon.sandbox {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.layer-icon i {
    font-size: 20px;
    color: #fff;
}

.layer-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.layer-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* AV Feature Cards */
.av-feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.av-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.av-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.av-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-card-icon i {
    font-size: 24px;
    color: var(--primary);
}

.av-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.av-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* AV Diagram Responsive */
@media (max-width: 992px) {
    .av-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .av-feature-cards {
        grid-template-columns: 1fr;
    }

    .threat-sources,
    .protected-assets {
        gap: 10px;
    }

    .threat-item,
    .protected-item {
        padding: 12px 16px;
        min-width: 75px;
    }
}

/* ===== DDoS Clean Zone Diagram ===== */
.ddos-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.ddos-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ddos-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ddos-diagram-section .section-title {
    color: #fff;
}

.ddos-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.ddos-architecture {
    max-width: 900px;
    margin: 0 auto 60px;
}

.ddos-zone.attacker {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.ddos-zone-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ddos-zone-label i {
    font-size: 24px;
    color: #e74c3c;
}

.ddos-zone-label span {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
}

.attack-sources {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.attack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    min-width: 100px;
}

.attack-item i {
    font-size: 24px;
    color: #e74c3c;
}

.attack-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.ddos-filter-zone {
    text-align: center;
}

.ddos-filter-zone .filter-flow-arrow {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.ddos-filter-zone .filter-flow-arrow i {
    font-size: 28px;
    color: var(--primary);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}

.ddos-cleanzone-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.cleanzone-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cleanzone-header i {
    font-size: 32px;
    color: var(--primary);
}

.cleanzone-header h4 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.cleanzone-capacity {
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.cleanzone-layers {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.layer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon i {
    font-size: 20px;
    color: #fff;
}

.layer-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.layer-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cleanzone-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cleanzone-stats .stat-item {
    text-align: center;
}

.cleanzone-stats .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.cleanzone-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ddos-result-zone {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.ddos-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    border-radius: 16px;
    min-width: 220px;
}

.ddos-result.blocked {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.ddos-result.clean {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.ddos-result .result-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ddos-result.blocked .result-icon {
    background: rgba(231, 76, 60, 0.2);
}

.ddos-result.blocked .result-icon i {
    font-size: 22px;
    color: #e74c3c;
}

.ddos-result.clean .result-icon {
    background: rgba(0, 212, 170, 0.2);
}

.ddos-result.clean .result-icon i {
    font-size: 22px;
    color: var(--primary);
}

.ddos-result .result-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ddos-result .result-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ddos-result .result-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
}

.ddos-result .result-badge.blocked {
    background: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.ddos-result .result-badge.clean {
    background: rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

.ddos-attack-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.attack-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.attack-type-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.attack-type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attack-type-icon i {
    font-size: 24px;
    color: #e74c3c;
}

.attack-type-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.attack-type-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .ddos-attack-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .cleanzone-layers {
        flex-direction: column;
        align-items: center;
    }

    .layer-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ddos-attack-types {
        grid-template-columns: 1fr;
    }

    .attack-sources {
        gap: 10px;
    }

    .attack-item {
        min-width: 80px;
        padding: 12px 16px;
    }

    .ddos-result-zone {
        flex-direction: column;
        gap: 16px;
    }

    .ddos-result {
        min-width: auto;
    }

    .cleanzone-stats {
        gap: 20px;
    }

    .cleanzone-stats .stat-value {
        font-size: 22px;
    }
}

/* ===== Pentest Process Diagram ===== */
.pentest-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.pentest-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pentest-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pentest-diagram-section .section-title {
    color: #fff;
}

.pentest-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.pentest-process {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.pentest-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.pentest-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 2px;
}

.pentest-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.pentest-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.pentest-step-icon i {
    font-size: 28px;
    color: #fff;
}

.pentest-step-number {
    position: absolute;
    top: -10px;
    right: calc(50% - 50px);
    background: #191f28;
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--primary);
}

.pentest-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pentest-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 140px;
}

.pentest-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pentest-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pentest-method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.pentest-method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pentest-method-icon i {
    font-size: 28px;
    color: var(--primary);
}

.pentest-method-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.pentest-method-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pentest-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pentest-timeline {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .pentest-timeline::before {
        display: none;
    }

    .pentest-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .pentest-step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .pentest-step-icon i {
        font-size: 22px;
    }

    .pentest-step-number {
        top: -5px;
        right: auto;
        left: 45px;
    }

    .pentest-step p {
        max-width: none;
    }
}

/* ===== Vulnerability Scan Diagram ===== */
.vuln-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.vuln-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.vuln-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.vuln-diagram-section .section-title {
    color: #fff;
}

.vuln-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.vuln-scan-flow {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vuln-scan-step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 30px;
    transition: all 0.3s ease;
}

.vuln-scan-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
}

.vuln-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.vuln-step-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vuln-step-icon i {
    font-size: 24px;
    color: var(--primary);
}

.vuln-step-content {
    flex: 1;
}

.vuln-step-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.vuln-step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Note: .vuln-categories is defined in vulnerability diagram section below */

.vuln-category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.vuln-category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.vuln-category-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuln-category-icon i {
    font-size: 24px;
    color: #f39c12;
}

.vuln-category-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.vuln-category-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .vuln-scan-step {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ===== Incident Response Diagram ===== */
.incident-diagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
}

.incident-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.incident-diagram-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.incident-diagram-section .section-title {
    color: #fff;
}

.incident-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.incident-response-flow {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.incident-phases {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.incident-phases::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 33%, var(--primary) 66%, #3498db 100%);
    border-radius: 2px;
}

.incident-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.incident-phase-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.incident-phase.detect .incident-phase-icon {
    background: rgba(231, 76, 60, 0.15);
    border: 3px solid #e74c3c;
}

.incident-phase.analyze .incident-phase-icon {
    background: rgba(243, 156, 18, 0.15);
    border: 3px solid #f39c12;
}

.incident-phase.respond .incident-phase-icon {
    background: rgba(0, 212, 170, 0.15);
    border: 3px solid var(--primary);
}

.incident-phase.recover .incident-phase-icon {
    background: rgba(52, 152, 219, 0.15);
    border: 3px solid #3498db;
}

.incident-phase.detect .incident-phase-icon i { color: #e74c3c; }
.incident-phase.analyze .incident-phase-icon i { color: #f39c12; }
.incident-phase.respond .incident-phase-icon i { color: var(--primary); }
.incident-phase.recover .incident-phase-icon i { color: #3498db; }

.incident-phase-icon i {
    font-size: 36px;
}

.incident-phase-badge {
    position: absolute;
    top: -5px;
    right: calc(50% - 60px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.incident-phase.detect .incident-phase-badge { background: #e74c3c; }
.incident-phase.analyze .incident-phase-badge { background: #f39c12; }
.incident-phase.respond .incident-phase-badge { background: var(--primary); }
.incident-phase.recover .incident-phase-badge { background: #3498db; }

.incident-phase h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.incident-phase p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 160px;
}

.incident-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.incident-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.incident-service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.incident-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incident-service-icon i {
    font-size: 26px;
    color: #e74c3c;
}

.incident-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.incident-service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .incident-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .incident-phases {
        flex-direction: column;
        gap: 30px;
    }

    .incident-phases::before {
        display: none;
    }

    .incident-phase {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .incident-phase-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .incident-phase-icon i {
        font-size: 26px;
    }

    .incident-phase p {
        max-width: none;
    }

    .incident-phase-badge {
        top: -5px;
        right: auto;
        left: 55px;
    }
}

/* ===== SSL Application Process ===== */
.ssl-process-section {
    padding: 100px 0;
    background: #f8fafb;
}

.ssl-process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ssl-application-flow {
    max-width: 900px;
    margin: 0 auto;
}

.ssl-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ssl-step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.ssl-step:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.ssl-step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.ssl-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ssl-step-icon i {
    font-size: 26px;
    color: var(--primary);
}

.ssl-step-content {
    flex: 1;
}

.ssl-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.ssl-step-content p {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
}

.ssl-step-duration {
    background: #f8fafb;
    border: 1px solid #e5e8eb;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    flex-shrink: 0;
}

.ssl-step-duration span {
    display: block;
    font-size: 11px;
    color: #8b95a1;
    margin-bottom: 4px;
}

.ssl-step-duration strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 768px) {
    .ssl-step {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 24px;
    }

    .ssl-step-duration {
        width: 100%;
        margin-top: 8px;
    }
}

/* ================================================
   DIAGRAM SECTIONS - All Security Pages
   ================================================ */

/* ===== Pentest Methodology Diagram ===== */
.pentest-diagram-section {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    padding: 100px 0;
}

.pentest-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pentest-diagram-section .section-title {
    color: #fff;
}

.pentest-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-top: 16px;
}

.pentest-methodology {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pentest-phase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 180px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pentest-phase:hover,
.pentest-phase.active {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pentest-phase .phase-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
}

.pentest-phase .phase-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto 16px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pentest-phase .phase-icon i {
    font-size: 24px;
    color: var(--primary);
}

.pentest-phase .phase-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pentest-phase .phase-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.pentest-phase .phase-details {
    margin-top: 16px;
    text-align: left;
    display: none;
}

.pentest-phase:hover .phase-details,
.pentest-phase.active .phase-details {
    display: block;
}

.pentest-phase .phase-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pentest-phase .phase-details li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: var(--primary);
    font-size: 18px;
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pentest-attack-types {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.attack-types-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.attack-types-title i {
    color: var(--primary);
    margin-right: 10px;
}

.attack-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.attack-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.attack-type-card:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.attack-type-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attack-type-icon i {
    font-size: 20px;
    color: var(--primary);
}

.attack-type-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.attack-type-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Vulnerability Scan Flow Diagram ===== */
.vuln-diagram-section {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    padding: 100px 0;
}

.vuln-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.vuln-diagram-section .section-title {
    color: #fff;
}

.vuln-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-top: 16px;
}

.vuln-flow-diagram {
    max-width: 900px;
    margin: 0 auto 60px;
}

.vuln-flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vuln-flow-row.center {
    justify-content: flex-end;
    padding-right: 100px;
}

.vuln-flow-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: 160px;
    text-align: center;
    transition: all 0.3s ease;
}

.vuln-flow-item:hover,
.vuln-flow-item.active {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--primary);
}

.vuln-flow-item.start .flow-icon,
.vuln-flow-item.end .flow-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.vuln-flow-item.start .flow-icon i,
.vuln-flow-item.end .flow-icon i {
    color: #fff;
}

.vuln-flow-item .flow-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuln-flow-item .flow-icon i {
    font-size: 20px;
    color: var(--primary);
}

.vuln-flow-item .flow-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.vuln-flow-item .flow-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.flow-connector {
    color: var(--primary);
    font-size: 18px;
    animation: arrowPulse 1.5s infinite;
}

.flow-down-connector {
    color: var(--primary);
    font-size: 24px;
    animation: arrowPulse 1.5s infinite;
}

.vuln-standards {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.standards-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.standards-title i {
    color: var(--primary);
    margin-right: 10px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.standard-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.standard-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard-icon i {
    font-size: 20px;
    color: var(--primary);
}

.standard-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.standard-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.vuln-categories {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.categories-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.categories-title i {
    color: var(--primary);
    margin-right: 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    justify-content: center;
}

.category-item .category-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-item .category-icon i {
    font-size: 16px;
    color: var(--primary);
}

.category-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* ===== Incident Response Flow ===== */
.incident-diagram-section {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    padding: 100px 0;
}

.incident-diagram-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.incident-diagram-section .section-title {
    color: #fff;
}

.incident-diagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-top: 16px;
}

.incident-response-flow {
    max-width: 600px;
    margin: 0 auto 60px;
}

.response-phase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.response-phase:hover,
.response-phase.active {
    background: rgba(0, 212, 170, 0.08);
    border-color: var(--primary);
}

.response-phase.alert {
    border-left: 4px solid #e74c3c;
}

.response-phase.contain {
    border-left: 4px solid #f39c12;
}

.response-phase.collect {
    border-left: 4px solid #3498db;
}

.response-phase.analyze {
    border-left: 4px solid var(--primary);
}

.response-phase.recover {
    border-left: 4px solid #9b59b6;
}

.response-phase.prevent {
    border-left: 4px solid #2ecc71;
}

.response-phase .phase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
}

.response-phase .phase-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.response-phase .phase-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-phase .phase-icon i {
    font-size: 22px;
    color: var(--primary);
}

.response-phase .phase-body {
    flex: 1;
}

.response-phase .phase-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.response-phase .phase-body > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.response-phase .phase-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.response-phase .phase-actions li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
}

.response-phase .phase-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.response-phase .phase-status.critical {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.response-phase .phase-status.warning {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.response-phase .phase-status.info {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.response-phase .phase-status.success {
    background: rgba(0, 212, 170, 0.2);
    color: var(--primary);
}

.response-phase .phase-status.complete {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.response-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.response-connector .connector-line {
    width: 2px;
    height: 20px;
    background: rgba(0, 212, 170, 0.3);
}

.response-connector .connector-arrow {
    color: var(--primary);
    font-size: 16px;
    animation: arrowPulse 1.5s infinite;
}

.incident-attack-types {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.incident-attack-types .attack-types-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.incident-attack-types .attack-types-title i {
    color: #e74c3c;
    margin-right: 10px;
}

.attack-types-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.attack-type {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.attack-type .attack-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attack-type .attack-icon.critical {
    background: rgba(231, 76, 60, 0.15);
}

.attack-type .attack-icon.critical i {
    color: #e74c3c;
}

.attack-type .attack-icon.warning {
    background: rgba(243, 156, 18, 0.15);
}

.attack-type .attack-icon.warning i {
    color: #f39c12;
}

.attack-type .attack-icon.danger {
    background: rgba(155, 89, 182, 0.15);
}

.attack-type .attack-icon.danger i {
    color: #9b59b6;
}

.attack-type .attack-icon.info {
    background: rgba(52, 152, 219, 0.15);
}

.attack-type .attack-icon.info i {
    color: #3498db;
}

.attack-type .attack-icon i {
    font-size: 20px;
}

.attack-type .attack-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.attack-type .attack-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SSL Application Process ===== */
.ssl-process-section {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    padding: 100px 0;
}

.ssl-process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ssl-process-section .section-title {
    color: #fff;
}

.ssl-process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-top: 16px;
}

.ssl-apply-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.apply-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 180px;
    position: relative;
    transition: all 0.3s ease;
}

.apply-step:hover,
.apply-step.active {
    background: rgba(0, 212, 170, 0.08);
    border-color: var(--primary);
}

.apply-step.success {
    background: rgba(46, 204, 113, 0.08);
    border-color: #2ecc71;
}

.apply-step .step-header {
    text-align: center;
    margin-bottom: 16px;
}

.apply-step .step-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 212, 170, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.apply-step .step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-step .step-icon i {
    font-size: 22px;
    color: var(--primary);
}

.apply-step.success .step-icon {
    background: rgba(46, 204, 113, 0.15);
}

.apply-step.success .step-icon i {
    color: #2ecc71;
}

.apply-step .step-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
}

.apply-step .step-body > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 12px;
}

.apply-step .step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-step .step-details li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-step .step-details li i {
    color: var(--primary);
    font-size: 10px;
}

.apply-step .step-time {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.apply-step .step-time i {
    margin-right: 4px;
}

.apply-step.success .step-time {
    background: #2ecc71;
}

.apply-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    margin-top: 60px;
}

.apply-connector .connector-arrow {
    color: var(--primary);
    font-size: 18px;
    animation: arrowPulse 1.5s infinite;
}

.ssl-auth-methods {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.auth-methods-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.auth-methods-title i {
    color: var(--primary);
    margin-right: 10px;
}

.auth-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.auth-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.auth-method .method-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-method .method-icon i {
    font-size: 20px;
    color: var(--primary);
}

.auth-method .method-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.auth-method .method-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    line-height: 1.5;
}

.auth-method .method-time {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.ssl-doc-requirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.doc-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.doc-title i {
    color: var(--primary);
    margin-right: 10px;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.doc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.doc-card .doc-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
}

.doc-card.dv .doc-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.doc-card.ov .doc-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.doc-card.ev .doc-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.doc-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 16px;
}

.doc-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: left;
}

.doc-card ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-card ul li i {
    color: var(--primary);
}

.doc-card .doc-time {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(0, 212, 170, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ===== Diagram Responsive Styles ===== */
@media (max-width: 1200px) {
    .attack-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pentest-methodology {
        gap: 20px;
    }

    .pentest-phase {
        width: calc(33.33% - 20px);
    }

    .phase-arrow {
        display: none;
    }

    .attack-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .standards-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vuln-flow-diagram {
        display: none;
    }

    .attack-types-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .ssl-apply-flow {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .apply-step {
        width: 280px;
    }

    .apply-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .auth-methods-grid,
    .doc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pentest-diagram-section,
    .vuln-diagram-section,
    .incident-diagram-section,
    .ssl-process-section {
        padding: 60px 0;
    }

    .pentest-phase {
        width: calc(50% - 20px);
    }

    .attack-types-grid,
    .standards-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .response-phase {
        flex-wrap: wrap;
    }

    .response-phase .phase-header {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 12px;
    }

    .response-phase .phase-status {
        position: static;
        margin-left: auto;
    }

    .attack-types-list {
        grid-template-columns: 1fr;
    }

    .apply-step {
        width: 100%;
    }

    .pentest-attack-types,
    .vuln-standards,
    .vuln-categories,
    .incident-attack-types,
    .ssl-auth-methods,
    .ssl-doc-requirements {
        padding: 24px;
    }
}
