    body.home-announcement-open {
        overflow: hidden;
    }

    .home-announcement[hidden] {
        display: none;
    }

    .home-announcement {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: rgba(2, 10, 25, 0.72);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .home-announcement.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .home-announcement__dialog {
        position: relative;
        width: fit-content;
        max-width: 100%;
        transform: translateY(1rem) scale(0.98);
        transition: transform 0.2s ease;
    }

    .home-announcement.is-visible .home-announcement__dialog {
        transform: translateY(0) scale(1);
    }

    .home-announcement__image {
        display: block;
        width: auto;
        height: auto;
        max-width: min(947px, 100%);
        max-height: calc(100vh - 2rem);
        border-radius: 1.25rem;
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
    }

    .home-announcement__close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        padding: 0;
        border: 1px solid rgba(15, 23, 42, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.94);
        color: #0f172a;
        font-size: 1.25rem;
        line-height: 1;
        box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.24);
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .home-announcement__close:hover {
        background: #ffffff;
        transform: scale(1.05);
    }

    .home-announcement__close:focus-visible {
        outline: 3px solid #ffffff;
        outline-offset: 3px;
    }

    @media (max-width: 575px) {
        .home-announcement {
            padding: 0.75rem;
        }

        .home-announcement__image {
            max-height: calc(100vh - 1.5rem);
            border-radius: 0.875rem;
        }

        .home-announcement__close {
            top: 0.5rem;
            right: 0.5rem;
            width: 2.5rem;
            height: 2.5rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .home-announcement,
        .home-announcement__dialog,
        .home-announcement__close {
            transition: none;
        }
    }

    /* Hero Section */
    .hero-section {
        padding: 200px 0 140px;
        background:
            radial-gradient(circle at 80% 20%, rgba(0, 125, 65, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 10% 80%, rgba(0, 255, 133, 0.05) 0%, transparent 30%),
            var(--gmp-warm);
        position: relative;
        overflow: hidden;
    }

    .hero-visual-container {
        position: relative;
        z-index: 2;
    }

    .hero-3d-asset {
        width: 110%;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0);
        }

        50% {
            transform: translateY(-20px) rotate(1deg);
        }
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        background: rgba(0, 125, 65, 0.1);
        color: var(--gmp-primary);
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-bottom: 25px;
        border: 1px solid rgba(0, 125, 65, 0.2);
    }

    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin-bottom: 25px;
        color: var(--gmp-dark-deep);
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--gmp-primary) 0%, #00B35C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: #64748B;
        max-width: 600px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    /* Abstract Image in Hero */
    .hero-img-wrapper {
        position: relative;
        z-index: 1;
    }

    .hero-img-floating {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .service-card {
        background: var(--gmp-white);
        border-radius: 32px;
        padding: 60px 40px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--gmp-primary) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.5s;
        pointer-events: none;
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 125, 65, 0.2);
    }

    .service-card:hover::before {
        opacity: 0.03;
    }

    .icon-box {
        width: 100px;
        height: 100px;
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .icon-box img {
        object-fit: contain;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .service-card:hover .icon-box {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        border-color: #e0e0e0;
    }

    .service-card:hover .icon-box img {
        transform: scale(1.1);
    }

    /* Segment Entrance */
    .segment-card {
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        height: 250px;
        display: flex;
        align-items: flex-end;
        padding: 30px;
        color: white;
        text-decoration: none;
        background-size: cover;
        background-position: center;
    }

    .segment-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        transition: opacity 0.3s;
    }

    .segment-card:hover .segment-overlay {
        opacity: 0.9;
    }

    .segment-content {
        position: relative;
        z-index: 2;
    }

    /* Trust Section */
    .trust-ticker {
        padding: 60px 0;
        background: white;
        border-top: 1px solid #F1F5F9;
        border-bottom: 1px solid #F1F5F9;
    }

    .ticker-wrapper {
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: 50px;
    }

    .ticker-track {
        display: flex;
        gap: 80px;
        animation: ticker 120s linear infinite;
        align-items: center;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* --- Modified Trust Section Styles --- */
    .trust-ecosystem {
        background: radial-gradient(circle at 10% 90%, rgba(0, 125, 65, 0.03) 0%, rgba(255, 255, 255, 1) 50%);
        position: relative;
    }

    .section-header-premium {
        margin-bottom: 60px;
    }

    .accent-line {
        width: 50px;
        height: 3px;
        background: var(--gmp-primary);
        margin-bottom: 20px;
    }

    .ticker-card {
        background: white;
        border-radius: 40px;
        padding: 20px 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.02);
        position: relative;
        overflow: hidden;
    }

    .ticker-card::before,
    .ticker-card::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .ticker-card::before {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }

    .ticker-card::after {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }

    .trust-badge-label {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #94A3B8;
        font-weight: 800;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .trust-badge-label::before,
    .trust-badge-label::after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background: rgba(0, 0, 0, 0.05);
        max-width: 50px;
    }

    .ticker-item img {
        height: 80px;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        filter: brightness(1.05) contrast(0.95);
    }

    .ticker-item:hover img {
        transform: scale(1.15) translateY(-5px);
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
    }

    /* Finance ticker: tighten spacing and enlarge logos */
    .finance-ticker.ticker-card {
        padding: 10px 0;
    }

    .finance-ticker .ticker-item img {
        height: 105px;
        margin: -12px 0;
    }

    /* Premium CTA Section Styles */
    .cta-premium-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
        backdrop-filter: blur(50px) saturate(200%);
        -webkit-backdrop-filter: blur(50px) saturate(200%);
        border-radius: 40px;
        padding: 80px 60px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.4),
            inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .cta-premium-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: 2;
    }

    .cta-glow-emitter {
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(0, 255, 133, 0.3) 0%, transparent 70%);
        top: -300px;
        right: -200px;
        filter: blur(100px);
        pointer-events: none;
        z-index: 1;
        opacity: 0.6;
        animation: pulse-glow 8s infinite alternate;
    }

    .cta-glow-emitter-alt {
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(235, 0, 27, 0.2) 0%, transparent 70%);
        bottom: -200px;
        left: -100px;
        filter: blur(80px);
        pointer-events: none;
        z-index: 1;
        opacity: 0.5;
        animation: pulse-glow 10s infinite alternate-reverse;
    }

    @keyframes pulse-glow {
        0% {
            transform: scale(1);
            opacity: 0.4;
        }

        100% {
            transform: scale(1.1);
            opacity: 0.7;
        }
    }

    .cta-decoration-icon {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%) rotate(-10deg);
        font-size: 20rem;
        color: rgba(255, 255, 255, 0.05);
        pointer-events: none;
        z-index: 1;
        transition: all 1s ease;
    }

    .cta-premium-card:hover .cta-decoration-icon {
        transform: translateY(-55%) rotate(-10deg) scale(1.05);
        color: rgba(255, 255, 255, 0.05);
    }

    .cta-label {
        display: inline-block;
        background: rgba(0, 125, 65, 0.2);
        color: #00FF85;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1px solid rgba(0, 255, 133, 0.1);
    }

    .cta-title {
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .text-gmp-green {
        color: #00FF85;
    }

    .btn-cta-main {
        background: var(--gmp-primary);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        border: none;
        box-shadow: 0 15px 35px rgba(0, 125, 65, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none;
        position: relative;
        z-index: 3;
    }

    .btn-cta-main:hover {
        background: #009D51;
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 45px rgba(0, 125, 65, 0.4);
        color: white;
    }

    .btn-cta-main .btn-icon {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: transform 0.4s;
    }

    .btn-cta-main:hover .btn-icon {
        transform: translateX(5px) rotate(15deg);
    }

    @media (max-width: 991px) {
        .cta-premium-card {
            padding: 50px 30px;
            text-align: center;
        }

        .cta-decoration-icon {
            font-size: 12rem;
            right: -50px;
            opacity: 0.5;
        }

        .btn-cta-main {
            width: 100%;
            justify-content: center;
        }
    }

    /* --- Service Modal Styles --- */
    .modal-glass {
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 30px !important;
    }

    /* --- Tech Docs Modal Custom Styles (taste-design) --- */
    .theme-docs-header {
        background: linear-gradient(135deg, rgba(0, 125, 65, 0.88) 0%, rgba(0, 90, 48, 0.95) 100%), url('../../../../images/2026/modal_header_banner.png') no-repeat center center !important;
        background-size: cover !important;
        padding: 14px 24px !important;
    }
    
    .docs-header-icon-box {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        backdrop-filter: blur(10px);
        animation: pulse-ring 2.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) infinite;
    }

    @keyframes pulse-ring {
        0% { transform: scale(0.98); opacity: 0.95; }
        50% { transform: scale(1.02); opacity: 1; }
        100% { transform: scale(0.98); opacity: 0.95; }
    }

    /* Docs sidebar vertical navigation */
    .sidebar-docs-nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .sidebar-docs-nav .btn-doc-tab {
        text-align: left;
        width: 100%;
        padding: 12px 18px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        border: 1px solid transparent;
        color: #475569;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .sidebar-docs-nav .btn-doc-tab i {
        width: 20px;
        text-align: center;
        font-size: 1rem;
        opacity: 0.7;
        transition: transform 0.3s ease;
    }

    .sidebar-docs-nav .btn-doc-tab:hover {
        background: #E2E8F0;
        color: var(--gmp-primary);
    }

    .sidebar-docs-nav .btn-doc-tab:hover i {
        transform: scale(1.1);
    }

    .sidebar-docs-nav .btn-doc-tab.active {
        background: rgba(0, 125, 65, 0.08);
        color: var(--gmp-primary);
        border-left: 4px solid var(--gmp-primary) !important;
        border-radius: 4px 12px 12px 4px;
    }

    .sidebar-docs-nav .btn-doc-tab.active i {
        color: var(--gmp-primary);
        opacity: 1;
    }

    /* Docs sidebar info card */
    .docs-sidebar-info-card {
        background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
        border-radius: 16px;
        padding: 18px;
        margin-top: 24px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    /* Docs search control */
    .doc-search-control {
        border: 1.5px solid #E2E8F0;
        border-radius: 30px;
        padding: 12px 20px 12px 50px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--gmp-dark-deep);
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .doc-search-control:focus {
        border-color: var(--gmp-primary);
        background-color: #FFFFFF;
        box-shadow: 0 0 0 4px rgba(0, 125, 65, 0.1);
        outline: none;
    }

    .search-icon-position {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        font-size: 0.95rem;
    }

    /* Docs list layout */
    .docs-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 560px;
        overflow-y: auto;
        padding-right: 6px;
    }

    /* Custom scrollbar */
    .docs-list-wrapper::-webkit-scrollbar {
        width: 6px;
    }
    
    .docs-list-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.02);
        border-radius: 10px;
    }
    
    .docs-list-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.12);
        border-radius: 10px;
    }
    
    .docs-list-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.25);
    }

    .doc-item-row {
        display: grid;
        grid-template-columns: 50px 1fr 120px 130px;
        align-items: center;
        gap: 20px;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 20px;
        padding: 18px 24px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .doc-item-row:hover {
        transform: translateX(4px) translateY(-1px);
        border-color: rgba(0, 125, 65, 0.15);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        background: linear-gradient(90deg, rgba(0, 125, 65, 0.015) 0%, #FFFFFF 100%);
    }

    .doc-icon-container {
        width: 50px;
        height: 50px;
        background: #F8FAFC;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
    }

    .doc-item-row:hover .doc-icon-container {
        background: #FFFFFF;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .doc-title {
        color: var(--gmp-dark-deep);
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: -0.01em;
    }

    .doc-desc {
        color: #64748B;
        line-height: 1.5;
        font-size: 0.825rem;
    }

    .doc-date {
        color: #475569;
        font-family: 'Outfit', sans-serif;
    }

    .btn-outline-gmp-green {
        border: 1.5px solid var(--gmp-primary);
        color: var(--gmp-primary);
        font-weight: 700;
        background: transparent;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .btn-outline-gmp-green:hover {
        background: var(--gmp-primary);
        color: #FFFFFF;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 125, 65, 0.15);
    }

    /* Responsive docs layout */
    @media (max-width: 991.98px) {
        .sidebar-docs-nav {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 8px;
            gap: 6px;
            scrollbar-width: none;
        }
        .sidebar-docs-nav::-webkit-scrollbar {
            display: none;
        }
        .sidebar-docs-nav .btn-doc-tab {
            width: auto;
            white-space: nowrap;
            padding: 8px 16px;
            border-radius: 20px;
            background: #F1F5F9;
            border-left: 1px solid transparent !important;
            border-radius: 20px !important;
        }
        .sidebar-docs-nav .btn-doc-tab.active {
            background: var(--gmp-primary);
            color: #FFFFFF;
        }
        .sidebar-docs-nav .btn-doc-tab.active i {
            color: #FFFFFF;
        }
        .docs-sidebar-info-card {
            display: none;
        }
        .doc-item-row {
            grid-template-columns: 50px 1fr;
            gap: 15px;
            padding: 20px;
        }
        .doc-date-info {
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.03);
            padding-top: 10px;
        }
        .doc-date-info .text-muted {
            margin-bottom: 0;
        }
        .doc-action-btn {
            grid-column: 1 / span 2;
            width: 100%;
            margin-top: 5px;
        }
        .doc-action-btn a {
            width: 100%;
            text-align: center;
            display: block;
            padding: 10px;
        }
        .docs-list-wrapper {
            max-height: 400px;
        }
    }

    .docs-sidebar {
        background: rgba(241, 245, 249, 0.65);
        backdrop-filter: blur(5px);
    }

    @media (min-width: 992px) {
        .docs-sidebar {
            border-bottom-left-radius: 30px;
        }
    }

    .modal-header-hero {
        background: linear-gradient(135deg, rgba(0, 125, 65, 0.88) 0%, rgba(0, 90, 48, 0.95) 100%), url('../../../../images/2026/modal_header_banner.png') no-repeat center center;
        background-size: cover;
        padding: 14px 24px;
        border-radius: 30px 30px 0 0;
        color: white;
        position: relative;
        overflow: hidden;
        flex-shrink: 0 !important;
    }

    .modal-header-hero::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

    .feature-pill {
        background: #F1F5F9;
        border-radius: 12px;
        padding: 15px;
        height: 100%;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .feature-pill:hover {
        background: white;
        border-color: var(--gmp-primary);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-3px);
    }

    /* --- Scenario Modal Custom Styles --- */
    .scenario-service-card {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        padding: 18px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        height: 100%;
    }

    .scenario-service-card:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 125, 65, 0.3);
        box-shadow: 0 10px 22px rgba(0, 125, 65, 0.08);
        background: linear-gradient(135deg, #ffffff 0%, rgba(0, 125, 65, 0.03) 100%);
    }

    .scenario-service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0, 125, 65, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #007D41;
        font-size: 1.25rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .scenario-service-card:hover .scenario-service-icon {
        background: #007D41;
        color: #ffffff;
        transform: scale(1.05);
    }

    .icon-box {
        width: 180px;
        height: 180px;
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        transition: all 0.4s ease;
        position: relative;
    }

    .icon-box img {
        object-fit: contain;
    }

    /* Theme Colors for Modal Headers */
    .theme-blue {
        background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    }

    .theme-orange {
        background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    }

    .theme-purple {
        background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    }

    .theme-magenta {
        background: linear-gradient(135deg, #DB2777 0%, #BE185D 100%);
    }

    .theme-indigo {
        background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    }

    /* Payment methods: reuse the approved payment-brand assets used by the trust ticker. */
    .hero-payment-methods {
        max-width: 600px;
    }

    .hero-payment-methods__title {
        margin: 0 0 0.75rem;
        color: #64748B;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .hero-payment-methods__list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.875rem 1rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .payment-method {
        display: inline-flex;
        align-items: center;
        gap: 0.2rem;
        color: #334155;
        font-size: 0.8125rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }

    .payment-method__logo {
        display: block;
        width: 2.75rem;
        height: 2.125rem;
        object-fit: contain;
    }

    @media (max-width: 991px) {
        .hero-title {
            font-size: 3rem;
        }

        .hero-payment-methods__list {
            gap: 0.75rem;
        }

        .payment-method {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 575px) {
        .hero-payment-methods {
            margin-top: 2.5rem !important;
        }

        .payment-method__logo {
            width: 2.375rem;
            height: 1.875rem;
        }
    }

    /* Certificate card hover effects */
    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
        border-color: rgba(0, 125, 65, 0.2) !important;
    }
    .cursor-pointer {
        cursor: pointer;
    }
