/* --- Our Mission Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sub-heading {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #0066FF;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: #eff6ff;
    display: inline-flex;
    padding: 1rem;
    border-radius: 50%;
}

.value-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Compliance Section */
.compliance-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 50, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.compliance-Badge {
    flex: 0 0 150px;
    height: 150px;
    background: linear-gradient(135deg, #0066FF 0%, #002699 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 38, 153, 0.3);
}

.shield-img {
    width: 64px;
    height: 64px;
}

.compliance-content h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.compliance-content>p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.compliance-list {
    list-style: none;
    padding: 0;
}

.compliance-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #334155;
    line-height: 1.5;
}

.compliance-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    /* Green check */
    font-weight: 800;
}

/* Buttons */
.button-group {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-small {
    background: linear-gradient(135deg, #0066FF 0%, #004080 100%);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: #eff6ff;
    color: #0066FF;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary-small:hover {
    background: #dbeafe;
}

.center-cta {
    text-align: center;
}

.center-cta h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-text {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .compliance-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .compliance-list li {
        text-align: left;
    }
}