﻿/* RM True Petroleum custom site styles.
   Keep project-specific overrides here so brochure redesign work has one CSS entry point. */

/* Header, navigation, and mobile footer overrides */
.top-contact-bar {
            background: #0D3B6E;
            color: #ffffff;
            font-size: 13px;
        }

        .top-contact-inner {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 22px;
            min-height: 38px;
        }

        .top-contact-inner a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #ffffff;
            font-weight: 600;
        }

        .top-contact-inner a:hover {
            color: #F5A623;
        }

        .top-contact-inner i {
            font-size: 16px;
        }

.site-navigation {
            background: #ffffff;
            border-bottom: 1px solid rgba(13, 59, 110, 0.10);
            box-shadow: 0 8px 24px rgba(13, 59, 110, 0.06);
        }

        .main-menu .navbar-nav .nav-link {
            color: #0D3B6E !important;
            font-weight: 600;
            position: relative;
        }

        .main-menu .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 6px;
            height: 2px;
            background: #2E8B3A;
            transition: 0.25s ease;
        }

        .main-menu .navbar-nav .nav-link.active,
        .main-menu .navbar-nav .nav-link:hover {
            color: #2E8B3A !important;
        }

        .main-menu .navbar-nav .nav-link.active::after,
        .main-menu .navbar-nav .nav-link:hover::after {
            left: 16px;
            right: 16px;
        }

        .header-area .header-right-content .main-btn {
            background: #F5A623;
            color: #0D3B6E;
            border: 0;
            box-shadow: 0 10px 22px rgba(245, 166, 35, 0.22);
        }

        .header-area .header-right-content .main-btn:hover {
            background: #1B6BB0;
            color: #ffffff;
        }

        .header-area .logo img {
            max-width: 150px;
            height: auto;
            object-fit: contain;
        }

        .header-area .logo {
            width: auto;
            height: auto;
            padding: 0;
        }

        .header-area .logo .navbar-brand {
            display: inline-flex;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        .header-area .logo img {
            width: auto;
            max-height: 64px;
        }

        .header-area .navbar-toggler {
            border: 0;
            padding: 8px;
            margin-left: auto;
            box-shadow: none;
        }

        .header-area .navbar-toggler:focus {
            box-shadow: none;
            outline: 0;
        }

        .header-area .navbar-toggler-icon {
            display: block;
            width: 28px;
            height: 3px;
            margin: 5px 0;
            background: #0D3B6E;
            border-radius: 999px;
        }

        .footer-area .company-email a,
        .footer-area .phone-number a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: inherit;
            margin-bottom: 8px;
        }

        .footer-area .company-email a:hover,
        .footer-area .phone-number a:hover {
            color: #F5A623;
        }

        .footer-area .social-area {
            display: grid;
            margin-top: 8px;
        }

        .footer-area .social-area a {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: inherit;
            line-height: 1.3;
        }

        .footer-area .social-area a:hover {
            color: #F5A623;
        }

        .footer-area .social-area i {
            width: 18px;
            min-width: 18px;
            color: #ffffff;
            font-size: 18px;
            line-height: 1;
            text-align: center;
        }

        .rm-whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 54px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #25D366;
            color: #ffffff !important;
            box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
            text-decoration: none;
            transition: 0.25s ease;
        }

        .rm-whatsapp-float i {
            font-size: 34px;
            line-height: 1;
        }

        .rm-whatsapp-float:hover {
            transform: translateY(-4px);
            background: #1ebe5d;
            color: #ffffff !important;
        }

        @media (max-width: 991px) {
            .top-contact-inner {
                justify-content: center;
                flex-wrap: wrap;
                gap: 8px 16px;
                padding: 8px 0;
            }

            .site-navigation {
                position: relative;
            }

            .header-area .navigation {
                padding: 8px 0;
            }

            .header-area .row.align-items-center {
                row-gap: 0;
            }

            .header-logo-col {
                width: auto;
                flex: 1 1 auto;
                min-width: 0;
            }

            .header-menu-col {
                width: auto;
                flex: 0 0 auto;
                position: static;
            }

            .header-action-col {
                display: none;
            }

            .header-area .logo {
                display: flex;
                align-items: center;
                min-height: 54px;
            }

            .header-area .logo img {
                max-width: 118px;
            }

            .main-menu .navbar {
                justify-content: flex-end;
                padding: 0;
                position: static;
            }

            .header-area .navbar-toggler {
                display: inline-flex !important;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                flex: 0 0 44px;
                position: absolute !important;
                top: 50%;
                right: 14px;
                z-index: 1002;
                background: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                transform: translateY(-50%);
            }

            .header-area .navbar-toggler-icon {
                display: block !important;
                width: 30px;
                height: 3px;
                margin: 4px 0;
                background: #F5A623 !important;
                border-radius: 999px;
            }

            .main-menu .navbar .navbar-collapse {
                position: absolute;
                left: 12px;
                right: 12px;
                top: 100%;
                z-index: 999;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 18px 40px rgba(0,0,0,0.16);
                padding: 10px 0;
                max-height: calc(100vh - 86px);
                overflow-y: auto;
            }

            .main-menu .navbar-nav {
                width: 100%;
                gap: 0;
            }

            .main-menu .navbar-nav .nav-link {
                padding: 12px 18px !important;
                color: #0D3B6E !important;
                border-bottom: 1px solid rgba(13,59,110,0.08);
            }

            .main-menu .navbar-nav .nav-link::after {
                display: none;
            }

            .main-menu .navbar-nav .nav-link.active,
            .main-menu .navbar-nav .nav-link:hover {
                background: rgba(46,139,58,0.08);
                color: #2E8B3A !important;
            }

            .footer-area {
                padding: 44px 0 18px !important;
                text-align: left !important;
            }

            .footer-area .container,
            .footer-bottom .container {
                padding-left: 22px;
                padding-right: 22px;
            }

            .footer-area .row > [class*="col-"] {
                width: 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }

            .footer-area .offset-lg-1 {
                margin-left: 0;
            }

            .footer-up {
                padding: 0 !important;
            }

            .footer-up .row {
                --bs-gutter-y: 0;
            }

            .footer-area .logo1 {
                display: inline-block;
                width: 150px;
                margin-bottom: 12px;
            }

            .footer-area .logo1 img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }

            .footer-area p {
                font-size: 13px !important;
                line-height: 1.6;
                margin: 8px 0 0;
            }

            .footer-area h5 {
                font-size: 14px !important;
                margin: 0;
                padding: 14px 0;
                border-top: 1px solid rgba(255,255,255,0.16);
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .footer-area h5::after {
                content: "+";
                font-size: 16px;
                font-weight: 600;
            }

            .footer-area .footer-mobile-open h5::after {
                content: "-";
            }

            .footer-area h5 {
                cursor: pointer;
                user-select: none;
            }

            .footer-area h5 ~ * {
                display: none;
            }

            .footer-area .footer-mobile-open h5 ~ * {
                display: block;
            }

            .footer-area .company-email,
            .footer-area .phone-number {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .footer-area .company-email a,
            .footer-area .phone-number a {
                display: flex;
                align-items: center;
                gap: 8px;
                color: inherit;
                font-size: 13px !important;
                padding: 4px 0 !important;
            }

            .footer-links-list,
            .footer-area ul {
                margin: 0;
                padding: 0;
            }

            .footer-links-list li {
                list-style: none;
            }

            .footer-area ul li a {
                font-size: 13px !important;
                padding: 4px 0 !important;
            }

            .footer-area .social-area {
                display: grid;
                align-items: stretch;
                margin-top: 4px;
            }

            .footer-area .social-area a {
                width: auto;
                height: auto;
                border: 0;
                border-radius: 0;
                display: inline-flex !important;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                padding: 4px 0 !important;
                font-size: 13px !important;
            }

            .footer-area .social-area i {
                margin: 0 !important;
                width: 18px;
                min-width: 18px;
                font-size: 16px !important;
            }

            .footer-bottom {
                padding: 12px 0 26px !important;
                text-align: center;
            }

            .footer-bottom .row {
                gap: 8px;
            }

            .footer-bottom p {
                font-size: 11px !important;
                line-height: 1.5;
                text-align: center !important;
            }

            .rm-whatsapp-float {
                right: 16px;
                bottom: 52px;
                width: 50px;
                height: 50px;
            }

            .rm-whatsapp-float i {
                font-size: 30px;
            }

        }

        @media (max-width: 575px) {
            .top-contact-inner {
                align-items: flex-start;
                flex-direction: column;
            }

            .header-area .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .header-area .logo img {
                max-width: min(104px, 100%);
            }
        }

/* Home page redesign styles */
.rm-home {
    --rm-blue: #1B6BB0;
    --rm-blue-dark: #0D3B6E;
    --rm-green: #2E8B3A;
    --rm-orange: #F5A623;
    --rm-white: #FFFFFF;
    --rm-ink: #0D3B6E;
    --rm-muted: #526579;
    --rm-soft: #F5F8FB;
    background: var(--rm-white);
    color: var(--rm-ink);
    overflow-x: hidden;
}

.rm-home img {
    max-width: 100%;
}

.rm-section {
    padding: 92px 0;
}

.rm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rm-orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rm-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--rm-green);
}

