/* ===================================
   SystemBank - Custom Styles
   Brand: Digital Trust
   =================================== */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --color-system-navy: #0B2A4A;
    --color-verify-teal: #17BEBB;
    --color-link-blue: #2563EB;
    --color-text-dark: #0F172A;
    --color-muted-text: #64748B;
    --color-surface: #F1F5F9;
    --color-white: #FFFFFF;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headline: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --border-radius: 14px;
    --border-radius-sm: 10px;
    --border-radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(11, 42, 74, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(11, 42, 74, 0.08), 0 2px 4px -1px rgba(11, 42, 74, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(11, 42, 74, 0.08), 0 4px 6px -2px rgba(11, 42, 74, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(11, 42, 74, 0.08), 0 10px 10px -5px rgba(11, 42, 74, 0.04);
}

/* === Base Styles === */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-system-navy);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* === Navigation === */
.navbar {
    background-color: var(--color-system-navy);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white) !important;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1.4rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-verify-teal) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    color: var(--color-white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #14a8a4, #129b97);
    color: var(--color-white);
}

.btn-outline-custom {
    border: 2px solid var(--color-system-navy);
    color: var(--color-system-navy);
    background: transparent;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--color-system-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === Hero Section === */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(23, 190, 187, 0.03) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-system-navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--color-verify-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-muted-text);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas {
    margin-bottom: 2rem;
}

.hero-stats {
    padding-top: 2rem;
    border-top: 1px solid rgba(11, 42, 74, 0.1);
}

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

.stat-number {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-system-navy);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-surface) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-icon {
    font-size: 12rem;
    color: var(--color-verify-teal);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.visual-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(11, 42, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 42, 74, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* === Features Section === */
.features-section {
    padding: 80px 0;
    background: var(--color-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-text);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-verify-teal);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--color-white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin: 0;
}

/* === Benefits Section === */
.benefits-section {
    padding: 80px 0;
    background: var(--color-surface);
}

.benefit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: var(--color-verify-teal);
    opacity: 0.15;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-verify-teal);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-system-navy);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--color-muted-text);
    margin: 0;
    font-size: 0.9375rem;
}

/* === Users Section === */
.users-section {
    padding: 80px 0;
    background: var(--color-white);
}

.user-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.user-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-link-blue);
}

.user-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-link-blue), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
}

.user-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.75rem;
}

.user-description {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin: 0;
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: var(--color-white);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-system-navy) 0%, #0a1f36 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* === Contact Section === */
.contact-section {
    padding: 80px 0;
    background: var(--color-surface);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-verify-teal);
    width: 32px;
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid rgba(11, 42, 74, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-verify-teal);
    box-shadow: 0 0 0 3px rgba(23, 190, 187, 0.1);
    outline: none;
}

/* === Footer === */
.footer {
    background: var(--color-system-navy);
    color: rgba(255, 255, 255, 0.85);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-verify-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-verify-teal);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* === Responsive Styles === */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-ctas .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-ctas .btn:last-child {
        margin-bottom: 0;
    }

    .visual-icon {
        font-size: 8rem;
    }

    .benefit-visual {
        font-size: 10rem;
    }

    .features-section,
    .benefits-section,
    .users-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 3rem 2rem;
    }
}

/* === Smooth Scroll === */
html {
    scroll-behavior: smooth;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   ADDITIONAL PAGES STYLES
   =================================== */

/* === Dropdown Menu === */
.dropdown-menu {
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--color-text-dark);
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--color-surface);
    color: var(--color-verify-teal);
}

.dropdown-item.active {
    background-color: var(--color-verify-teal);
    color: var(--color-white);
}

/* === Page Header === */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted-text);
}

.breadcrumb-custom a {
    color: var(--color-link-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--color-verify-teal);
}

.breadcrumb-custom i {
    font-size: 0.75rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-system-navy);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-muted-text);
    margin: 0;
}

/* === Content Section === */
.content-section {
    background: var(--color-white);
}

/* === Search Box === */
.search-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.search-box .input-group-text {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.15);
    border-right: none;
    color: var(--color-muted-text);
}

.search-box .form-control {
    border: 1px solid rgba(11, 42, 74, 0.15);
    border-left: none;
    border-right: none;
}

/* === Normas Styles === */
.normas-section {
    margin-bottom: 3rem;
}

