.pink-highlight {
    color: var(--color-1);
}

/* --- Buttons --- */
.btn-brand-pink {
    background-color: var(--color-1);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-brand-pink:hover {
    background-color: #1E1926;
    border-color: #1E1926;
    color: white;
}

/* --- Hero Section --- */
.benefits-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://via.placeholder.com/1920x800/1e293b/ffffff?text=Background+Office') center/cover;
    color: white;
    padding: 120px 10px;
    text-align: center;
    border-bottom: 6px solid var(--color-1);
}
.hr-services-subtitle{
    font-family: var(--font-02);
}

/* --- Why Invest Cards --- */
.invest-card {
    background:#c9af5d36;
    border: none;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.invest-card:hover {
    transform: translateY(-8px);
}
.invest-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--color-1);
}
.invest-icon {
    font-size: 2.5rem;
    color: var(--color-1);
    margin-bottom: 20px;
}

/* --- Virtual Wallet Split Section --- */
.wallet-section {
    background-color: white;
}
.image-wrapper{
    background-color: #c9af5dab;
}
.image-wrapper img {
    width: 100%;
    object-fit: contain; /* Ensures full image displays without cropping */
    border-radius: 12px;
    background-color: #f8fafc;
}

/* --- Advantages Grid --- */
.advantage-box {
    background-color: #c9af5d36;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fce4ec;
    color: var(--color-1);
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
}
.custom-bullet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: var(--font-02);
}
.custom-bullet-list li::before {
    content: '\f058'; /* Bootstrap Icon check-circle-fill */
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-1);
    font-size: 1.1rem;
}
.advantage-box h4{
    font-family: var(--font-01);
    font-size: 20px;
}
.advantage-box p {
    font-family: var(--font-02);
    font-size: 16px;
}
.lead {
    font-size: 16px;
    font-family: var(--font-02);
    font-weight: 400;
}
/* --- Final CTA --- */
.final-cta {
    background-color: var(--color-1);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.final-cta h2 {
    color: var(--color-2);
    font-family: var(--font-01);
}
.hr-why-invest h4{
    font-family: var(--font-01);
    font-size: 20px;
}
.hr-why-invest p {
    font-family: var(--font-02);
    font-size: 16px;
}
.final-cta::before {
    content: "";
    position: absolute;
    width: 530px;
    height: 530px;
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 50%;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
}
.adv-icon-title {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
@media(max-width:767.98px){
    .benefits-hero {
    padding: 40px 10px;
}
.advantage-box {
    padding: 10px;
}

}