.rm-hero {
    min-height: 540px;
    padding: 105px 0 82px;
    background-image:
        linear-gradient(90deg, rgba(6, 26, 48, 0.84) 0%, rgba(13, 59, 110, 0.64) 42%, rgba(13, 59, 110, 0.12) 100%),
        url("../img/slider/logo1.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.rm-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: var(--rm-blue);
}

.rm-section h2 {
    color: var(--rm-blue-dark);
    font-weight: 800;
    letter-spacing: 0;
}

.rm-hero-content h1 {
    color: var(--rm-white);
    font-weight: 800;
    letter-spacing: 0;
}

.rm-hero-content h1 {
    font-size: 58px;
    line-height: 1.04;
    margin-bottom: 22px;
}

.rm-hero-content {
    max-width: 760px;
}

.rm-section-head p,
.rm-intro p {
    color: var(--rm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.rm-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
}

.rm-hero .rm-eyebrow {
    color: var(--rm-orange);
}

.rm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0;
}

.rm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.rm-btn-primary {
    background: var(--rm-blue);
    border: 1px solid var(--rm-blue);
    color: var(--rm-white);
}

.rm-btn-primary:hover {
    background: var(--rm-blue-dark);
    border-color: var(--rm-blue-dark);
    color: var(--rm-white);
}

.rm-btn-secondary {
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.18);
    color: var(--rm-blue-dark);
}

