/* Reset list styles to prevent bullets in header dropdown */
        .gs_nav_list,
        .gs_dropdown_menu {
            list-style: none !important;
            padding: 0;
            margin: 0;
        }

        /* =====================================================
           COMMON HERO SECTION STYLING (DESKTOP)
           ===================================================== */
        .common-hero {
            background: linear-gradient(110deg, #0d2b57 0%, #12366d 40%, #28498d 100%);
            display: flex;
            align-items: center;
            padding: 160px 100px 100px;
            position: relative;
            overflow: hidden;
            height: 700px;
            box-sizing: border-box;
            width: 100%;
        }

        .common-hero-inner {
            /* max-width: 1500px; */
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .common-hero-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            z-index: 2;
            max-width: 850px;
        }

        /* Hero Tag (Eyebrow Badge) */
        .common-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 50px;
            border: 1px solid rgba(78, 217, 199, .25);
            background: rgba(78, 217, 199, .08);
            color: #b8f6ff;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 25px;
            box-sizing: border-box;
        }

        .common-hero-tag .common-page-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            box-shadow: 0 0 12px #4ed9c7;
            background: var(--color-green);
            display: inline-block;
        }

        /* Hero Title */
        .common-hero-title {
            font-family: "TeX Gyre Pagella", serif;
            font-size: 55px;
            font-weight: 300;
            line-height: 1.1;
            color: #ffffff;
            margin: 0 0 25px 0;
            letter-spacing: -1px;
        }

        .common-hero-title span {
            display: block;
            color: var(--color-aqua);
            font-weight: 400;
            font-family: "TeX Gyre Pagella", serif !important;
        }

        /* Science page specific highlight span */
        .common-hero-title span.science-page-highlight-teal {
            color: var(--color-aqua);
            display: inline;
            font-family: "TeX Gyre Pagella", serif !important;
        }

        /* Hero Subtitle */
        .common-hero-subtitle {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            max-width: 650px;
            margin: 0 0 5px 0;
            font-weight: 300;
        }

        /* Hero Buttons Wrapper */
        .common-hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
        }

        /* Primary Button */
        .common-hero-btn-primary {
            position: relative;
            overflow: hidden;
            padding: 12px 28px;
            border-radius: 50px;
            border: 1px solid #35d6ff;
            background: rgba(53, 214, 255, 0.1);
            color: white;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
            white-space: nowrap;
            text-decoration: none;
            text-align: center;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .common-hero-btn-primary::before {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 60px;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(53, 214, 255, 0.25),
                    rgba(53, 214, 255, 0.45),
                    rgba(53, 214, 255, 0.25),
                    transparent);
            transform: skewX(-25deg);
            transition: left 0.6s ease;
        }

        .common-hero-btn-primary:hover {
            background: transparent;
            box-shadow:
                0 0 12px rgba(53, 214, 255, 0.25),
                inset 0 0 12px rgba(53, 214, 255, 0.08);
        }

        .common-hero-btn-primary:hover::before {
            left: 130%;
        }

        /* Secondary Button */
        .common-hero-btn-secondary {
            position: relative;
            overflow: hidden;
            padding: 12px 28px;
            font-size: 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: white;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
            box-sizing: border-box;
            letter-spacing: 0.5px;
        }

        .common-hero-btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Hero Right Column (Media/Visual Wrapper) */
        .common-hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            z-index: 2;
        }

        .common-hero-visual {
            width: 100%;
            max-width: 900px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .common-hero-visual img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* Optional Overlay Mesh/Glow decoration */
        .common-hero::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 168, 0.08) 0%, transparent 70%);
            top: -120px;
            right: -100px;
            pointer-events: none;
            z-index: 1;
        }

        /* Platform Hero Features (Explainable, Traceable, Governed) */
        .platform-hero-features {
            margin-top: 12px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: "Manrope", sans-serif !important;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--color-aqua);
            text-transform: uppercase;
        }

        .platform-hero-features .dot {
            color: var(--color-lavender);
            font-weight: bold;
            font-size: 30px;
        }

        /* =====================================================
           TABLET VERSION: 501px - 800px
           ===================================================== */
        @media screen and (min-width: 501px) and (max-width: 800px) {
            .common-hero {
                padding: 160px 40px 80px 40px;
                height: auto;
                min-height: 600px;
            }

            .common-hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            /* .common-hero-left {
                align-items: center;
            } */

            .common-hero-title {
                /* font-size: 45px !important; */
                text-align: left;
            }

            .common-hero-subtitle {
                font-size: 16px !important;
                /* margin: 0 auto 30px auto; */
                text-align: left;
            }

            .common-hero-buttons {
                justify-content: center;
            }

            .common-hero-visual {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        /* =====================================================
           MOBILE VERSION: 0px - 500px
           ===================================================== */
        @media screen and (max-width: 500px) {
            .common-hero {
                padding: 150px 20px 60px 20px;
                height: auto;
                min-height: 500px;
            }

            .common-hero-inner {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }

            /* .common-hero-left {
                align-items: center;
            } */

            .common-hero-tag {
                font-size: 11px;
                padding: 8px 14px;
                margin-bottom: 20px;
            }

            .common-hero-title {
                font-size: 32px !important;
                line-height: 1.2;
                text-align: left;
            }

            .common-hero-subtitle {
                font-size: 15px !important;
                line-height: 1.6;
                margin-bottom: 25px;
                text-align: left;

            }

            .common-hero-buttons {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                gap: 12px;
            }

            .common-hero-btn-primary,
            .common-hero-btn-secondary {
                width: 100%;
                box-sizing: border-box;
            }

            .common-hero-visual {
                max-width: 400px;
                margin: 0 auto;
            }
        }