.normas-section-header {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.normas-section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.normas-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.normas-section-description {
    font-size: 1rem;
    color: var(--color-muted-text);
    margin: 0;
}

.normas-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.norma-item-placeholder {
    background: var(--color-surface);
    border: 2px dashed rgba(11, 42, 74, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-muted-text);
}

.norma-item-placeholder i {
    font-size: 3rem;
    color: var(--color-verify-teal);
    margin-bottom: 1rem;
    display: block;
}

.norma-item-placeholder p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--color-muted-text);
}

.norma-item {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.norma-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-verify-teal);
}

.norma-badge {
    background: linear-gradient(135deg, var(--color-link-blue), #1e40af);
    color: var(--color-white);
    padding: 0.375rem 0.875rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.norma-content {
    flex: 1;
}

.norma-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.norma-description {
    color: var(--color-muted-text);
    margin-bottom: 0.75rem;
}

.norma-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-muted-text);
}

.norma-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.norma-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* === Ouvidora Styles === */
.info-card {
    background: var(--color-surface);
    border-left: 4px solid var(--color-verify-teal);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.info-content h3 {
    color: var(--color-system-navy);
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.type-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-verify-teal);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--color-verify-teal);
}

.type-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.75rem;
}

.type-card p {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin: 0;
}

.ouvidora-form-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.ouvidora-form-card h3 {
    color: var(--color-system-navy);
}

.stats-box {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.stats-number {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-verify-teal);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--color-muted-text);
    font-size: 0.875rem;
    font-weight: 500;
}

/* === FAQ Styles === */
.category-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-link-blue);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-link-blue), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
}

.category-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--color-muted-text);
    font-size: 0.875rem;
    margin: 0;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.accordion-item {
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 600;
    color: var(--color-system-navy);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-surface);
    color: var(--color-verify-teal);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(23, 190, 187, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--color-text-dark);
}

/* === Knowledge Base Styles === */
.kb-topic-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.kb-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-verify-teal);
}

.kb-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-verify-teal), #14a8a4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
}

.kb-topic-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.kb-topic-card p {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.kb-count {
    display: inline-block;
    color: var(--color-verify-teal);
    font-size: 0.875rem;
    font-weight: 600;
}

.kb-section {
    margin-bottom: 3rem;
}

.kb-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.kb-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kb-article {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.kb-article:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-verify-teal);
    transform: translateX(4px);
}

.kb-article.featured {
    border-color: var(--color-verify-teal);
    background: linear-gradient(to right, rgba(23, 190, 187, 0.03), var(--color-white));
}

.kb-article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-verify-teal);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.kb-article-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-verify-teal);
}

.kb-article-content {
    flex: 1;
}

.kb-article-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.kb-article-content p {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.kb-article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8125rem;
    color: var(--color-muted-text);
}

.kb-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* === Video Card === */
.video-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 42, 74, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.video-thumbnail {
    background: linear-gradient(135deg, var(--color-system-navy), #0a1f36);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 4rem;
    color: var(--color-verify-teal);
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.video-content {
    padding: 1.5rem;
}

.video-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-system-navy);
    margin-bottom: 0.5rem;
}

.video-content p {
    color: var(--color-muted-text);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.video-views {
    color: var(--color-muted-text);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* === Help CTA === */
.help-cta {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
}

.help-cta h3 {
    font-size: 2rem;
    color: var(--color-system-navy);
    margin-bottom: 1rem;
}

.help-cta p {
    color: var(--color-muted-text);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* === Pagination === */
.pagination .page-link {
    color: var(--color-system-navy);
    border: 1px solid rgba(11, 42, 74, 0.15);
    padding: 0.625rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: var(--color-surface);
    border-color: var(--color-verify-teal);
    color: var(--color-verify-teal);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-verify-teal);
    border-color: var(--color-verify-teal);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--color-surface);
    border-color: rgba(11, 42, 74, 0.1);
}

/* === Responsive for Additional Pages === */
@media (max-width: 767.98px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .norma-item {
        flex-direction: column;
    }

    .norma-actions {
        flex-direction: row;
        width: 100%;
    }

    .norma-actions .btn {
        flex: 1;
    }

    .info-card {
        flex-direction: column;
    }

    .help-cta h3 {
        font-size: 1.5rem;
    }

    .normas-section-header {
        padding: 1.5rem;
    }

    .normas-section-header .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .normas-section-title {
        font-size: 1.5rem;
    }
}