.rm-btn-secondary:hover {
    border-color: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-btn-link {
    min-height: 48px;
    padding-left: 0;
    padding-right: 0;
    color: var(--rm-blue-dark);
}

.rm-btn-link:hover {
    color: var(--rm-orange);
}

.rm-btn-light {
    background: var(--rm-white);
    border: 1px solid var(--rm-white);
    color: var(--rm-blue-dark);
}

.rm-btn-light:hover {
    background: transparent;
    color: var(--rm-white);
}

.rm-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.rm-trust-row div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid var(--rm-green);
    border-radius: 10px;
    padding: 14px 16px;
    backdrop-filter: blur(4px);
}

.rm-trust-row strong,
.rm-trust-row span {
    display: block;
}

.rm-trust-row strong {
    color: var(--rm-white);
    font-size: 16px;
}

.rm-trust-row span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.rm-intro {
    background: var(--rm-white);
}

.rm-rounded-media {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(13, 59, 110, 0.12);
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.08);
}

.rm-intro h2,
.rm-section-head h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.rm-check-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.rm-check-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rm-blue-dark);
    font-weight: 700;
}

.rm-check-list i {
    color: var(--rm-green);
    font-size: 22px;
}

.rm-products,
.rm-why {
    background: var(--rm-soft);
}

.rm-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.rm-section-head .rm-eyebrow {
    justify-content: center;
}

.rm-product-card,
.rm-feature-card {
    height: 100%;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(13, 59, 110, 0.07);
    transition: 0.25s ease;
}

.rm-product-card:hover,
.rm-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.48);
    box-shadow: 0 18px 36px rgba(13, 59, 110, 0.10);
}

.rm-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.rm-product-card div {
    padding: 20px;
    border-top: 4px solid var(--rm-green);
}

.rm-product-card h3,
.rm-feature-card h3 {
    color: var(--rm-blue-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rm-product-card p,
.rm-feature-card p {
    color: var(--rm-muted);
    line-height: 1.65;
    margin: 0;
}

.rm-feature-card {
    padding: 28px;
}

.rm-feature-card i {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rm-blue);
    color: var(--rm-white);
    font-size: 30px;
    margin-bottom: 18px;
}

.rm-feature-card:hover i {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-branches-section {
    background: var(--rm-white);
}

.rm-branches-section h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.rm-branches-section p {
    color: var(--rm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.rm-branches-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.rm-branch-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-left: 4px solid var(--rm-green);
    border-radius: 12px;
    background: var(--rm-soft);
    color: var(--rm-blue-dark);
    font-weight: 800;
}

.rm-branch-tag i {
    color: var(--rm-orange);
    font-size: 22px;
}

.rm-india-map-wrap {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 18px;
    background: var(--rm-white);
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.09);
    overflow: hidden;
}

.rm-india-map {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 12px;
}

.rm-home-cta {
    background: var(--rm-soft);
}

.rm-home-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 18px;
    background: var(--rm-blue-dark);
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.16);
}

.rm-home-cta-panel h2 {
    color: var(--rm-white);
    font-size: 36px;
    line-height: 1.16;
    font-weight: 800;
    margin-bottom: 12px;
}

.rm-home-cta-panel p,
.rm-home-cta-panel .rm-eyebrow {
    color: var(--rm-white);
}

.rm-home-cta-panel .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-home-cta-panel p {
    max-width: 700px;
    opacity: 0.84;
    margin: 0;
}

.rm-home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .rm-section,
    .rm-hero {
        min-height: auto;
        padding: 78px 0;
    }

    .rm-hero-content h1 {
        font-size: 42px;
    }

    .rm-intro h2,
    .rm-section-head h2,
    .rm-branches-section h2 {
        font-size: 34px;
    }

    .rm-home-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .rm-india-map-wrap {
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .rm-hero-content h1 {
        font-size: 34px;
    }

    .rm-trust-row {
        grid-template-columns: 1fr;
    }

    .rm-hero-actions {
        display: grid;
    }

    .rm-btn {
        width: 100%;
    }

    .rm-branches-grid {
        grid-template-columns: 1fr;
    }

    .rm-india-map-wrap,
    .rm-home-cta-panel {
        padding: 16px;
    }

    .rm-home-cta-panel h2 {
        font-size: 28px;
    }

    .rm-home-cta-actions {
        width: 100%;
    }

    .rm-home-cta-actions .rm-btn {
        width: 100%;
    }

    .rm-india-map {
        max-height: none;
    }
}

