:root {
    --primary: #0056b3;
    --bg-light: #f8fbff;
}

body.bg-dynamic-white {
    background: #ffffff;
    background-image: radial-gradient(at 0% 0%, rgba(0, 86, 179, 0.05) 0px, transparent 50%);
    font-family: 'Inter', sans-serif;
}

/* Hero Visual Animation */
.mandate-visual-box {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-bank-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
    width: 280px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loading-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loadingMove 2s infinite;
}

@keyframes loadingMove {
    100% { left: 100%; }
}

/* Process Steps */
.step-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

/* Rule Cards */
.rule-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s;
}

.rule-card:hover {
    transform: scale(1.02);
}

.benefit-tile {
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-tile:hover {
    border-color: var(--primary) !important;
    background: #f0f7ff !important;
    transform: translateY(-5px);
}