/* --------------------------------------------------------------------------
   Investors Page Styles — Mantratec / Mefron style
   -------------------------------------------------------------------------- */

/* Hero Banner */
.investor_banner {
    position: relative;
    background: linear-gradient(135deg, #061838 0%, #0a2e68 50%, #0d4294 100%);
    background-size: cover;
    background-position: center;
    padding: 70px 0 60px 0;
    color: #ffffff;
    overflow: hidden;
}

.investor_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.investor_banner .breadcrumb_nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.investor_banner .breadcrumb_nav a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.investor_banner .breadcrumb_nav a:hover {
    opacity: 0.8;
}

.investor_banner .breadcrumb_nav .separator {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.investor_banner .breadcrumb_nav .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.investor_banner h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Welcome Section */
.investor-welcome-section {
    padding: 60px 0 40px 0;
    background-color: #ffffff;
}

.investor-welcome-content .section_label {
    display: inline-block;
    padding: 6px 16px;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.investor-welcome-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: #0f172a;
    margin-top: 16px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.investor-welcome-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 16px;
}

/* Resources Section */
.investor-resources-section {
    padding: 30px 0 60px 0;
    background-color: #ffffff;
}

.resource-group {
    margin-bottom: 20px;
}

.resource-group h2 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 12px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.resource-group h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 2px;
}

.resource-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-top: 10px;
    margin-bottom: 4px;
}

.resource-group h6 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
}

/* Resource Card */
.resource-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.resource-card i {
    font-size: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.resource-card span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    border-color: #93c5fd;
    box-shadow: 0 10px 20px -3px rgba(37, 99, 235, 0.12), 0 4px 6px -2px rgba(37, 99, 235, 0.04);
}

.resource-card:hover i {
    transform: scale(1.1);
}

.resource-card:hover span {
    color: #2563eb;
}

/* Contact Section */
.investor-contact-section {
    padding-bottom: 60px;
}

.note-box {
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-left: 4px solid #2563eb;
    border-radius: 12px;
    padding: 26px 30px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}

.note-box p {
    font-size: 1.025rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 12px;
}

.note-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1e40af;
}

.note-box a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.note-box a:hover {
    color: #1d4ed8;
}

hr.my-5 {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
    opacity: 0.8;
}