/* About page redesign styles */
.rm-about {
    --rm-blue: #1B6BB0;
    --rm-blue-dark: #0D3B6E;
    --rm-green: #2E8B3A;
    --rm-orange: #F5A623;
    --rm-white: #FFFFFF;
    --rm-muted: #526579;
    --rm-soft: #F5F8FB;
    color: var(--rm-blue-dark);
    background: var(--rm-white);
}

.rm-page-hero {
    padding: 104px 0 84px;
    background: var(--rm-soft);
    border-bottom: 1px solid rgba(13, 59, 110, 0.08);
}

.rm-about-banner {
    min-height: 360px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 26, 48, 0.86) 0%, rgba(13, 59, 110, 0.68) 48%, rgba(13, 59, 110, 0.18) 100%),
        url("../img/feature2.png");
    background-size: cover;
    background-position: center;
    border-bottom: 0;
}

.rm-page-hero h1 {
    color: var(--rm-blue-dark);
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.rm-about-banner h1,
.rm-about-banner p {
    color: var(--rm-white);
}

.rm-about-banner p {
    max-width: 760px;
    opacity: 0.88;
}

.rm-about-banner .rm-eyebrow {
    color: var(--rm-orange);
}

.rm-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.rm-about-breadcrumb a {
    color: var(--rm-white);
}

.rm-about-breadcrumb a:hover {
    color: var(--rm-orange);
}

.rm-about-breadcrumb strong {
    color: var(--rm-orange);
}

.rm-page-hero p,
.rm-about-section p {
    color: var(--rm-muted);
    font-size: 16px;
    line-height: 1.75;
}

.rm-about-banner.rm-page-hero p {
    color: var(--rm-white);
    opacity: 0.94;
    max-width: 760px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.rm-about-logo-card {
    position: relative;
    overflow: hidden;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.10);
}

.rm-about-logo-card img {
    width: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.rm-about-logo-card strong {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rm-orange);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(13, 59, 110, 0.12);
}

.rm-about-section {
    padding: 88px 0;
}

.rm-about-soft {
    background: var(--rm-soft);
}

.rm-about-section h2 {
    color: var(--rm-blue-dark);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 16px;
}

.rm-about-media {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(13, 59, 110, 0.10);
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.08);
}

.rm-about-principle {
    margin-top: 26px;
    padding: 22px;
    border-left: 5px solid var(--rm-orange);
    background: var(--rm-soft);
    border-radius: 12px;
}

.rm-about-principle span,
.rm-leader-card span {
    display: block;
    color: var(--rm-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.rm-about-principle strong {
    color: var(--rm-blue-dark);
    font-size: 22px;
}

.rm-about-value,
.rm-leader-card,
.rm-direction-card {
    height: 100%;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(13, 59, 110, 0.07);
    transition: 0.25s ease;
}

.rm-about-value {
    padding: 26px;
}

.rm-vm-card,
.rm-core-card,
.rm-growth-card {
    position: relative;
    height: 100%;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(13, 59, 110, 0.08);
    transition: 0.25s ease;
}

.rm-vm-card:hover,
.rm-core-card:hover,
.rm-growth-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.48);
    box-shadow: 0 20px 42px rgba(13, 59, 110, 0.12);
}

.rm-vm-card {
    overflow: hidden;
    padding: 34px;
}

.rm-vm-card::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 5px;
    background: var(--rm-orange);
    border-radius: 5px 5px 0 0;
}

.rm-vm-vision {
    background:
        linear-gradient(145deg, rgba(13, 59, 110, 0.96), rgba(27, 107, 176, 0.92));
}

.rm-vm-vision h2,
.rm-vm-vision p,
.rm-vm-vision .rm-eyebrow {
    color: var(--rm-white);
}

.rm-vm-vision p {
    opacity: 0.86;
}

.rm-vm-vision .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-vm-mission::after {
    background: var(--rm-green);
}

.rm-vm-icon,
.rm-core-card i,
.rm-growth-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rm-white);
}

.rm-vm-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
    font-size: 34px;
}

.rm-vm-icon-green {
    background: var(--rm-green);
    color: var(--rm-white);
}

.rm-vm-card h2 {
    font-size: 30px;
    line-height: 1.22;
}

.rm-mission-list {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
}

.rm-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--rm-blue-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    list-style: none;
}

.rm-mission-list i {
    flex-shrink: 0;
    color: var(--rm-green);
    font-size: 23px;
    line-height: 1.2;
}

.rm-core-card {
    overflow: hidden;
    padding: 30px 24px 28px;
}

.rm-core-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--rm-green), var(--rm-orange));
}

.rm-core-num {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(13, 59, 110, 0.10);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.rm-core-card i,
.rm-growth-card i {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--rm-blue);
    font-size: 30px;
}

.rm-core-card:hover i,
.rm-growth-card:hover i {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-core-card h3,
.rm-growth-card h3 {
    color: var(--rm-blue-dark);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}

.rm-core-card p,
.rm-growth-card p {
    color: var(--rm-muted);
    font-size: 15px;
    line-height: 1.68;
    margin: 0;
}

.rm-growth-card {
    padding: 26px;
    border-left: 5px solid rgba(46, 139, 58, 0.85);
}

.rm-btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--rm-white);
    background: transparent;
}

