/* ============================================
   CAPITAL ALLIANCE - SECURITY PAGE STYLES
   ============================================ */

/* ============================================
   HERO SECTION (SECURITY SPECIFIC)
   ============================================ */

.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-color) 100%);
    text-align: center;
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-muted) 100%);
    border-radius: 24px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    font-size: 3.5rem;
    color: var(--text-on-primary);
}

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   SECURITY TOPICS SECTION
   ============================================ */

.security-topics {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.topic-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--card-hover-bg);
}

.topic-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    color: var(--text-on-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.topic-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.topic-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.topic-content p {
    margin-bottom: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .topics-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 0 80px;
    }
}
