/* ==============================================
   Firewall Page 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 ===== */
.firewall-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;
}

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

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

.firewall-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;
}

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

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

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

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

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

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

.firewall-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);
}

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

.firewall-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;
}

.firewall-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 - Firewall Illustration */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.firewall-illustration {
    position: relative;
    width: 420px;
    height: 420px;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.shield-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(0, 212, 170, 0.4),
        0 0 100px rgba(0, 212, 170, 0.2);
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-inner i {
    font-size: 50px;
    color: #fff;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(0, 212, 170, 0.4), 0 0 100px rgba(0, 212, 170, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(0, 212, 170, 0.5), 0 0 120px rgba(0, 212, 170, 0.3);
    }
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 170, 0.2);
    transform: translate(-50%, -50%);
}

.shield-ring.ring-1 {
    width: 180px;
    height: 180px;
    animation: ringExpand 3s ease-out infinite;
}

.shield-ring.ring-2 {
    width: 260px;
    height: 260px;
    animation: ringExpand 3s ease-out infinite 1s;
}

.shield-ring.ring-3 {
    width: 340px;
    height: 340px;
    animation: ringExpand 3s ease-out infinite 2s;
}

@keyframes ringExpand {
    0% {
        opacity: 0.6;
        border-color: rgba(0, 212, 170, 0.4);
    }
    100% {
        opacity: 0;
        border-color: rgba(0, 212, 170, 0);
    }
}

/* Threat Particles */
.threat-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle i {
    font-size: 18px;
    color: #e74c3c;
}

.particle-1 { top: 5%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 15%; right: 5%; animation-delay: 1s; }
.particle-3 { top: 50%; left: 0; animation-delay: 2s; }
.particle-4 { top: 80%; left: 15%; animation-delay: 3s; }
.particle-5 { top: 70%; right: 10%; animation-delay: 4s; }
.particle-6 { top: 30%; right: 15%; animation-delay: 5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        opacity: 0.4;
    }
    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

/* Blocked Labels */
.blocked-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.blocked-label {
    position: absolute;
    padding: 6px 14px;
    background: rgba(231, 76, 60, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
    animation: blockedPop 4s ease-in-out infinite;
}

.blocked-label.label-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.blocked-label.label-2 {
    top: 60%;
    right: 0;
    animation-delay: 1.5s;
}

.blocked-label.label-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes blockedPop {
    0%, 20%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    25%, 75% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* ===== Stats Section ===== */
.firewall-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);
}

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

.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;
}

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

.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 ===== */
.firewall-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

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

.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: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

.firewall-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;
}

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

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

.firewall-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;
    position: relative;
    z-index: 1;
}

.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-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;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: auto;
}

.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);
    position: relative;
    z-index: 1;
}

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

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

/* ===== Comparison Table Section ===== */
.firewall-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;
}

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

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

.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 ===== */
.firewall-review-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

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

.firewall-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;
}

.firewall-review-section .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;
}

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

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

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

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

.firewall-review-section .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);
}

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

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

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

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

/* ===== Process Section ===== */
.firewall-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-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 ===== */
.firewall-faq-section {
    padding: 100px 0;
    background: #f8fafb;
}

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

.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 ===== */
.firewall-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-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);
}

/* ===== 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);
    }

    .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) {
    .firewall-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

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

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

    .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;
    }
}

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

.firewall-diagram-section .section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 16px;
}

/* Network Diagram Container */
.firewall-network-diagram {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.diagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.diagram-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.diagram-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Zone Labels */
.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;
}

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

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

/* Internet Zone */
.internet-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.threat-sources {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.threat-item:hover {
    transform: translateY(-3px);
    border-color: #ff5757;
}

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

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

.threat-source {
    background: rgba(255, 87, 87, 0.1);
    border: 2px solid rgba(255, 87, 87, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    width: 120px;
    transition: all 0.3s ease;
}

.threat-source .threat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(255, 87, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.threat-source .threat-icon i {
    font-size: 22px;
    color: #ff5757;
}

.threat-source .threat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Threat Traffic Zone */
.threat-traffic-zone {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
}

.threat-line {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 87, 87, 0.6), rgba(255, 87, 87, 0.2));
    border-radius: 2px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.threat-traffic-zone .threat-line:nth-child(1) { left: 20%; }
.threat-traffic-zone .threat-line:nth-child(2) { left: 40%; }
.threat-traffic-zone .threat-line:nth-child(3) { left: 60%; }
.threat-traffic-zone .threat-line:nth-child(4) { left: 80%; }

/* Firewall Core Zone */
.firewall-core-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    position: relative;
    z-index: 3;
}

.firewall-core {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 24px;
    padding: 30px 60px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 212, 170, 0.4),
        0 0 100px rgba(0, 212, 170, 0.2);
    position: relative;
}