.rm-btn-outline-light:hover {
    background: var(--rm-white);
    border-color: var(--rm-white);
    color: var(--rm-blue-dark);
}

.rm-about-value:hover,
.rm-leader-card:hover,
.rm-direction-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.46);
    box-shadow: 0 18px 38px rgba(13, 59, 110, 0.10);
}

.rm-about-value i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--rm-blue);
    color: var(--rm-white);
    font-size: 30px;
    margin-bottom: 18px;
}

.rm-about-value:hover i {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-about-value h3,
.rm-leader-card h3 {
    color: var(--rm-blue-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rm-leader-card {
    overflow: hidden;
}

.rm-leader-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.rm-leader-card div {
    padding: 24px;
}

.rm-direction-card {
    padding: 34px;
}

.rm-direction-blue {
    background: var(--rm-blue-dark);
}

.rm-direction-blue h2,
.rm-direction-blue li,
.rm-direction-blue .rm-eyebrow {
    color: var(--rm-white);
}

.rm-direction-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
}

.rm-direction-card li {
    list-style: none;
    color: var(--rm-blue-dark);
    font-weight: 700;
    padding-left: 24px;
    position: relative;
}

.rm-direction-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rm-orange);
}

.rm-about-cta {
    background: var(--rm-white);
}

.rm-about-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px;
    border-radius: 18px;
    background: var(--rm-blue-dark);
}

.rm-about-cta-panel h2,
.rm-about-cta-panel p,
.rm-about-cta-panel .rm-eyebrow {
    color: var(--rm-white);
}

.rm-about-cta-panel p {
    opacity: 0.84;
    margin: 0;
}

.rm-about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* Product page redesign styles */
.rm-products-page {
    --rm-blue: #1B6BB0;
    --rm-green: #2E8B3A;
    --rm-orange: #F5A623;
    --rm-blue-dark: #0D3B6E;
    --rm-white: #FFFFFF;
    --rm-soft: #F6FAFD;
    --rm-muted: #5f6f80;
    background: var(--rm-white);
}

.rm-product-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 59, 110, 0.94) 0%, rgba(13, 59, 110, 0.74) 42%, rgba(13, 59, 110, 0.18) 100%),
        url("../img/feature2.png") center right / cover no-repeat;
    min-height: 390px;
}

.rm-product-banner .rm-eyebrow,
.rm-product-banner h1,
.rm-product-banner p,
.rm-product-banner .rm-about-breadcrumb a,
.rm-product-banner .rm-about-breadcrumb span {
    color: var(--rm-white);
}

.rm-product-banner .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-product-banner p {
    max-width: 680px;
    opacity: 0.90;
}

.rm-product-banner .rm-about-breadcrumb {
    margin-top: 22px;
}

.rm-products-intro,
.rm-products-support {
    padding: 88px 0;
}

.rm-products-intro {
    background: var(--rm-soft);
}

.rm-product-tile {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 322px;
    padding: 22px;
    border-radius: 14px;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    box-shadow: 0 14px 34px rgba(13, 59, 110, 0.07);
    transition: 0.25s ease;
}

.rm-product-tile::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 4px;
    background: var(--rm-green);
    border-radius: 4px 4px 0 0;
    transition: 0.25s ease;
}

.rm-product-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 20px 42px rgba(13, 59, 110, 0.12);
}

.rm-product-tile:hover::after {
    background: var(--rm-orange);
}

.rm-product-tile-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 185px;
    margin: -4px -4px 20px;
    padding: 16px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 42%, rgba(245, 166, 35, 0.14), transparent 38%),
        linear-gradient(145deg, #ffffff, #f3f7fb);
    border: 1px solid rgba(13, 59, 110, 0.08);
}

.rm-product-tile-media img {
    width: 100%;
    max-width: 210px;
    height: 170px;
    object-fit: contain;
    transition: 0.25s ease;
}

.rm-product-tile:hover .rm-product-tile-media img {
    transform: scale(1.04);
}

.rm-product-tile-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--rm-green);
    color: var(--rm-white);
    font-size: 28px;
    margin-bottom: 20px;
    transition: 0.25s ease;
}

.rm-product-tile-icon-blue {
    background: var(--rm-blue);
}

