﻿:root {
    --bg-dark: #f5f7fa;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --primary-accent: #2563eb;
    /* Professional Blue */
    --secondary-accent: #3b82f6;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}



.app-container {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.snap-container {
    scroll-padding-top: 96px;
}

.snap-section {
    min-height: 100vh;
    scroll-snap-align: start;
    padding: 6.5rem 2rem 3rem;
}

.details-section {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 45%),
        radial-gradient(circle at 20% 10%, rgba(99, 102, 241, 0.08), transparent 40%);
}

.section-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-lead {
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.6;
}

.details-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(12px);
}

.details-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    font-size: 1rem;
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.details-nav {
    display: flex;
    gap: 0.5rem;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 0.35rem;
}

.nav-link {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-link.active {
    background: white;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* Glass Utility */
.glass-panel {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    scroll-snap-align: start;
    text-align: center;
    transition: all 0.5s ease;
    padding: 6rem 2rem 3rem;
}

.hero-section.minimized {
    min-height: auto;
    margin-bottom: 2rem;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--primary-accent);
    background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Search Input */
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

#searchInput {
    width: 100%;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Results List */
.results-grid {
    width: 100%;
    max-width: 1000px;
    /* Wider for extra column */
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.4s forwards;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.results-list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    /* Added Status field */
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.company-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    /* Added Status field */
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.company-row:last-child {
    border-bottom: none;
}

.company-row:hover {
    background: #f8fafc;
    border-left: 3px solid var(--primary-accent);
}

.company-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.company-number {
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.company-address {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Lighter overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.input-group {
    margin: 2rem 0;
}

#directorNameInput {
    padding: 1rem;
    width: 100%;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: var(--text-main);
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}


/* Metric Cards */
.metric-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Dashboard */
.hidden {
    display: none !important;
}

.dashboard-section {
    display: contents;
    animation: fadeIn 0.5s ease;
}

.company-header {
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
    background: linear-gradient(to bottom, #ffffff, #fafbfc);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.company-header-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-title h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.75px;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.company-header h1 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.company-header p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.badges {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.widget {
    padding: 0;
    height: auto;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.widget:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.widget h3 {
    margin: 0;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(to bottom, #fafbfc, #f9fafb);
    border-bottom: 2px solid #e5e7eb;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
}

.scroll-list {
    overflow-y: auto;
    flex: 1;
    padding: 1.5rem;
}

.section-card {
    padding: 2rem;
    margin-bottom: 1.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.section-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

.table-wrap {
    overflow-x: auto;
    border-radius: 8px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.925rem;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: top;
    line-height: 1.5;
}

.data-table thead th {
    background: #f9fafb;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.data-table tbody th {
    font-weight: 600;
    color: #4b5563;
    background: #fafbfc;
    width: 180px;
}

.data-table tbody td {
    color: var(--text-main);
}

.data-table tbody tr:hover {
    background: #f9fafb;
    transition: background 0.15s ease;
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table-compact th,
.data-table-compact td {
    padding: 0.875rem 1rem;
}

.table-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
}

.table-link:hover {
    text-decoration: underline;
}

.muted {
    color: var(--text-muted);
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.helper-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reveal-card {
    border: 2px dashed #d1d5db;
    background: linear-gradient(135deg, #fafbfc 0%, #f9fafb 100%);
    transition: all 0.3s ease;
}

.reveal-card:hover {
    border-color: var(--primary-accent);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

/* Utilities */
.btn-text {
    background: white;
    border: 1px solid #e5e7eb;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    background: #f9fafb;
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    transform: translateX(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#backBtn {
    position: sticky;
    top: 2rem;
    z-index: 50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

#backBtn::before {
    content: '←';
    font-size: 1.125rem;
    font-weight: 700;
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

#backBtn:hover {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    color: white;
    border-color: var(--primary-accent);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

#backBtn:hover::before {
    transform: translateX(-3px);
}

#backBtn:active {
    transform: translateX(-2px);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.status-badge,
.info-badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.status-badge {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    text-transform: capitalize;
    box-shadow: 0 1px 2px rgba(16, 185, 129, 0.1);
}

.status-badge.inactive {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(107, 114, 128, 0.05);
}

.info-badge {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.05);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bi-section {
    margin-top: 0;
    margin-bottom: 1.75rem;
    padding: 2rem;
}

.bi-title {
    display: none;
}

.bi-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    vertical-align: middle;
}

.bi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .bi-grid {
        grid-template-columns: 1fr;
    }
}

.bi-content {
    padding: 1.5rem;
}

/* Credit Score Display */
.score-display {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.score-circle-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.score-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 2.5;
}

.score-value {
    fill: none;
    stroke: #22c55e;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease-out, stroke 0.3s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-text span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.score-details {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.score-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.score-label-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-grade {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.score-value-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Financial Grid */
.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.financial-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.fin-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.fin-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

/* BI Alerts */
.bi-alert-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bi-alert {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.bi-alert svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* KYB Report Section */
.kyb-section {
    margin-top: 0;
    margin-bottom: 1.75rem;
    padding: 2rem;
    background: white;
    border: 1px solid #e5e7eb;
}

.kyb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f3f4f6;
}

.kyb-header-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.kyb-assessment-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* KYB Status Colors */
.kyb-safe {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.kyb-caution {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.kyb-risk {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.kyb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kyb-signal-card {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #fafbfc, #f9fafb);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.kyb-signal-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.signal-icon {
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary-accent);
}

.signal-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

.signal-info {
    display: flex;
    flex-direction: column;
}

.signal-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.125rem;
}

.signal-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.signal-value.positive {
    color: #166534;
}

.signal-value.negative {
    color: #991b1b;
}

.signal-value.neutral {
    color: #854d0e;
}

.kyb-summary {
    padding: 1.25rem;
    background: #f0f7ff;
    border-left: 4px solid var(--primary-accent);
    border-radius: 4px 12px 12px 4px;
    font-size: 0.95rem;
    color: #1e40af;
    line-height: 1.6;
}

.kyb-summary strong {
    color: #1e3a8a;
}