.firewall-core::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), #00B4D8, var(--primary));
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.firewall-core .firewall-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firewall-core .firewall-icon i {
    font-size: 36px;
    color: #fff;
}

.firewall-core .firewall-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.firewall-core .firewall-label strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.firewall-core .firewall-label span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.firewall-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fw-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Blocked Indicator */
.blocked-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.blocked-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: flashBlock 2s ease-in-out infinite;
}

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

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

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

/* Safe Traffic Zone */
.safe-traffic-zone {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
}

.safe-line {
    position: absolute;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.6));
    border-radius: 2px;
    overflow: hidden;
}

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

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

.safe-traffic-zone .safe-line:nth-child(1) { left: 25%; }
.safe-traffic-zone .safe-line:nth-child(2) { left: 50%; }
.safe-traffic-zone .safe-line:nth-child(3) { left: 75%; }

/* Internal Zone */
.internal-zone {
    background: rgba(0, 212, 170, 0.05);
    border: 2px dashed rgba(0, 212, 170, 0.3);
    border-radius: 24px;
    padding: 30px 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.protected-servers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.server-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;
}

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

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

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

.firewall-box {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 24px;
    padding: 40px 80px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 212, 170, 0.4),
        0 0 100px rgba(0, 212, 170, 0.2);
    position: relative;
}

.firewall-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), #00B4D8, var(--primary));
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.firewall-icon-main {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.firewall-icon-main i {
    font-size: 48px;
    color: #fff;
}

.firewall-icon-main::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: shieldPulse 2s ease-in-out infinite;
}

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

.firewall-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.firewall-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.firewall-features-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fw-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.fw-feature i {
    font-size: 14px;
}

/* Blocked Indicator */
.blocked-indicator {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.blocked-tag {
    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: flashBlock 2s ease-in-out infinite;
}

.blocked-tag i {
    color: #ff5757;
    font-size: 14px;
}

.blocked-tag span {
    font-size: 12px;
    font-weight: 700;
    color: #ff5757;
    letter-spacing: 1px;
}

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

/* Safe Traffic Lines */
.safe-lines-container {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 400px;
}

.safe-line {
    position: absolute;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.6));
    border-radius: 2px;
    overflow: hidden;
}

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

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

.safe-line:nth-child(1) { left: 25%; }
.safe-line:nth-child(2) { left: 50%; animation-delay: 0.5s; }
.safe-line:nth-child(3) { left: 75%; animation-delay: 0.25s; }

/* Internal Network Zone */
.internal-zone {
    background: rgba(0, 212, 170, 0.05);
    border: 2px dashed rgba(0, 212, 170, 0.3);
    border-radius: 24px;
    padding: 30px 50px;
    position: relative;
    z-index: 2;
}

.zone-title {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a2332;
    padding: 6px 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.protected-servers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.server-box {
    text-align: center;
}

.server-box .server-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.server-box:hover .server-icon {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.server-box .server-icon i {
    font-size: 30px;
    color: var(--primary);
}

.server-box .server-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.server-box .server-status {
    font-size: 11px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
}

.server-box .server-status i {
    font-size: 8px;
}

/* Firewall Types Grid */
.firewall-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.fw-type-card,
.firewall-type-card {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.fw-type-card:hover,
.firewall-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
}

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

.fw-type-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;
}

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

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

.fw-type-card h4,
.firewall-type-card h4,
.firewall-type-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

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

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

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

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

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

.firewall-type-card .type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .firewall-types-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }

    .internet-zone {
        flex-wrap: wrap;
    }

    .firewall-box {
        padding: 30px 40px;
    }

    .protected-servers {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .firewall-network-diagram {
        padding: 40px 20px;
    }

    .threat-source {
        width: 100px;
        padding: 16px;
    }

    .firewall-features-row {
        flex-direction: column;
        align-items: center;
    }

    .blocked-indicator {
        flex-wrap: wrap;
        gap: 12px;
    }
}