.rm-product-tile-icon-orange {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-product-tile:hover .rm-product-tile-icon {
    background: var(--rm-blue-dark);
    color: var(--rm-white);
}

.rm-product-tile span {
    display: block;
    color: var(--rm-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rm-product-tile h3 {
    color: var(--rm-blue-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.rm-product-tile p {
    color: var(--rm-muted);
    font-size: 16px;
    line-height: 1.72;
    margin: 0;
}

.rm-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 18px;
    background: var(--rm-blue-dark);
}

.rm-product-cta h2 {
    color: var(--rm-white);
    font-size: 36px;
    line-height: 1.16;
    font-weight: 800;
    margin-bottom: 12px;
}

.rm-product-cta p,
.rm-product-cta .rm-eyebrow {
    color: var(--rm-white);
}

.rm-product-cta p {
    max-width: 660px;
    opacity: 0.84;
    margin: 0;
}

.rm-product-cta .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-product-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* Blog and contact page redesign styles */
.rm-blog-page,
.rm-contact-page {
    --rm-blue: #1B6BB0;
    --rm-green: #2E8B3A;
    --rm-orange: #F5A623;
    --rm-blue-dark: #0D3B6E;
    --rm-white: #FFFFFF;
    --rm-soft: #F6FAFD;
    --rm-muted: #5f6f80;
    background: var(--rm-white);
    color: var(--rm-blue-dark);
}

.rm-blog-banner,
.rm-contact-banner {
    position: relative;
    overflow: hidden;
    min-height: 390px;
}

.rm-blog-banner {
    background:
        linear-gradient(90deg, rgba(13, 59, 110, 0.94) 0%, rgba(13, 59, 110, 0.72) 48%, rgba(13, 59, 110, 0.18) 100%),
        url("../img/blog/blog-feat-img.jpg") center right / cover no-repeat;
}

.rm-contact-banner {
    background:
        linear-gradient(90deg, rgba(13, 59, 110, 0.94) 0%, rgba(13, 59, 110, 0.74) 48%, rgba(13, 59, 110, 0.18) 100%),
        url("../img/contact-bg.jpg") center right / cover no-repeat;
}

.rm-blog-banner .rm-eyebrow,
.rm-blog-banner h1,
.rm-blog-banner p,
.rm-blog-banner .rm-about-breadcrumb a,
.rm-blog-banner .rm-about-breadcrumb span,
.rm-contact-banner .rm-eyebrow,
.rm-contact-banner h1,
.rm-contact-banner p,
.rm-contact-banner .rm-about-breadcrumb a,
.rm-contact-banner .rm-about-breadcrumb span {
    color: var(--rm-white);
}

.rm-blog-banner .rm-eyebrow::before,
.rm-contact-banner .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-blog-banner p,
.rm-contact-banner p {
    max-width: 720px;
    opacity: 0.90;
}

.rm-blog-section,
.rm-blog-detail-section,
.rm-contact-section,
.rm-contact-form-section {
    padding: 88px 0;
}

.rm-blog-section,
.rm-contact-section {
    background: var(--rm-soft);
}

.rm-blog-card,
.rm-blog-detail-card,
.rm-blog-sidebar,
.rm-contact-info-card,
.rm-contact-form-card,
.rm-contact-strip {
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(13, 59, 110, 0.08);
}

.rm-blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    transition: 0.25s ease;
}

.rm-blog-card:hover,
.rm-contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 20px 42px rgba(13, 59, 110, 0.12);
}

.rm-blog-card-media {
    display: block;
    overflow: hidden;
}

.rm-blog-card-media img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: 0.25s ease;
}

.rm-blog-card:hover .rm-blog-card-media img {
    transform: scale(1.04);
}

.rm-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.rm-blog-meta,
.rm-blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--rm-muted);
    font-size: 13px;
    font-weight: 700;
}

.rm-blog-meta {
    margin-bottom: 12px;
}

.rm-blog-meta i,
.rm-blog-detail-meta i {
    color: var(--rm-orange);
    font-size: 18px;
}

.rm-blog-card h3,
.rm-blog-detail-card h2,
.rm-blog-sidebar h3,
.rm-contact-info-card h3,
.rm-contact-form-section h2 {
    color: var(--rm-blue-dark);
    font-weight: 800;
    line-height: 1.22;
}

.rm-blog-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.rm-blog-card p {
    flex: 1;
    color: var(--rm-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.rm-empty-state {
    padding: 46px 28px;
    text-align: center;
    background: var(--rm-white);
    border: 1px dashed rgba(13, 59, 110, 0.22);
    border-radius: 16px;
}

.rm-empty-state i {
    color: var(--rm-orange);
    font-size: 46px;
    margin-bottom: 12px;
}

.rm-empty-state h3 {
    color: var(--rm-blue-dark);
    font-weight: 800;
}

.rm-empty-state p {
    color: var(--rm-muted);
    margin: 0;
}

.rm-blog-detail-card {
    padding: 30px;
}

.rm-blog-detail-image {
    width: 100%;
    max-height: 470px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 24px;
}

.rm-blog-detail-meta {
    margin-bottom: 16px;
}

.rm-blog-detail-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.rm-blog-detail-card p {
    color: var(--rm-muted);
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

.rm-blog-sidebar {
    position: sticky;
    top: 110px;
    padding: 26px;
}

.rm-blog-sidebar .rm-eyebrow {
    margin-bottom: 8px;
}

.rm-blog-sidebar h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.rm-latest-blog-list {
    display: grid;
    gap: 16px;
}

.rm-latest-blog-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: var(--rm-soft);
    color: inherit;
}

.rm-latest-blog-card:hover {
    color: inherit;
    background: rgba(245, 166, 35, 0.12);
}

.rm-latest-blog-card img {
    width: 96px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
}

.rm-latest-blog-card span {
    display: block;
    color: var(--rm-orange);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.rm-latest-blog-card h4 {
    color: var(--rm-blue-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 6px;
}

.rm-latest-blog-card p {
    color: var(--rm-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.rm-contact-info-card {
    width: 100%;
    padding: 28px;
    transition: 0.25s ease;
}

.rm-contact-info-card > i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--rm-blue);
    color: var(--rm-white);
    font-size: 30px;
    margin-bottom: 18px;
}

.rm-contact-info-card:hover > i {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-contact-info-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.rm-contact-info-card p {
    color: var(--rm-muted);
    line-height: 1.68;
    margin-bottom: 14px;
}

.rm-contact-info-card a {
    color: var(--rm-green);
    font-weight: 800;
}

.rm-contact-info-card a:hover {
    color: var(--rm-orange);
}

.rm-contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 5px solid var(--rm-green);
}

.rm-contact-strip > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rm-contact-strip i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(27, 107, 176, 0.10);
    color: var(--rm-blue);
    font-size: 24px;
}

.rm-contact-strip span {
    display: block;
    color: var(--rm-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.rm-contact-strip a,
.rm-contact-strip p {
    color: var(--rm-blue-dark);
    font-weight: 800;
    margin: 0;
}

.rm-contact-form-section {
    background: var(--rm-white);
}

.rm-contact-form-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.rm-contact-form-section p {
    color: var(--rm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.rm-contact-form-card {
    padding: 34px;
}

.rm-contact-form-card input,
.rm-contact-form-card textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(13, 59, 110, 0.14);
    border-radius: 12px;
    background: var(--rm-soft);
    color: var(--rm-blue-dark);
    outline: none;
    transition: 0.2s ease;
}

.rm-contact-form-card input::placeholder,
.rm-contact-form-card textarea::placeholder {
    color: #6f7f90 !important;
    opacity: 1;
}

.rm-contact-form-card input:focus::placeholder,
.rm-contact-form-card textarea:focus::placeholder {
    color: #9aa7b5 !important;
}

.rm-contact-form-card input:-webkit-autofill,
.rm-contact-form-card textarea:-webkit-autofill {
    -webkit-text-fill-color: var(--rm-blue-dark);
    box-shadow: 0 0 0 1000px var(--rm-soft) inset;
}

.rm-contact-form-card textarea {
    min-height: 150px;
    resize: vertical;
}

.rm-contact-form-card input:focus,
.rm-contact-form-card textarea:focus {
    border-color: var(--rm-blue);
    background: var(--rm-white);
    box-shadow: 0 0 0 4px rgba(27, 107, 176, 0.10);
}

/* Investor page redesign styles */
.rm-investor-page {
    --rm-blue: #1B6BB0;
    --rm-green: #2E8B3A;
    --rm-orange: #F5A623;
    --rm-blue-dark: #0D3B6E;
    --rm-white: #FFFFFF;
    --rm-soft: #F6FAFD;
    --rm-muted: #5f6f80;
    background: var(--rm-white);
}

.rm-investor-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 59, 110, 0.92) 0%, rgba(13, 59, 110, 0.74) 48%, rgba(13, 59, 110, 0.18) 100%),
        url("../img/banner2.png") center right / cover no-repeat;
    min-height: 390px;
}

.rm-investor-banner .rm-eyebrow,
.rm-investor-banner h1,
.rm-investor-banner p,
.rm-investor-banner .rm-about-breadcrumb a,
.rm-investor-banner .rm-about-breadcrumb span {
    color: var(--rm-white);
}

.rm-investor-banner .rm-eyebrow::before {
    background: var(--rm-orange);
}

.rm-investor-section {
    padding: 88px 0;
}

.rm-investor-soft {
    background: var(--rm-soft);
}

.rm-investor-intro-card {
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 18px 44px rgba(13, 59, 110, 0.08);
}

.rm-investor-content p,
.rm-investor-benefit p,
.rm-investor-feature p,
.rm-investor-list-card p {
    color: var(--rm-muted);
    font-size: 16px;
    line-height: 1.75;
}

.rm-investor-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.rm-investor-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rm-blue-dark);
    font-weight: 700;
}

.rm-investor-point i {
    color: var(--rm-green);
    font-size: 24px;
}

.rm-investor-image {
    position: relative;
}

.rm-investor-image img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(13, 59, 110, 0.10);
}

.rm-growth-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--rm-white);
    box-shadow: 0 16px 34px rgba(13, 59, 110, 0.16);
}

.rm-growth-icon,
.rm-investor-feature-icon,
.rm-investor-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rm-blue);
    color: var(--rm-white);
}

.rm-growth-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 26px;
}

.rm-growth-badge h4 {
    color: var(--rm-blue-dark);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.rm-growth-badge p {
    color: var(--rm-muted);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.rm-investor-feature,
.rm-investor-benefit,
.rm-investor-list-card {
    width: 100%;
    height: 100%;
    background: var(--rm-white);
    border: 1px solid rgba(13, 59, 110, 0.10);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(13, 59, 110, 0.07);
    transition: 0.25s ease;
}

.rm-investor-feature {
    padding: 32px 26px;
}

.rm-investor-benefit,
.rm-investor-list-card {
    padding: 28px;
}

.rm-investor-benefit {
    border-left: 5px solid var(--rm-orange);
    padding-left: 30px;
}

.rm-investor-feature:hover,
.rm-investor-benefit:hover,
.rm-investor-list-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 20px 42px rgba(13, 59, 110, 0.12);
}

.rm-investor-feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 32px;
}

.rm-investor-feature-icon {
    margin-bottom: 20px;
}

.rm-investor-feature:hover .rm-investor-feature-icon {
    background: var(--rm-orange);
    color: var(--rm-blue-dark);
}

.rm-investor-feature h4,
.rm-investor-benefit h5,
.rm-investor-list-card h4 {
    color: var(--rm-blue-dark);
    font-weight: 800;
    line-height: 1.25;
}

.rm-investor-feature h4 {
    font-size: 23px;
    margin-bottom: 12px;
}

.rm-investor-benefit h5,
.rm-investor-list-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.rm-investor-list-card ul {
    display: grid;
    gap: 13px;
    margin: 22px 0 0;
    padding: 0;
}

.rm-investor-list-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rm-blue-dark);
    font-weight: 700;
    list-style: none;
}

.rm-investor-list-card li i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(46, 139, 58, 0.10);
    color: var(--rm-green);
    font-size: 22px;
}

@media (max-width: 991px) {
    .rm-page-hero,
    .rm-about-section,
    .rm-products-intro,
    .rm-products-support,
    .rm-investor-section,
    .rm-blog-section,
    .rm-blog-detail-section,
    .rm-contact-section,
    .rm-contact-form-section {
        padding: 72px 0;
    }

    .rm-about-banner,
    .rm-blog-banner,
    .rm-contact-banner {
        min-height: 300px;
    }

    .rm-page-hero h1,
    .rm-about-section h2,
    .rm-blog-detail-card h2,
    .rm-contact-form-section h2 {
        font-size: 36px;
    }

    .rm-about-cta-panel,
    .rm-product-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .rm-vm-card {
        padding: 28px;
    }

    .rm-vm-card h2 {
        font-size: 26px;
    }

    .rm-core-card,
    .rm-growth-card {
        padding: 26px;
    }

    .rm-investor-intro-card {
        padding: 28px;
    }

    .rm-blog-sidebar {
        position: static;
    }

    .rm-contact-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .rm-page-hero h1,
    .rm-about-section h2,
    .rm-blog-detail-card h2,
    .rm-contact-form-section h2 {
        font-size: 30px;
    }

    .rm-about-logo-card,
    .rm-direction-card,
    .rm-about-cta-panel,
    .rm-product-cta,
    .rm-vm-card,
    .rm-core-card,
    .rm-growth-card,
    .rm-product-tile,
    .rm-blog-detail-card,
    .rm-blog-sidebar,
    .rm-contact-info-card,
    .rm-contact-form-card,
    .rm-contact-strip,
    .rm-investor-intro-card,
    .rm-investor-feature,
    .rm-investor-benefit,
    .rm-investor-list-card {
        padding: 24px;
    }

    .rm-about-logo-card {
        padding: 0;
    }

    .rm-about-logo-card img {
        min-height: 260px;
    }

    .rm-about-logo-card strong {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: 17px;
    }

    .rm-product-tile-media {
        min-height: 170px;
        margin: 0 0 18px;
        padding: 14px;
    }

    .rm-product-tile-media img {
        height: 150px;
    }

    .rm-blog-card-media img {
        height: 210px;
    }

    .rm-blog-card-body {
        padding: 22px;
    }

    .rm-latest-blog-card {
        grid-template-columns: 82px 1fr;
    }

    .rm-latest-blog-card img {
        width: 82px;
        height: 82px;
    }

    .rm-contact-strip > div {
        align-items: flex-start;
    }

    .rm-contact-form-card .rm-btn {
        width: 100%;
    }

    .rm-about-section .rm-section-head {
        text-align: left !important;
    }

    .rm-about-section .rm-section-head .rm-eyebrow {
        justify-content: flex-start;
    }

    .rm-vm-card::after {
        left: 24px;
        right: 24px;
    }

    .rm-vm-card h2 {
        font-size: 24px;
    }

    .rm-core-num {
        top: 16px;
        right: 18px;
        font-size: 38px;
    }

    .rm-mission-list li {
        font-size: 15px;
    }

    .rm-about-cta-actions {
        width: 100%;
    }

    .rm-about-cta-actions .rm-btn {
        width: 100%;
    }

    .rm-product-cta h2 {
        font-size: 28px;
    }

    .rm-investor-image img {
        min-height: 270px;
    }

    .rm-growth-badge {
        position: static;
        margin-top: 14px;
    }

    .rm-about-media {
        min-height: 280px;
    }
}
